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
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
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
Jan 12, 2004 9:32 pm
struct Struct3 { [XmlRpcMissingMapping(MappingAction.Ignore)] public string ms; [XmlRpcMissingMapping(MappingAction.Ignore)] public XmlRpcInt Y; } ... RPC...
216
charlescookuk
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
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
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
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
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
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
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
Jan 22, 2004 5:18 am
... (XmlTextWriter ... (Stream...
224
jlanders2325
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
Jan 25, 2004 12:52 pm
Using this test server implemented via .ashx page: ==================================== <%@ WebHandler Language="C#" Class="Echo" %> <%@ Assembly...
226
Adam Williams
ferillis2003
Jan 28, 2004 7:51 am
I'm trying to call an XML-RPC server (OpenGroupware39;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
Jan 28, 2004 7:51 am
I'm trying to call an XML-RPC server (OpenGroupware39;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
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...
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
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
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
Feb 9, 2004 12:34 pm
??? for (int i=0; i < 10; i++) Console.Write(rs[0]); ... server. ... (IWeblog)); ... the ... kYXRlZD4yMDA0LTAyLTA4IDAwOjQ1OjEzLjgzODc4NTwv ... ...
233
Scott
scottadn
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
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
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
Feb 16, 2004 7:56 am
Try adding a reference to System.Web.Services.dll when building the code. - Charles...
237
xxjt123xx
Feb 20, 2004 7:30 am
Try this one. http://aspzone.com/articles/178.aspx ... for testing. ... number and methods name....
238
Wiz
wizake
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
Mar 1, 2004 7:57 pm
I need to specify HTTP 1.0 in order to communicate successfully with OpenGroupware39;s XML-RPC server; making calls equivalent to - webRequest.PreAuthenticate =...
240
LZelus
Mar 7, 2004 9:12 am
To facilitate logging and debugging I wanted to log all incomming requests and their xml. The problem was I conly got control if a corresponding class and...
241
juha_dutch
Mar 21, 2004 10:30 am
I want to connect to a XML-RPC server. All I know about the server is are the: URL: http://www.dataonline.nl/adresxpress/server/adresxpress_server.php Method...