Hello, first I want to thank the author of the library for the excellent implementation of XMLRPC and for releasing it under MIT License. So I'm starting using...
243
Thanh Bui
chinrua
Apr 6, 2004 5:49 am
Finally I have made the call to a procedure at MovableType which proves the procedures at MovableType are working (or at least the one I tried: ...
244
charlescookuk
Apr 6, 2004 6:10 am
What error are you seeing? - Charles ... proves ... wrong. I ... (ex);} ... ex) { ... Response: " ... ("WebException: " + ... MessageBoxIcon.Error);...
245
chinrua
Apr 7, 2004 3:17 pm
response contains dateTime.iso8601 value where string expected [response : array mapped to type PostInfo[]: element 0 : struct mapped to type PostInfo :member...
246
Mycroft1984
Apr 15, 2004 9:48 am
I am creating a client to a server. The method requires an array of structures as defined below. However when I create a struct for this parameter to pass with...
247
Miles Teg
Mycroft1984
Apr 15, 2004 9:49 am
I needed to use the XmlRpcMember attribute for one of my fields in a structure. It was not working and at first I thought I was using it incorectly (being new ...
248
charlescookuk
Apr 15, 2004 5:52 pm
The XmlRpcMember attribute should help here. public struct Event { [XmlRpcMember("event")] public string _event; } - Charles ... this ... rename...
249
charlescookuk
Apr 15, 2004 5:54 pm
Thanks. I really must get the next release out. I've been very busy with other stuff recently but I'll make an effort to sort things out asap. - Charles...
250
krishna_a_gandhi
krishna_a_ga...
Apr 30, 2004 8:08 am
G'day Matt & Co, Similarly to your self, I am having to use an SSL connection along with a client certificate from within a windows service. Being a newbie to...
251
krishna_a_gandhi
krishna_a_ga...
May 3, 2004 4:16 pm
Ok, I figured out building the proxy class so I can access the XmlRpcClientProtocol properties, namely the ClientCertificates property. I can load my client...
252
krishna_a_gandhi
krishna_a_ga...
May 7, 2004 3:36 am
FYI, I have got the client certs working OK. A setting on my IIS server did the trick. Awsome product BTW, with full credit to you Charles my boss is still ...
253
alexhung@...
countzero
May 10, 2004 1:53 am
I am very interested in how to do this as well. I am trying to build a 'console39; logging-type windows in my application to show raw XML-RPC data....
254
Scott
scottadn
May 11, 2004 7:21 pm
Apparently you have to use a local proxy of some sorts and then capture everything through it. You'll need to search through the FAQ's on the site and find...
255
James Cooper
robotnik23
May 13, 2004 6:27 pm
hi, I'm writing a XML-RPC server, and would like to access the IP address and remote port of the client making the request. Do I have access to the standard...
256
charlescookuk
May 13, 2004 7:48 pm
Classes derived from class XmlRpcService have access to the HttpContext via the protected Context property. That gives you access to the UserHostAddress...
257
charlescookuk
May 13, 2004 7:52 pm
Hi KG - any tips on how you did this might be useful for anyone else here trying to do the same. Its good to hear you're finding the library of some use. -...
258
charlescookuk
May 13, 2004 7:55 pm
Alex and Scott - being able to grab the request and response XML would be useful. Any suggestions as to the best API for this? - Charles ... in...
259
alexhung@...
countzero
May 14, 2004 12:11 pm
For my app currently my aim is to be able to have a 'live' view of the XML request/response displays in a textbox. So an event that can be subscribed and which...
260
krishna_a_gandhi
krishna_a_ga...
May 17, 2004 6:19 am
Well, I got it working when running against my test server (IIS5 W2K svr, I will attach a sample of the code at the bottom of this message), but now I'm...
261
krishna_a_gandhi
krishna_a_ga...
May 19, 2004 1:56 am
Okey dokey, well only a little embarrassed! I didn't have the private key for the Client Cert that our client gave us, therefor it wasn't properly loaded in...
262
robotnik23
May 23, 2004 8:52 am
a follow up to my previous post. I was able to workaround this problem by commenting out the entire Add () method in XmlRpcStruct.cs I realize this is not...
263
raife_stokes
May 23, 2004 8:52 am
I have found sample code in c# and have a simple example working, but i dont understand the square bracket syntax used before the function.. how would the same...
264
robotnik23
May 23, 2004 8:53 am
hi, I'm running into an error that I can't figure out. Perhaps someone here can shed some light onto the problem. I have a XmlRpcStruct that I'm adding...
265
charlescookuk
May 25, 2004 6:41 am
When calling the XmlRpcStruct.Add method, what was the type of the object passed in the second parameter? The method checks whether the .NET type can be...
266
charlescookuk
May 25, 2004 7:10 am
See section 2.13 in http://www.xml-rpc.net/faq/xmlrpcnetfaq.html ... but i dont understand the square bracket syntax used before the function.. ... im new to...
267
charlescookuk
May 25, 2004 7:39 am
Sample ASHX service in VB.NET (note that XML-RPC.NET assembly must be placed in bin subdirectory of virtual directory) <%@ WebHandler Language="VB"...
268
charlescookuk
Jun 5, 2004 9:56 am
I'm doing a bit of a tidying-up exercise in preparation for the (long overdue) next release and I noticed that the state name sample service at...
269
Shajee
ahmadshajee
Jun 6, 2004 9:33 am
Dear All Hello! I have built a ASP .Net client that interacts with a phpgroupware server using XML RPC .Net However it gives the following error "Response from...
270
charlescookuk
Jun 6, 2004 9:37 am
I'm currently working on adding a trace facility so that you can look at the incoming and outgoing XML messages. For the time being, use tcptrace or proxytrace...
271
ahmad shajee
ahmadshajee
Jun 7, 2004 11:08 am
Dear Charles Hi! Thanks for the reply. have downloaded the tcptrace and proxytrace from pocketsoap.com However my problem remains as is. The server response...