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...
1386
dillydadally
Mar 31, 2012 4:48 am
Hi! I'm trying to get a simple test client working in a Silverlight 5.0 VB.Net project and I'm getting a NotSupportedException: Specified method is not...
1387
Charles Cook
charlescookuk
Apr 1, 2012 10:27 pm
Synchronous methods are not supported with Silverlight. You have to implement asynchronous methods. ... [Non-text portions of this message have been removed]...
1388
reiner_dev_net
May 4, 2012 2:43 pm
Hi, First of all: this is a great piece of software! It was quite easy to get started with a .NET client consuming a service working on a different platform. ...
1390
Donnie
dhunniecutt
Jun 1, 2012 7:34 pm
Hi, I'm trying to figure out how to call this method to post data (truncated): <?xml version="1.0" encoding="iso-8859-1"?> <methodCall> ...
1391
Donnie
dhunniecutt
Jun 1, 2012 9:12 pm
Still trying to figure this out. I have a more detailed/formatted version of the question here: ...
1392
Duane Lakoduk
ddlakoduk
Jun 1, 2012 10:31 pm
If I may suggest, I think you need to rewrite your struct to use the byte[] type for the base64 data and implement the IXmlRpcProxy interface, similar to the...
1393
Donnie
dhunniecutt
Jun 1, 2012 11:02 pm
Hi Duane, Yes, I saw your post and tried that. The problem is that the method itself can only take one parameter which is an array ['key'][xxxVendorKey]...
1394
MANOJ
manoj_rosh
Jun 27, 2012 7:36 pm
Can this library be used in a Medium Trust environment? Our website is hosted in a shared environment and therefore we are not able to change to full trust. We...
1395
Charles Cook
charlescookuk
Jun 28, 2012 8:59 pm
This is by design in ASP.NET. By default outbound connections are restricted in medium trust and configuration changes are required to open this up. There is...
1396
embeddedprogrammer
jeffberezin
Jun 30, 2012 4:36 pm
Hi, I am a new user using version 2.5 to write a client application and have several steps working well. I am now trying to debug a complex system. Is there...
1397
embeddedprogrammer
jeffberezin
Jun 30, 2012 4:47 pm
Never mind. I just searched the messages and saw the message pointing out the use of fiddler. I will give that a try....
1398
Eric Teutsch
erict2k
Jun 30, 2012 5:05 pm
Put fiddler onto the same computer. It will capture and show all packets, even SSL encrypted if necessary. Invaluable... ... From: "embeddedprogrammer"...
1399
embeddedprogrammer
jeffberezin
Jul 1, 2012 1:15 am
Thanks a lot for your help. I have my project working now....