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....
1400
promythyus
Jul 19, 2012 1:54 pm
Hi, I'm working on a project that requires me to send xml-rpc data over SCGI (http://en.wikipedia.org/wiki/Simple_Common_Gateway_Interface) but recieves normal...
1401
keri.bouckat
Oct 29, 2012 3:55 pm
Dear Charles, Am struggling since a week now to find a solution to how pass the datetime in ISO format in fact am trying to have into my XML request the...
1402
keri.bouckat
Oct 30, 2012 7:41 am
Sorry, my mistake in my original message : I want to have into my XML Repquest the datetime into the following format : ...
1403
catscratch296
Nov 2, 2012 1:20 pm
Hi, I can access the service in the Browser. But there I only get "Request from client does not contain valid XML." ... of course. Is there a way to access the...
1404
catscratch296
Nov 6, 2012 10:01 am
Ok, I found out, that there is some kind of automatic documentation. But where can I access this documentation in the browser? I'm using .NET Remoting for the...
1405
Eric Teutsch
erict2k
Nov 29, 2012 2:02 pm
I am calling a server method that returns a very complex structure of arrays of structures. So far the only way I can see what is returned if I have it return...
1406
rutgerkoperdraad
rutgerkoperd...
Nov 29, 2012 6:05 pm
Hi! I'm downloading posts from Joomla 2.5 with XmlRpcV2.dll version 2.5.0.0 using the MetaWeblog functions, in order to show the latest post in my Visual Basic...
1407
n3m0_42
Dec 4, 2012 9:50 pm
Hi, I've been looking at the 3.0 FAQ entry:2.20 How do I call an XML-RPC method with a variable number of parameters? And would like to do the same thing for...
1408
Dave
cuuld
Dec 24, 2012 2:37 am
[XmlRpcMethod] public XmlRpcStruct someXmlRpcMethodX(){ XmlRpcStruct test = new XmlRpcStruct(); test.Add("someKey",null); return test; } Noticed doing so...
1409
Dave
cuuld
Dec 24, 2012 3:17 am
I'm having similar question to post. Does the following type of code not work for starting this? [XmlRpcMethod] public XmlRpcStruct someXmlRpcMethodX(){ ...
1410
Dave
cuuld
Dec 24, 2012 3:32 am
I'm a novice with data structures and .NET overall and wanted to know what, if any, conversion is needed to conform to the Robot Framework remote library...
1411
jeffmckune
Dec 24, 2012 6:19 pm
Tom, Your message is a couple of years old, but I am also trying to find some tips on calling XML-RPC from VBA (preferred) or VB.Net. Anyone have any...