Search the web
Sign In
New User? Sign Up
XMLRPCNET · XML-RPC.NET
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 86 - 115 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
86
Available from: http://www.cookcomputing.com/xmlrpc/index.html...
charlescookuk <charle...
charlescookuk
Offline Send Email
Jan 6, 2003
8:35 am
87
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...
charlescookuk <charle...
charlescookuk
Offline Send Email
Jan 11, 2003
12:13 pm
88
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...
charlescookuk <charle...
charlescookuk
Offline Send Email
Jan 14, 2003
9:04 pm
89
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...
Joe Reger <joe@...>
joeregerjr
Offline Send Email
Jan 31, 2003
12:55 pm
90
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...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 3, 2003
7:29 am
91
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 ...
Oren Novotny
osn_aepi
Offline Send Email
Feb 17, 2003
3:33 pm
92
... 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...
Brad Wilson
bradw_64
Offline Send Email
Feb 17, 2003
4:09 pm
93
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...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 17, 2003
4:42 pm
94 Isokangas, Erik HTC/...
erik_isokangas
Offline Send Email
Feb 18, 2003
1:54 pm
95
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 ... ...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 18, 2003
2:00 pm
96
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...
cdawg1992 <carlga@...>
cdawg1992
Offline Send Email
Feb 19, 2003
6:21 am
97
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...
carl wilen
cdawg1992
Offline Send Email
Feb 19, 2003
6:21 am
98
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...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 19, 2003
12:21 pm
99
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...
Mike Amundsen
mamund
Offline Send Email
Feb 19, 2003
12:25 pm
100
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...
cdawg1992 <carlga@...>
cdawg1992
Offline Send Email
Feb 19, 2003
4:20 pm
101
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...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 19, 2003
6:16 pm
102
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...
Mike Amundsen <mike@....
mamund
Offline Send Email
Feb 21, 2003
1:01 am
103
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...
hunglin <hunglin_chan...
hunglin_chang
Offline Send Email
Feb 21, 2003
6:26 am
104
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...
hunglin <hunglin_chan...
hunglin_chang
Offline Send Email
Feb 21, 2003
6:26 am
105
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...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 21, 2003
6:50 am
106
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....
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 21, 2003
8:22 am
107
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...
hunglin <hunglin_chan...
hunglin_chang
Offline Send Email
Feb 21, 2003
9:34 am
108
Try adding the XmlRpcMethod attribute: [XmlRpcMethod] public string InputCandidate(string str) { return (string)xmlRpcClient.Invoke(this,"InputCandidate",str);...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 21, 2003
9:52 am
109
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...
Mike Amundsen
mamund
Offline Send Email
Feb 22, 2003
7:53 pm
110
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...
Mike Amundsen
mamund
Offline Send Email
Feb 22, 2003
8:02 pm
111
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...
T Bryce Yehl
pocketblogger
Offline Send Email
Feb 23, 2003
6:32 pm
112
... 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 --...
T Bryce Yehl
pocketblogger
Offline Send Email
Feb 23, 2003
6:47 pm
113
Hi Bryce - a couple of comments: (1) The MetaWeblog "spec" links to a sample response to getPost: ...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 23, 2003
6:50 pm
114
Re point (2) the failure occurred when calling Radio which I installed today. ... http://radio.weblogs.com/0001015/userland/examples/metaWeblogApi/getPo ... ...
charlescookuk <charle...
charlescookuk
Offline Send Email
Feb 23, 2003
6:52 pm
115
... Another fine example of crappy, obsolete docs. ... Use the "Update Radio Root" command, it'll probably take several minutes on a fresh Radio installation....
T Bryce Yehl
pocketblogger
Offline Send Email
Feb 23, 2003
7:30 pm
Messages 86 - 115 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help