Hi! First, I'm a big fan of the XMLRPC Library! Awesome code. I am working on a web handler (ashx) as an event listener. The events are being sent as a Request...
1205
charlescookuk
Sep 4, 2009 4:23 pm
Hi Tim: can you send me the contents of the request stream as described here (i.e. as a binary file and not a string): ...
1206
t_groten
Sep 4, 2009 4:41 pm
Hi Charles! Do you mean use the XmlRpcLogger to output the mentioned to xml files? If so, at what point (where) do I attach the tracer? I've successfully used...
1207
charlescookuk
Sep 4, 2009 5:28 pm
Sorry, what I suggested is for a client proxy only. It is not supported on the server. You will have to write some code to dump the request stream in...
1208
t_groten
Sep 4, 2009 5:31 pm
Ok. Give me about 10 minutes. Thanks again! tim...
1209
t_groten
Sep 4, 2009 7:19 pm
I sent the files to you gmail account. thx, tim...
1210
t_groten
Sep 8, 2009 7:16 pm
Hi Charles! I turned off my logging code and sure enough that error went away to be replaced with perhaps a more meaningful one (below). Is this being thrown...
1211
t_groten
Sep 8, 2009 8:58 pm
It looks like the Request does not follow the XML-RPC spec. A couple of the The <param> tags do not contain a <value> tag. Is there something I can do to work...
1212
Charles Cook
charlescookuk
Sep 9, 2009 4:12 pm
Complain to the people who wrote the client code? :-) You could modify this code in DeserializeRequest: XmlNode valueNode = SelectSingleNode(paramNode,...
1213
Tim Grotenhuis :: Hui...
t_groten
Sep 9, 2009 8:21 pm
Thanks again Charles! I made the modification as directed and it got me passed that and on to the next issue ( a non-standard dateTime format ). Aighh. Anyway,...
1214
deepali_tatkar27
deepali_tatk...
Sep 11, 2009 2:51 pm
Hi i have downloaded the DrupalXmlRpc.NET. framwok from sourceforge.net and tried running the same example. i just changed the wensite address to my drupal...
1215
ddlakoduk
Sep 14, 2009 5:36 am
I am a newbie at xml-rpc.net and having some difficulty creating a method call that requires a string parameter and a struct parameter with a base64, and 2...
1216
Charles Cook
charlescookuk
Sep 15, 2009 11:23 am
Hi Duane: XML-RPC.NET maps the XML-RPC type base64 onto an array of Byte: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#1.12 ... [Non-text portions of this...
1217
ddlakoduk
Sep 15, 2009 12:03 pm
Thanks for your reply Charles, I got this working last night. I changed the struct: public struct VideoStruct { public byte[] file; public string title; ...
1218
Charles Cook
charlescookuk
Sep 16, 2009 7:10 am
Hi Deepali: there is a mismatch between what the client expects and what the server returns. This could be because when there is a error, for example login...
1219
freelancegermany
freelanceger...
Sep 18, 2009 2:28 pm
Hello, i am very new with xml rpc and i got the error Could not load type 'XmlRpcServer.wfDataServer39; from assembly 'XmlRpcServer39;. for a example application. ...
1220
Charles Cook
charlescookuk
Sep 18, 2009 2:37 pm
Could not load type '*XmlRpcServer.wfDataServer39;* from assembly 'XmlRpcServer39;. namespace *XmlRpcServer* { public class *wfDataExchange*: XmlRpcService ... On...
1221
freelancegermany
freelanceger...
Sep 19, 2009 5:21 pm
Ups ;) I must apologizw; seems I see to much code on this day...
1222
Duane
ddlakoduk
Sep 20, 2009 5:07 am
Charles, This was not my post, but I don't really follow the explanation, or the reason for the exception. What is the purpose of the asterisks (*)...
1223
Charles Cook
charlescookuk
Sep 21, 2009 7:00 am
Hi Duane: the class names were different (the '*' were how Yahoo handled bold formatting in the message I sent). ... [Non-text portions of this message have...
1224
t_groten
Oct 9, 2009 3:53 pm
Hi! I get this error occasionally where the client is sending an improper type (unfortunately I have no control over the client software). I am expecting an...
1225
Charles Cook
charlescookuk
Oct 12, 2009 11:45 am
Hi Tim: in this scenario you have to specify the type as Object and then check it at runtime to see if it is an array or string. ... [Non-text portions of this...
1226
t_groten
Oct 19, 2009 10:19 pm
hi Charles! Thanks. I am having Brain freeze here. If I specify a struct (event_struct) as the object that is to be mapped/loaded from the request and one of...
1227
icthi75
Dec 4, 2009 6:06 am
Part of the strucure of a PAGE in WordPress includes custom fields that can be retrieved through the XmlRpcMethod("wp.getPage") function. But i dont see a way...
1228
Eric Teutsch
erict2k
Dec 4, 2009 2:15 pm
I don't think this is expected behavior: The library sends an XML-RPC request (which does a POST) to some URL. The server, for whatever reason, responds with...
1229
charlescookuk
Dec 6, 2009 3:25 pm
The MSDN page on the HttpStatusCode enumeration: http://msdn.microsoft.com/en-us/library/system.net.httpstatuscode.aspx says this about 302: "Equivalent to...
1230
Eric Teutsch
erict2k
Dec 6, 2009 3:50 pm
Hi Charles, Thank you very much for doing the research on post/redirect/get - which I should have done before calling on you for help. I understand now why a ...
1231
Eric Teutsch
erict2k
Dec 7, 2009 2:21 pm
Hi again, I've now ported my app to the live site which uses IIS7. When the ASP.NET application tries to talk to the remote server, I get the following...
1232
donbonifacio
Dec 15, 2009 2:33 pm
Hello, I'm using an API that needs an auth token. Basically the endpoint is something like: http://api.com/?auth=token And token is MD5(requestXml + secret). ...
1233
Charles Cook
charlescookuk
Dec 16, 2009 10:24 pm
You could use XmlRpcSerializer to generate the request XML in advance so you can generate a token but there is no documentation or any examples of how to do...