Version 2.3.0 has been released: http://xmlrpcnet.googlecode.com/files/xml-rpc.net.2.3.0.zip New features and changes: * Issue 15: Support for accessing...
1015
denis_jakovlev
Apr 4, 2008 8:37 am
It is excellent! Thanks is large!...
1016
darkob72
Apr 7, 2008 2:59 pm
I read http://www.xml-rpc.net/faq/xmlrpcnetfaq.html but I can't create working sample. Can someone do some step-by-step for server and client sample....
1017
sanjdhi2004
Apr 7, 2008 3:01 pm
Hi Can someone help in solving out following problem : I am implementing fotolia Business api in my webapplication using c#. My problem is that I getting...
1018
charlescookuk
Apr 7, 2008 3:18 pm
Hi Sanjeev: this is one of those XML-RPC APIs where instead of returning an array of results, a struct is used with a uniquely named member for each item in...
1019
derrick_brundage
derrick_brun...
Apr 10, 2008 6:28 am
I've build a Web Application based on v2.2.0 of XML-RPC and the sample MathService code. If I configure the application properties to use the IIS Web Server,...
1020
derrick_brundage
derrick_brun...
Apr 10, 2008 6:28 am
I recently attempted to upgrade an application from v2.2.0 to v2.3.0 and ran into a problem: After the upgrade, all *.rem requests generate an HTTP 500 server...
1021
charlescookuk
Apr 10, 2008 1:14 pm
Sorry, my fault. A change for using HttpListener conflicted with the case when hosted by ASP.NET. I'll fix this asap....
1022
ronklose
Apr 10, 2008 10:11 pm
Implementing a client and server. The server started throwing exceptions when I upgraded. Traced the problem to this code XmlRpcHttpServerprotocol.cs lines...
1023
kyosho1975
Apr 15, 2008 7:42 am
I've written a Windows Service with .Net that makes a lot of operation on a local database. I've successfully exposed some functions using XmlRpcNet to remote...
1024
charlescookuk
Apr 15, 2008 7:45 am
Fixed version now available: http://xmlrpcnet.googlecode.com/files/xml-rpc.net.2.3.1.zip I've written a test program which hosts ASP.NET to prevent something ...
1025
richardshea98
Apr 16, 2008 7:49 am
Hi - I've got a .NET Class instance which I want to pass as an argument to my XML-RPC.NET server. It's quite a big complex class. My reading of the doco is...
1026
charlescookuk
Apr 16, 2008 3:14 pm
Hi Piazza: client activation doesn't make sense where the server is exposing an XML-RPC endpoint. All the client knows is that there is a HTTP-based XML-RPC...
1027
charlescookuk
Apr 16, 2008 3:15 pm
Hi Richard: its undocumented but you can use a class as long as its public members are types which can be serialized to XML-RPC types. ... easily ?...
1028
random.defense
Apr 17, 2008 5:36 pm
Hi everybody, I´m trying to setup a new XMLRPC server according the example in the faq: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#3.2 - What project type...
1029
darkob72
Apr 17, 2008 9:43 pm
... there ... Hi Lorenz, Select web service template. Add reference to CookComputing.XmlRpcV2.dll service1.asmx example: Imports System.Web Imports...
1030
random.defense
Apr 17, 2008 11:45 pm
Hi, what I did so far: 1. Add new website with template "ASP.NET Web Service". This generated: - Service.asmx - ~\App_Data92;Service.cs 2. I made a reference to...
1031
random.defense
Apr 18, 2008 2:13 pm
Problem could be solved in the meantime. Thanks everybody. Regards, Lorenz...
1032
psysp80
Apr 23, 2008 5:28 pm
Hello, I'm currently playing a little bit with the XML-RPC.NET library to call some remote procedures. Every time I call a remote procedure with a parameter...
1033
charlescookuk
Apr 24, 2008 9:30 am
Hi Florian: thanks for reporting this. I'll release a fix for this in a couple of days. The problem occurs with any string value containing one or more spaces ...
1034
charlescookuk
May 1, 2008 7:54 am
Updated version of release 2.3 here. http://xmlrpcnet.googlecode.com/files/xml-rpc.net.2.3.2.zip Changes: * Issue 22: XmlRpcTypeMismatchException thrown if an...
1035
mclaughlin.seanp
mclaughlin.s...
May 1, 2008 9:49 am
Hello all, I am new to xml-rpc.net and I am having a problem. We are developing an API that receives xml-rpc responses from a 3rd party server. Most of the...
1036
charlescookuk
May 1, 2008 9:55 am
The struct member is "balance" in the response but you have defined it as "balResp" in the .NET definition....
1037
mclaughlin.seanp
mclaughlin.s...
May 1, 2008 10:27 am
What a stupid oversight. Thanks Charles :)...
1038
richardzhousc
May 3, 2008 3:10 am
hi, I need to access a RPC server. which protected by another Apach web server. first user access Apache web server, once submit username/password, then...
1039
mclion07
May 8, 2008 4:05 pm
I am totally new to XML-RPC, rather started today. The response structure of XML-RPC server is <?xml version="1.0" encoding="iso-8859-1" ?> <methodResponse> ...
1040
charlescookuk
May 9, 2008 2:43 pm
The response is not a valid XML-RPC response. <member> tags are missing....
1041
xmlrpc00
May 20, 2008 12:49 pm
hello everybody, I am trying to to launch a XML-RPC server on a Pocket PC but it isn't working since it needs the remoting libraries which are not available on...
1042
richardzhousc
Jun 3, 2008 10:44 pm
Hi, I have a client(c# and xml-rpc.net) will call a server (this server protected by NetPoint or CoreID). Are there any one have any idea how my client can...
1043
richardshea98
Jun 4, 2008 12:18 pm
Hi - I've implemented a server as an .ASHX file within an ASP.Net website (based upon http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#3.11 only in C#) and am...