Hi all please tell me if there is a way to use XML-RPC with Digest Authentication on unverified HTTPS I tried to use the Credintials but no use...
1296
vineet_123india
Jan 1, 2011 10:31 am
Hi I have built an xml-rpc client using c# to connect to the xmlrpc server ClientProtocol.Url = "http://ubuntu:8080/rpc2"; // ubuntu is the hostname(pc name) ...
1297
vineet_123india
Jan 6, 2011 2:40 pm
Its working now. The url set was not correct, i needed an uppercase RPC. This post can be closed. Regards, Vineet...
1298
Eric Teutsch
erict2k
Jan 21, 2011 11:04 pm
Hi, Since remoting doesn't seem to exist on compact framework, is there another way to execute a small XML-RPC server. Head-office needs a way to send ...
1299
zbeckerman
Jan 23, 2011 3:36 am
Recently we upgraded to 2.4.0. Previously, we used 2.3.1. We only have VS2005 so we didnt upgrade to 2.5.0 since we need to compile x86 and x64. We will...
1300
johnpeterjore
Jan 25, 2011 8:14 pm
After reading the FAQ, re-reading it, and re-reading it again a few times as well as searching the yahoo groups, I still cant get my modifications to work (I...
1301
charlescookuk
Jan 25, 2011 8:30 pm
Hi John: the code looks ok. By default the following XML-RPC request is sent for a method with no parameters: <?xml version="1.0" ?> <methodCall> ...
1302
grahamsz
Jan 30, 2011 8:16 pm
I have a service which I need to connect to that's giving me a lot of trouble with the way it represents optional values. Here are two dates that it returns. ...
1303
Scott
scott.wheeler
Feb 18, 2011 9:40 pm
Hi, I'm making progress attaching to the OpenERP system using some of the code samples so graciously posted. The following code is allowing me to login and get...
1304
Scott Wheeler
scott.wheeler
Feb 18, 2011 9:48 pm
[Non-text portions of this message have been removed]...
1305
Dave
cuuld
Feb 20, 2011 9:25 am
I was wondering if anybody here might be able to help me out? I'm a novice .NET/C# developer. Trying to implement XML-RPC server for RobotFramework per spec...
1306
Charles Cook
charlescookuk
Feb 20, 2011 10:55 am
"run_keywod" ? ... [Non-text portions of this message have been removed]...
1307
Charles Cook
charlescookuk
Feb 20, 2011 1:33 pm
The server is returning an invalid Fault response. Using AllowStringFaultCode as described here might help: http://xml-rpc.net/faq/xmlrpcnetfaq.html#2.22 ... ...
1308
Dave
cuuld
Feb 21, 2011 5:00 am
Yea, I realized that shortly after. Late night programming and somehow missed typing the r. Thanks for the response....
1309
Scott
scott.wheeler
Feb 21, 2011 12:17 pm
Hi Charles, Thank you for the quick reply. I've implemented the 'AllowStringFaultCode' as seen below, but I'm getting the same "...integer expected..."...
1310
drocks_india
Feb 21, 2011 1:09 pm
Hello Everyone, I have developed a service for xml RPC in .net 2010 using Cook's DLL and tested everything on windows 7. Everything is working fine on my...
1311
Zev Beckerman
zbeckerman
Feb 21, 2011 1:47 pm
Install .net 4.0 on w2k3 server. /Z On Feb 21, 2011 8:09 AM, drocks_india <deepak.dynamite@...> wrote: Hello Everyone, I have...
1312
Charles Cook
charlescookuk
Feb 21, 2011 9:14 pm
Hi Scott — I just checked and there is a bug in this area — issue 77. The code in XmlRpcSerializer.ParseFault is incorrect. It is fixed in the next release...
1313
Scott Wheeler
scott.wheeler
Feb 21, 2011 11:34 pm
Hi Charles, Thanks for the note. Can you say if the exception generated might rollback a successful transaction in the API being called? For instance,...
1314
drocks_india
Feb 22, 2011 4:49 am
Hello, Are you sure this will solve my problem ?...
1315
Charles Cook
charlescookuk
Feb 22, 2011 1:01 pm
Hi Scott: the next release is imminent. Currently testing and writing documentation. ... [Non-text portions of this message have been removed]...
1316
Zev Beckerman
zbeckerman
Feb 22, 2011 1:27 pm
No. It is a suggestion since VS2010 in .net 4 based and your computer likely is missing it. /Z On Feb 21, 2011 11:49 PM, drocks_india...
1317
Scott Wheeler
scott.wheeler
Feb 22, 2011 1:52 pm
Excellent! I'll be on the 'look out' for it. ________________________________ From: Charles Cook <chascook@...> To: XMLRPCNET@yahoogroups.com Sent: Tue,...
1318
drocks_india
Feb 23, 2011 4:36 am
Hello, I have installed .net 4.0 on my system but still i am facing same problem. I would like to know whether it works on IIS 6 or not ? Is there any specific...
1319
makerbot_dave
Feb 23, 2011 7:57 pm
My application speaks to two separate servers on my local network. I'd like to be able to use XML-RPC for both. However, when I try to register two...
1320
Charles Cook
charlescookuk
Feb 23, 2011 8:32 pm
The client only needs to register one HttpChannel. ... [Non-text portions of this message have been removed]...
1321
makerbot_dave
Feb 23, 2011 9:25 pm
From what I've seen in my application, I don't even need to host the service in a thread. Once I call RemotingServices.Marshal(), it returns immediately, yet...
1322
makerbot_dave
Feb 25, 2011 3:57 pm
Thank you for the reply, Charles. Can you point me to examples that allow one HttpChannel to listen on multiple ports, and do it all programmatically (i.e....
1323
vineet_123india
Feb 26, 2011 3:33 am
Hi I have built an xml-rpc client using c# to connect to the xmlrpc server ClientProtocol.Url = "http://ubuntu:8080/rpc2"; // ubuntu is the hostname(pc name) ...
1324
Charles Cook
charlescookuk
Feb 26, 2011 2:29 pm
On the server side you need to register a channel for each port. Make sure you give the channels different names. See statenameserver example for how to...