Thanks, Charles. I had used the statenameserver example as a starting point, but didn't use the "name" key, and frankly forgot all about it! I have confirmed...
1327
stephane.roua
Feb 28, 2011 7:08 pm
Hi, I have more info on this. The stream is closed in (XmlRpcSerializer.cs) public XmlRpcResponse DeserializeResponse(Stream stm, Type svcType) { ... ... try {...
1328
Dave
cuuld
Feb 28, 2011 8:20 pm
How do you gracefully shut down an XML-RPC server implemented with this library for this particular scenario: A (XML-RPC) client has issued an XML-RPC request...
1329
richardlinsdall
Mar 1, 2011 5:57 am
I have been using the library for over a year - everything works fine. Over the weekend my client upgraded their eCommerce software to the latest version and...
1330
Charles Cook
charlescookuk
Mar 1, 2011 11:46 am
Hi Richard: where struct member names are generated at runtime it is necessary to use XmlRpcStruct — essentially a hash table — and unpack the structs...
1331
Charles Cook
charlescookuk
Mar 1, 2011 11:47 am
Hi Stéphane: thanks for reporting this. Will be fixed in the next release. ... [Non-text portions of this message have been removed]...
1332
Richard Linsdall
richardlinsdall
Mar 1, 2011 3:15 pm
Thanks, I had thought of doing that way, but couldn't make it work. I tried doing that at the level of the 'Additional_Information39; class using: Public...
1333
charlescookuk
Mar 1, 2011 8:18 pm
Can you provide some code which demonstrates the problem?...
1334
Richard Linsdall
richardlinsdall
Mar 1, 2011 8:30 pm
Thanks for being so responsive. I just got it working. The problem was mine - a combination of moving between languages and capitalization within the XML. I...
1335
Dave
cuuld
Mar 6, 2011 5:56 am
... Sorry, forgot to mention, in case it wasn't clear, I try to return output prior to calling the exit method, and no output is returned but server does exit....
1336
tradeym
Mar 6, 2011 6:28 am
I am a beginner when it comes to vb.net and I thought I would work on a little project that involves using upcdatabase.com to lookup a barcode upc. I have...
1337
Dave
cuuld
Mar 19, 2011 6:12 am
FYI, in case anyone interested. I built the server to work with Robot Framework for QA testing, but it can also be used for other purposes. Check it out here: ...
1338
Dave
cuuld
Mar 19, 2011 6:12 am
I've solved the problem by using threads. One thread to do the shutdown after some delay while primary thread would return a value....
1339
charlescookuk
Apr 19, 2011 8:19 pm
I've uploaded a snapshot of the work in progress of version 3.0.0, available from here: http://xml-rpc.net/download.html The functionality should not change...
1340
Dave
cuuld
May 6, 2011 6:19 am
I was just thinking about and researched XML-RPC for Powershell. I am generally more interested in server side rather than clients. In my search, I see that...
1341
Steve
n6vl
Jun 6, 2011 6:20 pm
I have a working .NET app that works w/ an XML-RPC and just started converting it to XML-RPC.NET. There is one particular request I am having trouble with. It...
1342
Charles Cook
charlescookuk
Jun 7, 2011 3:59 pm
Hi Steve: yes, you need to define a class or struct to represent the parameter. Define another class or struct to represent each upload and then define the...
Hey, Is it possible to ignore a certain property from being serialized to the XML-RPC struct? Basically, I have struct MyStruct { public int A { get; set; } ...
Hey, Is it possible to use with compact framework. I'm trying and build fail. Thanks, [Non-text portions of this message have been removed]...
1346
Charles Cook
charlescookuk
Jun 9, 2011 3:16 pm
Release 2.5.0 has a build for CF: http://www.xml-rpc.net/faq/xmlrpcnetfaq-2-5-0.html#6.11 <http://www.xml-rpc.net/faq/xmlrpcnetfaq-2-5-0.html#6.11>Not in...
1347
José Vicente
jviares
Jun 10, 2011 6:19 am
Thanks 2011/6/9 Charles Cook <chascook@...> ... [Non-text portions of this message have been removed]...
1348
Charles Cook
charlescookuk
Jun 10, 2011 8:10 am
The NonSerialized attribute will be supported properly in release 3 (dev snapshot available). ... [Non-text portions of this message have been removed]...
1349
José Vicente
jviares
Jun 10, 2011 8:25 am
do you have an example of using CookComputing.XmlRpc.CF? 2011/6/10 José Vicente <jviares@...> ... [Non-text portions of this message have been removed]...
1350
geniali74
Jun 13, 2011 6:01 pm
Hi I will use XML-RPC under Windows Phone 7. I've a proxy generator. […] public I CreateProxy() { I proxy = XmlRpcProxyGen.Create<I>(); proxy.Url =...
1351
geniali74
Jun 14, 2011 7:54 pm
Hi I've found a sample for Windows Phone 7 in the source code. :-) Now, i've a exception that i not understand. I test under a console project with .NET 3.5...
1352
Charles Cook
charlescookuk
Jun 15, 2011 8:35 am
Hi Roland: the first parameter to BeginInvoke is used to specify a method signature for processing the following parameters. Your use of ...
1353
geniali74
Jun 15, 2011 7:17 pm
Hi Thanks a million. This version works fine. ... #region using using System; using System.Net; using System.Reflection; using System.Text; using...
1354
geniali74
Jun 16, 2011 7:39 pm
Hi Charles I still have a little problem. :-/ How can I set the header of a request for basic authentication? The generated XML is ok. But the basic...
1355
Charles Cook
charlescookuk
Jun 17, 2011 10:23 am
Hi Roland: I think certain headers may be ignored if you try to set them. The project is built for Silverlight 3 which doesn't support setting the Credentials...