Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

XMLRPCNET · XML-RPC.NET

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 672
  • Category: Open Source
  • Founded: Apr 3, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 101 - 130 of 1417   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Simplify | Expand Author Sort by Date v
130 Simon Fell
simonfell99 Send Email
Mar 8, 2003
7:08 pm
Charles, are there any plans to support changing the endpoint URL when using the XmlRpcProxyGen/Interface method of building clients ? (which i really like...
129 charlescookuk <cha...
charlescookuk Send Email
Feb 24, 2003
10:15 pm
0.8.1 is now available. I've done some quick testing on this and it fixes the known problems, but I need to write some comprehensive unit tests for the...
128 charlescookuk <cha...
charlescookuk Send Email
Feb 24, 2003
9:38 pm
I've just noticed a problem with the nullable types XmlRpcInt, XmlRpcBoolean, and XmlRpcDateTime. I'll issue a fix within the next hour or so....
127 charlescookuk <cha...
charlescookuk Send Email
Feb 24, 2003
8:57 am
Hi Mike - re using object as the type for postid/userid: I suppose this is really from a client point of view. I needed this to enable the same interface to...
126 Mike Amundsen
mamund Send Email
Feb 24, 2003
4:07 am
Charles: I downloaded the refresh and it looks pretty nice. I can see the possibilities with the optional members and am working on some examples here ...
125 Mike Amundsen
mamund Send Email
Feb 23, 2003
10:38 pm
Bryce: It should have been mamund at yahoo.com - my bad. The spam arrest folks got a snootful from us and tell me they no longer send solicitations to folks...
124 T Bryce Yehl
pocketblogger Send Email
Feb 23, 2003
10:07 pm
... Bounced with "reason: 554 delivery error: dd Sorry your message to maund@... cannot be delivered. This account has been disabled or discontinued...
123 charlescookuk <cha...
charlescookuk Send Email
Feb 23, 2003
10:05 pm
I was connecting to v1.1 but just tried with v1.2 and there is a similar difference between the two calls. BTW I've uploaded version 0.8.0 of the library and...
122 Mike Amundsen
mamund Send Email
Feb 23, 2003
9:19 pm
Ahhhhh Bugger! Looks like we got some bad coding in there. Which version of the xmlrpc library are you using right now for erablog? v1.1 or v1.2? Thanks for...
121 charlescookuk <cha...
charlescookuk Send Email
Feb 23, 2003
9:04 pm
I just checked with some calls to EraBlog: blogger.getRecentPosts returns post structs with string postid's and metaWeblog.getRecentPosts returns structs with...
120 Mike Amundsen
mamund Send Email
Feb 23, 2003
9:02 pm
Thanks for the reply. Yeah, send the stuff directly to me (maund@...) offline and we can check it out. Thanks for your help. MCA...
119 T Bryce Yehl
pocketblogger Send Email
Feb 23, 2003
8:57 pm
... like ... I have a stupid little program that makes XML-RPC methodcalls and displays the raw response. I was checking getRecentPosts, but getPost also...
118 Mike Amundsen
mamund Send Email
Feb 23, 2003
8:19 pm
Bryce: Very interesting. We am using Charles Cook's excellent XML-RPC for .NET library and writing our code in C#. Maybe we're missing something here: We...
117 T Bryce Yehl
pocketblogger Send Email
Feb 23, 2003
8:08 pm
Mike, I checked EraBlog's return values before I posted, postid is returned as <i4>, not <string>. -Bryce...
116 Mike Amundsen
mamund Send Email
Feb 23, 2003
7:52 pm
Bruce: Thanks for chiming in here. Yeah, the specs for these things are really a mess. About the EraBlog problem. We return int values but treat them as...
115 T Bryce Yehl
pocketblogger Send Email
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....
114 charlescookuk <cha...
charlescookuk Send Email
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 ... ...
113 charlescookuk <cha...
charlescookuk Send Email
Feb 23, 2003
6:50 pm
Hi Bryce - a couple of comments: (1) The MetaWeblog "spec" links to a sample response to getPost: ...
112 T Bryce Yehl
pocketblogger Send Email
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 --...
111 T Bryce Yehl
pocketblogger Send Email
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...
110 Mike Amundsen
mamund Send Email
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...
109 Mike Amundsen
mamund Send Email
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...
108 charlescookuk <cha...
charlescookuk Send Email
Feb 21, 2003
9:52 am
Try adding the XmlRpcMethod attribute: [XmlRpcMethod] public string InputCandidate(string str) { return (string)xmlRpcClient.Invoke(this,"InputCandidate&quot;,str);...
107 hunglin <hunglin_c...
hunglin_chang Send Email
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...
106 charlescookuk <cha...
charlescookuk Send Email
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....
105 charlescookuk <cha...
charlescookuk Send Email
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...
104 hunglin <hunglin_c...
hunglin_chang Send Email
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...
103 hunglin <hunglin_c...
hunglin_chang Send Email
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...
102 Mike Amundsen <mik...
mamund Send Email
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...
101 charlescookuk <cha...
charlescookuk Send Email
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...
Messages 101 - 130 of 1417   Newest  |  < Newer  |  Older >  |  Oldest
Add to My Yahoo!      XML What's This?

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