So, I guess a simplified question for this is: How do I write a XML-RPC server using XML-RPC.NET to consume the xml below? Any help or suggestion is...
1283
Jack
synsuperior
Oct 6, 2010 6:38 pm
Anyone around? I'm still struggling with building an XML-RPC server using the XML-RPC.NET library to accept calls from PHP clients. Can anyone help? Thanks. P...
1284
ferreira.luis25
Oct 13, 2010 11:44 am
According to the XML-RPC.NET FAQ http://www.xml-rpc.net/faq/xmlrpcnetfaq.html "An XML-RPC Fault Response contains a struct with two members: a fault code and a...
1285
Charles Cook
charlescookuk
Oct 13, 2010 6:02 pm
Hi Luis: it's not valid XML-RPC. According to the spec: The <methodResponse> could also contain a <fault> which contains a <value> which is a <struct>...
1286
ferreira.luis25
Oct 14, 2010 8:48 am
Hi Charles, Thanks for the quick reply. I've talked with the developers of the xml-rpc service in question and they've aggreed that the faultResponse doesn't...
1287
ferreira.luis25
Oct 14, 2010 12:49 pm
Hi, Nevermind my previous message, after suggesting adding the faultString they quickly fixed it. Now the exception throwned is the expected...
1288
Robin Motroen
robin.motroen
Oct 14, 2010 6:02 pm
Hi I have been struggled about a week with my code. The XML-RPC server i programmed in PHP and need to get the call in structured call, i think. This because...
1289
Charles Cook
charlescookuk
Oct 14, 2010 7:37 pm
Hi Robin: this explains the StructParams feature: http://xml-rpc.net/faq/xmlrpcnetfaq.html#2.34 and this explains how to implement a client in VB.NET: ...
1290
jackywang029
Nov 18, 2010 6:14 am
Hi All, I developed a new xml-rpc client in c# code. And I can call the methods which are defined in xml-rpc server. But sometimes my client calls will raise...
1291
jackywang029
Nov 18, 2010 6:38 am
Hello All, I just created a new xml-rpc service, how to host this service in my application via a new thread? I just know how to publish the xml-rpc service on...
1292
Jack
synsuperior
Nov 18, 2010 7:39 pm
Hi there, I think you have to use .net remoting. I think Charles did provide some examples on this topic....
1293
Jack
synsuperior
Nov 18, 2010 7:55 pm
Hi guys, Not sure if anyone has worked with Shopatron API. One of their api required an xml like this below (you can copy, paste it to notepad, save it as xml...
1294
vahid_nasiri
Nov 27, 2010 11:34 am
Hello, To use this library in a .NET 4 project (and compile it against that framework), I've commented the following lines in AssemblyInfo.cs file: //#if...
1295
asm2me
Dec 10, 2010 8:02 pm
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...