Hi Charles, I can't believe I missed That. Thank you very much for taking the time to help me. Great software. Have a good week, Kevin ...
1276
Charles Cook
charlescookuk
Aug 18, 2010 2:14 pm
Hi Kevin: the XML-RPC response has "currentState" but you have defined the corresponding struct member as "currentstate". ... [Non-text portions of this...
1275
Kevin Smith
kevinsmith28...
Aug 18, 2010 12:19 pm
XML-RPCNET group,
I am using the XML-RPC.NET code and have run into a problem. I am not sure if I incorrectly defined the structure relationship or there...
1274
kevinsmith280280
kevinsmith28...
Aug 18, 2010 12:18 pm
I defined the 3 nested structures below to match the XML returned back from the server. The problem is that the data for the third (C) structure does not get...
1273
elco33mf
Jul 26, 2010 3:30 am
I tried to make the code public struct SumAndDiffValue { public int sum; public int difference; public string message; } public class SumAndDiff :...
1272
john_c_conrad
Jul 19, 2010 5:19 am
So what I am trying to do is encrypt the actual XML text before sending it as the payload for the HTTP POST. So instead of plain text XML going across the...
1271
firman_arrow
Jul 14, 2010 8:42 am
Hello All, I'm new to c# and xml-rpc, but i have to create client for host to host communication to host server using xml-rpc protocol, i have make this xml...
1270
frontendgui
Jul 8, 2010 1:28 pm
Hello, Any updates on whether the code changes discussed here ever made it into the final compactframework dll library release. I am working on a windows...
1269
mtdewboy1701
May 19, 2010 6:57 pm
Hello, I'm getting the following error: CookComputing.XmlRpc.XmlRpcTypeMismatchException: response contains array value where struct expected [response : array...
1268
Charles Cook
charlescookuk
May 13, 2010 6:56 pm
I backed out some Silverlight related changes and went back to the 2.4 release. I will be merging the changes on the 2.4 branch since that release. The plan is...
1267
WarrickW
warrick_wilson
May 13, 2010 6:27 pm
I'm resurrecting a long-quiet issue here... I finally got back around to looking into this issue. Went to get the code from the site, and r108 shows that...
1266
umsrob
May 5, 2010 1:11 pm
Hello, I have found that one of the services I interact with using this library will occasionally give me back an <int> value yields this exception. It...
1265
randomnospamemail75
randomnospam...
May 4, 2010 1:29 am
That fixed my issue, thank you for the help....
1264
randomnospamemail75
randomnospam...
May 4, 2010 1:26 am
I am getting a strange issue dealing with the return value of a structure. The function executes fine, and I when I check the server it is talking to it, it...
1263
Japan
shahjapan
May 2, 2010 10:23 am
instead of dictionary, can you try XmlRpcStruct x = new XmlRpcStruct(); and you can add your paramaters here like x.add(key,value), xmlrpcstruct is inherited...
1262
Japan Shah
shahjapan
May 2, 2010 5:53 am
instead of dictionary, can you try XmlRpcStruct x = new XmlRpcStruct(); and you can add your paramaters here like x.add(key,value), xmlrpcstruct is inherited...
1261
randomnospamemail75
randomnospam...
May 1, 2010 10:02 pm
Hello, I am trying to cal a function that requires an Object[2]. This first object is a String, the second is a Map<String, Object> (so I use a...
1260
snakenuts27
Apr 10, 2010 8:05 pm
Hi all, I'm trying to write a C# app that communicates with an XML-RPC server that I don't really have much control over. I can decide what gets sent back to...
1259
Freeha
fskhan003
Apr 8, 2010 8:39 pm
Thank you. I will try it....
1258
Eric Teutsch
erict2k
Apr 8, 2010 8:33 pm
The biggest help for me was using Fiddler2 because it showed what was sent and received. It can even decode encrypted SSL statements. Check www.fiddler2.com ...
1257
Freeha
fskhan003
Apr 8, 2010 8:20 pm
Thank you so much, I am not getting any error now, but I am not able to perform any get statements as well. I am logging as admin so it is not rights issue....
1256
stsong
Apr 8, 2010 7:15 pm
How do I get around this? Error: Item has already been added. Key in dictionary: 'grid_editionId' Key being added: 'grid_editionId' I need to send more than...
1255
Eric Teutsch
erict2k
Apr 8, 2010 5:18 pm
Try this. This example calls a service at https://serveraddress/..., where there is one method called MethodImpl that takes an int and a string, and returns a...
1254
Freeha
fskhan003
Apr 7, 2010 9:14 pm
I need to write custom procedure for Blusocket controller that supports XML RPC. I am using C#. The server requires authentication, how can I supply username...
1253
Charles Cook
charlescookuk
Mar 17, 2010 10:49 am
The interface needs to be public. ... On Tue, Mar 16, 2010 at 11:51 PM, randomnospamemail2 < ... [Non-text portions of this message have been removed]...
1252
randomnospamemail2
randomnospam...
Mar 17, 2010 5:49 am
I was following the tutorial http://www.wordtracker.com/docs/api/ch03s04.html and was having some basic problems. I added the CookComputing.XmlRpcV2 reference...
1251
Eric Teutsch
erict2k
Feb 23, 2010 2:31 am
A follow up to this. Specifying the [XmlRpcMissingMapping(MappingAction.Ignore)] on a missing member, it will still include ...
1250
Eric Teutsch
erict2k
Feb 23, 2010 1:18 am
Found it; I had [XmlRpcMethod(StructParams=true)] on the method declaration, from a first attempt (which was the alternate in my example). Removing the ...
1249
Charles Cook
charlescookuk
Feb 22, 2010 8:36 pm
Hi Eric: the first way you described: struct special { Salpha alpha; Sbeta beta; } method(special); ... [Non-text portions of this message have been removed]...
1248
Eric Teutsch
erict2k
Feb 22, 2010 4:54 pm
Hi all! I have to call a remote method which expects two structures as arguments. The server wants the two structures named in the XML. If anybody has any...