Looks like we should be using the client HTTP stack in Silverlight. This has support for headers (but Silverlight 4 still necessary for Credentials support): ...
1357
geniali74
Jun 18, 2011 10:19 am
Hi Charles Thanks for your answer. I've a project if it works. Only the deserials of the request data not work. It is a Windows Phone 7 project. ... internal...
1358
Charles Cook
charlescookuk
Jun 20, 2011 11:20 am
What are the status code and description of the response? ... [iPad] ... [Non-text portions of this message have been removed]...
1359
geniali74
Jun 20, 2011 7:20 pm
Hi Charles I was on the verge of resignation. I can no longer produce the error. :-( I can send you the solution with a correct login for the service? I see...
1360
geniali74
Jun 21, 2011 7:55 pm
Hi Charles I think I've found the error. I've reference to the xmlrpcsilverlight assembly and change this code. File: XmlRpcDeserializer.cs Line: 915 // TODO:...
1361
Sharon
sharonbn
Jun 22, 2011 11:41 am
Hi everyone, Just wanted to let you know that I successfully deployed an application on Azure that uses xml-rpc.net. I used the ashx solution that is described...
1362
Charles Cook
charlescookuk
Jun 23, 2011 11:58 pm
Hi Sharon: thanks for letting us know about this. ... [Non-text portions of this message have been removed]...
1363
Charles Cook
charlescookuk
Jun 24, 2011 12:02 am
Hi Roland: thanks for this fix. I'll check it in when I get back from vacation. I need to work out how to run NUnit tests in Silverlight to provide...
1364
José Vicente
jviares
Jun 24, 2011 1:37 pm
my example with CookComputing.XmlRpc.CF.dll: using System; using System.Linq; using System.Collections.Generic; using System.ComponentModel; using System.Data;...
1365
drewj_98
Jun 27, 2011 1:41 pm
I am very new to using web services. I am creating an application using Ez.Newsletter.MagentoAPI (v. 1.1) which, in turn uses CookComputing XML-RPC. When I...
1366
catscratch296
Aug 3, 2011 2:23 pm
Hi, I try to connect to a Java XMLRPC service (Apache) with C# (XMLRPC.Net). There I got a method which returns a struct. E.g.: <struct> ...
1367
Charles Cook
charlescookuk
Aug 3, 2011 3:48 pm
You defined the method to return an array — the 'expected39; value — but the server returns a struct. ... [Non-text portions of this message have been...
1368
Michael Kaene
catscratch296
Aug 3, 2011 4:40 pm
Ok, thank you. What should I uses instead? The build-in XmlRpcStruct type? If I try to use it I get the message that it is not declared as serializable. But...
1369
avizorinfo
Aug 3, 2011 4:47 pm
Hi, I'm trying to create a service to offer Tapatalk support for a ASP.Net forum (Tapatalk is a popular app for smartphone to read forums, is based in xml-rpc...
1370
Charles Cook
charlescookuk
Aug 3, 2011 5:08 pm
Defining the return type as XmlRpcStruct should work. If this is failing in the way you describe can you send some sample code to illustrate what you're doing?...
1371
Charles Cook
charlescookuk
Aug 3, 2011 5:13 pm
I've not tried it but class XmlRpcService has a protected property called Context which exposes the current instance of HttpContext. Have you tried using this...
1372
avizorinfo
Aug 3, 2011 5:52 pm
I sincerely thank you pay attention ... yes, I tried this.Context.Response.AddHeader("Mobiquo_is_login", "true"); but the result of http headers remains: ...
1373
avizorinfo
Aug 3, 2011 9:03 pm
only apologize for wasting your time ... was using a debugging strategy that was inappropriate and not allowed me to see the actual responses from the server. ...
1374
Michael Kaene
catscratch296
Aug 4, 2011 8:10 am
Hi, on client-side everything works fine now. Thanks! But on server-side I implemented is by using .Net Remoting (see 2.5 FAQ section 3.3). There I always get...
1375
Charles Cook
charlescookuk
Aug 5, 2011 8:28 am
I just modified the StateNameServer sample to implement a method which returns an instance ofXmlRpcStruct and I don't see this problem. Where do you get the...
1376
Dave
cuuld
Sep 14, 2011 2:15 am
I was wondering, how do we properly propagate exceptions thrown from another class method, etc. through to the XML-RPC.Net implemented server? Particularly in...
1377
Dave
cuuld
Sep 14, 2011 5:16 am
Seems I found root cause of my issue: http://stackoverflow.com/questions/648113/exception-has-been-thrown-by-the-target-of-an-invocation-error-mscorlib root...
1378
brettski
Sep 15, 2011 8:49 pm
I need to setup a proxy for many different blogs at different location, though I am not sure how I can make the endpoint dynamic. Is someone able to assist...
1379
brettski
Sep 16, 2011 2:52 am
Ah, found it in the FAQ. I have no idea how I missed it so many times. http://www.xml-rpc.net/faq/xmlrpcnetfaq-2-5-0.html Details: 2.3 Can I specify the...
1380
Dean Santillan
deansantillan
Sep 28, 2011 12:55 pm
I am trying to get options and set options using XMLRPC.NET but am not succeeding. Is it possible for someone to help me out. [XmlRpcMethod("wp.setOptions")] ...
1381
umen888
Nov 5, 2011 4:37 pm
i have dll im creating in c# using visual studio 2008 pro . i need to use in this dll the xmlrpc.net dll . in xmlrpc.net i recompile the dll with Private Key...
1382
Vikrant
vikrant_tech
Jan 5, 2012 4:09 pm
I am learning this XmlRpc.Net examples http://www.wordtracker.com/docs/api/ch03s04.html and I added the reference of CookComputing.XmlRpcV2.dll. When I...
1383
Charles Cook
charlescookuk
Jan 5, 2012 4:46 pm
Hi Vikrant: I suspect that your project is configured for the 4.0 client profile which doesn't include system.web. Try configuring it for the full 4.0 profile....
1384
rama
nani_1169
Jan 19, 2012 10:16 pm
request: how do i call a method with the following xml <?xml version="1.0"?> <methodCall> <methodName>person.addperson</methodName> <params> <param> ...
1385
kdamundson
Feb 3, 2012 4:15 pm
Hello, I new at this and I don't understand how to populate an XMLRPC object with an array that will build XML nodes of multiple elements and attributes. I...