Available from: http://www.cookcomputing.com/xmlrpc/index.html...
87
charlescookuk <cha...
charlescookuk
Jan 11, 2003 12:13 pm
Drew Marsh has come across a change in XML-RPC.NET 0.7.0 which I should have documented: when mapping the members of an XML-RPC struct to the members of the...
88
charlescookuk <cha...
charlescookuk
Jan 14, 2003 9:04 pm
I've just uploaded v0.7.1 of XML-RPC.NET which is now released under the MIT X11 license. All the .cs files have been changed to reflect this. The release also...
89
Joe Reger <joe@......
joeregerjr
Jan 31, 2003 12:55 pm
Thanks for all of the hard work Charles. It was very quick and easy to get an xml-rpc server up and running. Is there a way to have the xml-rpc.net dll handle...
90
charlescookuk <cha...
charlescookuk
Feb 3, 2003 7:29 am
Hi - there is currently no way of achieving what you want with XML- RPC.NET. Implementing the XML-RPC equivalent of a .asmx file would not be too difficult in...
91
Oren Novotny
osn_aepi
Feb 17, 2003 3:33 pm
Charles, Is there any way to create a tool similar to WSDL.exe that will query an XML-RPC service and then generate the required interfaces and structs? Does ...
92
Brad Wilson
bradw_64
Feb 17, 2003 4:09 pm
... XML-RPC is much simpler than SOAP. There is no analog of WSDL in XML-RPC. If you want that functionality, you're limited to SOAP I'm afraid. Brad...
93
charlescookuk <cha...
charlescookuk
Feb 17, 2003 4:42 pm
I agree it would be very useful to have a wsdl.exe-like tool for XML- RPC. This would only be possible if XML-RPC servers returned a standard high-fidelity...
94
Isokangas, Erik HTC/...
erik_isokangas
Feb 18, 2003 1:54 pm
95
charlescookuk <cha...
charlescookuk
Feb 18, 2003 2:00 pm
Sorry, XML-RPC only supports signed 32-bit integers so you'll have to use a couple of integers (with some casting) or a string or base64. - Charles ... ...
96
cdawg1992 <carlga@...
cdawg1992
Feb 19, 2003 6:21 am
I keep getting the following error: The underlying connection was closed: An unexpected error occurred on a receive. Here's my Response code: Public Structure...
97
carl wilen
cdawg1992
Feb 19, 2003 6:21 am
I keep getting the following error: The underlying connection was closed: An unexpected error occurred on a receive. Here's my Response code: Public Structure...
98
charlescookuk <cha...
charlescookuk
Feb 19, 2003 12:21 pm
I've seen this error intermittently when making calls via a proxy server. I've never had a problem with a direct connection. Google returns plenty of results...
99
Mike Amundsen
mamund
Feb 19, 2003 12:25 pm
I've seen this in CS versions, too. Usually it means that there's a DNS resolver problem somewhere along the line (at least that was the case when I had the...
100
cdawg1992 <carlga@...
cdawg1992
Feb 19, 2003 4:20 pm
Thank you for the reply, I checked google, but came up empty. This morning I retried and now am getting an occasional Service Unavailable from...
101
charlescookuk <cha...
charlescookuk
Feb 19, 2003 6:16 pm
I don't understand why there should be a difference between C# and VB because all the "networking action" is taking place in the implementation of the...
102
Mike Amundsen <mik...
mamund
Feb 21, 2003 1:01 am
CC: I know that you've been working on the next release. The optional members is a really big issue for me right now as it's holding up my full-fledge...
103
hunglin <hunglin_c...
hunglin_chang
Feb 21, 2003 6:26 am
I use xml-rpc.net.0.7.1 to construct the xml-rpc client, then, I use it to connect to a xml-rpc service written by python. The first time When I connected, I...
104
hunglin <hunglin_c...
hunglin_chang
Feb 21, 2003 6:26 am
I use xml-rpc.net version 0.7.1 to connect to a xml-rpc service written by python, the firt time when I connected, I can get what I want, but after that, I...
105
charlescookuk <cha...
charlescookuk
Feb 21, 2003 6:50 am
This exception is thrown if the proxy code calls XmlRpcClientProtocol.Invoke and passes in the name of a method which does not have the XmlRpcMethodAttribute...
106
charlescookuk <cha...
charlescookuk
Feb 21, 2003 8:22 am
Hi Mike - given the demand for the optional struct member functionality I've decided I'll put out a release containing this without updating the documentation....
107
hunglin <hunglin_c...
hunglin_chang
Feb 21, 2003 9:34 am
The xml-rpc server has a servie written by python and named "InputCandidate" which need a string parameter and return a string, my code: private void...
108
charlescookuk <cha...
charlescookuk
Feb 21, 2003 9:52 am
Try adding the XmlRpcMethod attribute: [XmlRpcMethod] public string InputCandidate(string str) { return (string)xmlRpcClient.Invoke(this,"InputCandidate",str);...
109
Mike Amundsen
mamund
Feb 22, 2003 7:53 pm
Hi charles: Sorry I didn't respond asap. We swamped under with some updates for erablog. I see (from the erablog traffic) you're working on your blog...
110
Mike Amundsen
mamund
Feb 22, 2003 8:02 pm
You know, I hadn't even started on the mt.* methods since it takes some sorting out of how to support categories, etc. for example, at erablog, we assign a...
111
T Bryce Yehl
pocketblogger
Feb 23, 2003 6:32 pm
Charles, Your "Webloging API Blues" weblog entry reminded me that I wanted to chime in on this... The MW API's biggest failing is that it defers to the Blogger...
112
T Bryce Yehl
pocketblogger
Feb 23, 2003 6:47 pm
... Just to clarify that: EraBlog will not accept the Integer postid that it returns. Client apps should not be burdened with this sort of typing issue --...
113
charlescookuk <cha...
charlescookuk
Feb 23, 2003 6:50 pm
Hi Bryce - a couple of comments: (1) The MetaWeblog "spec" links to a sample response to getPost: ...
114
charlescookuk <cha...
charlescookuk
Feb 23, 2003 6:52 pm
Re point (2) the failure occurred when calling Radio which I installed today. ... http://radio.weblogs.com/0001015/userland/examples/metaWeblogApi/getPo ... ...
115
T Bryce Yehl
pocketblogger
Feb 23, 2003 7:30 pm
... Another fine example of crappy, obsolete docs. ... Use the "Update Radio Root" command, it'll probably take several minutes on a fresh Radio installation....