Hello, I am trying to call XMLRPC running on Apache server with PHP. It looks like the Apache didn't want to wait for the POST data. Anyone knows if there is...
139
charlescook@...
charlescookuk
Apr 3, 2003 6:23 am
Jan - the Content-Length header of the request is zero so its not surprising that the server is complaining "XMLerror: no element found at line 1". Please ...
140
jbartovsky
Apr 3, 2003 9:41 am
cc> I suspect the problem is caused by the use of the the Int64 cc> type as one of the parameters. XML-RPC only supports 32-bit cc> integers. The serialization...
141
hc100_uk
Apr 23, 2003 5:36 am
Hi all, I'm new to .net and xmlrpc and I'm afraid I've got to ask a silly question. I'm attempting to create my first hello world type of XMLRPC server. ...
142
charlescookuk
Apr 23, 2003 8:12 am
In the config file you are specifying that the type of the handler is RpcServer but it is actually StateNameService. - Charles...
143
hc100_uk
Apr 23, 2003 2:05 pm
Thanks Charles for your help. Well done on building the .net version. However, it still is giving me problems. I've changed the config file to: Line 8:...
144
Simon Fell
simonfell99
Apr 23, 2003 5:16 pm
... version. ... If you're using VS.NET, then for VB code it puts it in a namespace, but doesn't show that in the code, look at the project settings for the...
145
Mike Amundsen
mamund
Apr 23, 2003 11:54 pm
Even *more* exciting for VB.NET... Not only does the compiler use the 'hidden39; NS in the project properties box, it will also *append* any NS you actually...
146
charlescookuk
Apr 24, 2003 6:27 am
Thanks Simon and Mike for clearing this up. I'll add a note to the FAQ. ... A good tool for this is ILDASM.EXe which comes with the .NET SDK. - Charles...
147
hc100_uk
Apr 25, 2003 4:53 pm
thanks for all your help. I checked the project properties and now it works!! Cheers ... symbol...
148
jb902003
May 23, 2003 8:52 am
I'm trying to write an xmlrpc client but I'm not sure if I have this ... An unhandled exception of type 'CookComputing.XmlRpc.XmlRpcNullReferenceException'...
149
charlescookuk
May 23, 2003 8:59 am
Public Function CreateSession(ByVal partner As String,_ ByVal username As String,_ ByVal password As String) As String ... Return Invoke("CreateSession", New...
150
jchandra29
May 28, 2003 6:27 am
Questions to people who have had experience in using this product. Any limitations on the size of data that is exchanged b/w client and server? Is anybody...
151
Brian
briwalsh2000
Jun 9, 2003 9:24 am
The error noted in the last email was caused by my overlooking a commented out [XmlRpcMethod] line. The actual problem comes in at compile time when adding the...
152
Brian
briwalsh2000
Jun 9, 2003 9:24 am
Hi, I am building an RPC client for a server with overloaded methods. Does anybody know if I can use the overloaded methods with XMLRPC.NET or if I simply have...
153
charlescookuk
Jun 9, 2003 9:43 am
Hi Brian - unfortunately there is no support for overloaded methods in XmlRpcProxyGen, neither is there support in the XmlRpcSerializer class for handling...
154
charlescookuk
Jun 9, 2003 10:00 am
Hi Jay - I've not done any testing on very large requests or responses so I don't know what the limitations are. Maybe someone else has some experience in this...
155
Shreyas Ravishankar
sravi2k1
Jun 10, 2003 8:50 pm
Hi All -- I'm a newbie to XML-RPC, and .NET in general. I come from an ASP/VB background mainly (using VB mainly for business logic DLLs via COM and DCOM)....
156
Vijay
vijay_rec
Jun 12, 2003 6:10 am
Hi all, I have just started learning some stuff about XML RPC and was trying to create a XML Service and a client that can consume it. But i have been stopped...
157
charlescookuk
Jun 12, 2003 6:15 am
Question 2.20 in the FAQ: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html You can set credentials on the instance of WebProxy. - Charles ... was ... But ... an ...
158
charlescookuk
Jun 12, 2003 6:25 am
(1) Set Url property of proxy class. (2) Without looking at the code I think the mouduleName element will be ignored. If not it would be easy to modify the...
159
Vijay
vijay_rec
Jun 12, 2003 4:03 pm
When i try to assign http://new.blogger.com/api/RPC2/ as my XmlRpcUrl, the invoke call to blogger.getUserInfo times out ! I am providing the correct...
160
charlescookuk
Jun 12, 2003 6:05 pm
According to the DANO Faq: http://new.blogger.com/projects/dano/faq.pyra the new endpoint is: http://new.blogger.com/api...
161
shahineo
Jun 17, 2003 2:23 pm
When I call this method: [XmlRpcMethod("metaWeblog.getCategories", Description="Retrieves a list of valid categories for a post " + "using the metaWeblog API....
162
shahineo
Jun 17, 2003 2:23 pm
Using radio 8.0.8, whenever I try and use the getCategories call I get this error: "response contains struct value where array expected [response]" I have...
163
charlescookuk
Jun 17, 2003 2:37 pm
See my other reply as to why this problem occurs. The interface in CookComputing.MetaWeblog works with other MetaWeblog implementations but strictly speaking...
164
charlescookuk
Jun 17, 2003 2:38 pm
According to this page: http://www.xmlrpc.com/metaWeblogApi, getCategories returns a struct: Update 3/16/02 -- Added metaWeblog.getCategories. There was no way...
165
shahineo
Jun 17, 2003 2:54 pm
Thanks Charles! Can you clue me in on how I can actually get something back that doesn't cause an error? I have tried creating a struct, that in turn contains...
166
charlescookuk
Jun 17, 2003 3:20 pm
No, I suspect its worse than it appears......I would guess the outer struct is a container for an arbitrary number of structs, the name of each struct being...
167
shahineo
Jun 17, 2003 3:36 pm
Here is a response with two categories: <?xml version="1.0" ?> <methodResponse> <params> <param> <value> <struct> <member> <name>CalTrain</name> <value> ...