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: 674
  • Category: Open Source
  • Founded: Apr 3, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 210 - 239 of 1420   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
210 alexhung@...
countzero Send Email
Jan 5, 2004
12:52 am
Charles, I am running into a brick wall with TypePad over dateTime.iso8601 at the moment. The date format TypePad sends back is the ISO8601 extended format,...
211 charlescookuk Send Email Jan 6, 2004
8:41 am
Hi Alex - have you tried reporting this to the TypePad people? Returning dates in this format is invalid XML-RPC. - Charles ... extended...
212 alexhung@...
countzero Send Email
Jan 7, 2004
12:10 am
Hi Charles, I have not but I've found that it was a known bug that was fixed in MT2.65 which was released in mid-Dec. I guess TypePad has not been upgraded to...
213 betnag Send Email Jan 10, 2004
7:07 am
Are there any attribute that can be set on the struct members so if the members value is emtpy or null it is not included in the XML RPC request. -Thanks ...
214 alexhung@...
countzero Send Email
Jan 12, 2004
9:10 pm
Charles, Talked to Ben Trott at TypePad/MT. His reply is that MTv2.65 and TypePad supports ISO8601 date format (which is true) but not the format given in the...
215 charlescookuk Send Email Jan 12, 2004
9:32 pm
struct Struct3 { [XmlRpcMissingMapping(MappingAction.Ignore)] public string ms; [XmlRpcMissingMapping(MappingAction.Ignore)] public XmlRpcInt Y; } ... RPC...
216 charlescookuk Send Email Jan 13, 2004
9:20 am
You could try something along these lines in XmlRpcSerializer.ParseDateTime: DateTime dt; try { dt = DateTime.ParseExact(s, "yyyyMMddThh:mm:ss", ...
217 countzero@...
countzero Send Email
Jan 13, 2004
2:29 pm
Thanks for the suggestion. I am getting a Cryptographic failure during the build though. It can't find the 'CookComputing.key' file to do the signing of the...
218 charlescook@...
charlescookuk Send Email
Jan 13, 2004
6:41 pm
From the FAQ: 6.3 Why is the key file not included in the distribution? Building XML-RPC.NET from the distribution will fail because of a missing file called...
219 countzero@...
countzero Send Email
Jan 13, 2004
6:51 pm
Opps, should have re-read FAQ... my bad :) ... missing file ... used to ... file is not ... malicious version ... assembly ... <charlescook@u...>...
220 jyotsna_fic Send Email Jan 21, 2004
12:12 pm
Hi,Can anyone help me figure out as to why I am getting this exception. I am making a call to the XML-RPC server as requestParams =...
221 jyotsna_fic Send Email Jan 21, 2004
12:12 pm
Hi,Can anyone help me figure out as to why I am getting this exception. I am making a call to the XML-RPC server as requestParams =...
222 charlescookuk Send Email Jan 21, 2004
12:18 pm
Hi Jyotsna - please would you post or send me more of the source code, e.g. method definition and calling code. - Charles...
223 jyotsna_fic Send Email Jan 22, 2004
5:18 am
... (XmlTextWriter ... (Stream...
224 jlanders2325 Send Email Jan 23, 2004
7:24 am
I have a function on my server called GetList(). It takes no parameters and returns an array of structs, one for each list item in a database. I tried to do: ...
225 charlescookuk Send Email Jan 25, 2004
12:52 pm
Using this test server implemented via .ashx page: ==================================== <%@ WebHandler Language="C#" Class="Echo" %> <%@ Assembly...
226 Adam Williams
ferillis2003 Send Email
Jan 28, 2004
7:51 am
I'm trying to call an XML-RPC server (OpenGroupware&#39;s xmlrpcd) via Mono (0.29) on Linux, but can't seem to get authentication to work. Is this a bug in Mono...
227 Adam Williams
ferillis2003 Send Email
Jan 28, 2004
7:51 am
I'm trying to call an XML-RPC server (OpenGroupware&#39;s xmlrpcd) via Mono (0.29) on Linux, but can't seem to get authentication to work. Is this a bug in Mono...
228 charlescookuk Send Email Jan 28, 2004
8:20 am
Hi Adam - Your code looks ok. You could isolate whether it is a Mono problem by writing some code which uses System.Net.WebRequest to request something from...
229 noonemancanfightthefu...
noonemancanf... Send Email
Jan 29, 2004
7:06 am
Hi, I would like to be able to tap into the raw xml messages in my XML- RPC assembly for logging purposes. Is there a way to do this in the current version? ...
230 Adam Williams
ferillis2003 Send Email
Jan 29, 2004
11:33 am
... This also pukes, so I suspect a problem in Mono, or at least its interaction with OGo's xmlrcpd - using System; using System.Net; using System.Net.Sockets;...
231 Scott
scottadn Send Email
Feb 9, 2004
12:15 pm
Hi, I'm trying to understand how I can use a base64 return from my server. I'm using byte array as needed, but I'm not sure what to do with what is returned....
232 charlescookuk Send Email Feb 9, 2004
12:34 pm
??? for (int i=0; i < 10; i++) Console.Write(rs[0]); ... server. ... (IWeblog)); ... the ... kYXRlZD4yMDA0LTAyLTA4IDAwOjQ1OjEzLjgzODc4NTwv ... ...
233 Scott
scottadn Send Email
Feb 9, 2004
1:28 pm
Yes I noticed it :\ And I also found my answer. I was trying to treat the byte type like a 2 byte char type. I should have been sleeping, methinks. Anyhow, ...
234 Scott
scottadn Send Email
Feb 16, 2004
5:44 am
I'm playing around with one of the examples in the FAQ, and it's throwing an error back at me. Did I miss something? Here's the example code I'm using for the...
235 abdul shukoor
shukoor2k3 Send Email
Feb 16, 2004
7:51 am
Hi All, I am trying to find some XML RPC live demo clients which can used for testing. Can any body please provide me the links,webserver Address, port number...
236 charlescookuk Send Email Feb 16, 2004
7:56 am
Try adding a reference to System.Web.Services.dll when building the code. - Charles...
237 xxjt123xx Send Email Feb 20, 2004
7:30 am
Try this one. http://aspzone.com/articles/178.aspx ... for testing. ... number and methods name....
238 Wiz
wizake Send Email
Feb 27, 2004
5:55 am
Hi guys ! I'm a newbie in this area, and I would appreciate any help. What I want to do, is to connect and retrieve/send documents from/to a native XML...
239 Adam Williams
ferillis2003 Send Email
Mar 1, 2004
7:57 pm
I need to specify HTTP 1.0 in order to communicate successfully with OpenGroupware&#39;s XML-RPC server; making calls equivalent to - webRequest.PreAuthenticate =...
Messages 210 - 239 of 1420   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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