Search the web
Sign In
New User? Sign Up
XMLRPCNET · XML-RPC.NET
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 705 - 737 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
705
Release 1.0.0 available at www.xmlrpc.net. Full details there. FAQ also updated. - Charles...
charlescookuk
Offline Send Email
Jul 13, 2006
12:09 pm
706
Sorry, wrong url, but I'm sure you know it should have been www.xml-rpc.net. BTW its worth mentioning that if you rely on any of the client features which...
charlescookuk
Offline Send Email
Jul 13, 2006
1:02 pm
707
... When I try to goto www.xmlrpc.net - I'm getting redirected to www.xp.com without any obvious way of getting to the xmlrpc site. Any suggestions?...
David Ashwood
alwaysaseeker
Offline Send Email
Jul 13, 2006
1:19 pm
708
It's www.xml-rpc.net _____ From: XMLRPCNET@yahoogroups.com [mailto:XMLRPCNET@yahoogroups.com] On Behalf Of David Ashwood Sent: Thursday, July 13, 2006 8:02 AM ...
Matthew Aguirre
maaguirr
Online Now Send Email
Jul 13, 2006
1:43 pm
709
I don't suppose I could just send a Dictionary along? Anyone know how to do this? Thx, Andrew...
anbrad
Online Now Send Email
Jul 15, 2006
6:14 am
710
Hi Andrew - you need to use XmlRpcStruct which is derived from System.Collections.Hashtable. - Charles...
charlescookuk
Offline Send Email
Jul 17, 2006
2:46 pm
711
When I try to compile my method for a test run, I get a TypeLoadException: Type 'XmlRpcProxy200c952c-d34f-4b4e-9879-f5bb71f933bc' from assembly ...
Mike Romero
ssurge95
Offline Send Email
Jul 20, 2006
2:53 am
712
Hi Mike - I can't reproduce this. Can you send me a small sample program which illustrates the problem (executable plus source) plus which version of the .NET...
charlescookuk
Offline Send Email
Jul 20, 2006
7:23 am
713
Hi to all. I'm experiencing a little problem. I have a class extending XmlRpcClientProtocol with a method coded as below: [XmlRpcMethod] public RTAIRequest...
MV
mv_999_mv
Offline Send Email
Jul 20, 2006
8:20 am
714
Hi Massimo - if you want to send a request with an arbitrary number of parameters, the way to do it now is to use the params key word: [XmlRpcMethod] public...
charlescookuk
Offline Send Email
Jul 20, 2006
11:56 am
715
Hi, I have got a strange problem accessing an eGroupWare Server via XML-RPC. Some of the functions, especially the ones that I myself have programmed, return...
acme821
Offline Send Email
Jul 21, 2006
4:30 pm
716
I have an application that is attempting to send a base-64 encoded JPEG image to a method. The encoded string is about 26k. When I try to invoke the method...
Arian Kulp
atkulp
Offline Send Email
Jul 21, 2006
6:18 pm
717
Hi Arian - I'll have a look at this later - please send the code for the proxy method causing the problem so I can check that. What is the specific exception...
Charles Cook
charlescookuk
Offline Send Email
Jul 21, 2006
6:29 pm
718
Hello This is my first time to use XML-RPC. The problem I met is when I made XML-RPC between TCL and C#, it failed. If the server is written in TCL and the...
zhu_bixian
Offline Send Email
Jul 24, 2006
10:22 am
719
Hi - for the protocol violation try using the following application config file with your client: <?xml version ="1.0"?> <configuration> <system.net> ...
charlescookuk
Offline Send Email
Jul 24, 2006
11:27 am
720
FYI if you get the "The server committed a protocol violation" exception when making an XML-RPC call, have a look at this post: ...
charlescookuk
Offline Send Email
Jul 26, 2006
6:40 am
721
When I first tried to run the code below in .NET 2.0 I got an error stating that an interface was inaccessible. So, I came by this site and noticed a new...
sprg3ak
Online Now Send Email
Jul 28, 2006
10:49 pm
722
I just had to set m_xml.KeepAlive = false; and then I didn't get that exception any longer. hth Andrew _____ From: XMLRPCNET@yahoogroups.com...
Andrew Bradnan
anbrad
Online Now Send Email
Jul 29, 2006
2:14 am
723
I tried the code below. Obviously it returns an error because the struct doesn't contain the required members but it is an XML-RPC fault response so things are...
charlescookuk
Offline Send Email
Jul 29, 2006
7:30 am
724
Hi, i am having some troubles with using the component. I was wondering if someone could help me out. I am making a xml-rpc call to a xml-rpc server that...
donhrobjartz
Offline Send Email
Jul 30, 2006
8:21 am
725
What are you expecting the XML-RPC response to contain? Can you supply a dump of the response? See here: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#5.1 -...
charlescookuk
Offline Send Email
Jul 30, 2006
9:06 am
726
Hi Charles, thanks for the fast reply! I attached a logger to the Xmlrpc call like you suggested and the response is obviously correct from the server. Please...
donhrobjartz
Offline Send Email
Jul 30, 2006
2:38 pm
727
I'm afraid this is not valid XML-RPC. Each member element in a struct must have one "name" child element and one "value" child element, not as in your...
charlescookuk
Offline Send Email
Jul 30, 2006
4:02 pm
728
Charles, thank you again for replying. According to the specs i beleive you are right. http://www.xmlrpc.com/spec. However i am not sure whether the XmlRpc...
donhrobjartz
Offline Send Email
Jul 30, 2006
5:18 pm
730
I believe that's IXmlRpcProxy.KeepAlive, so on the client interface you Create. _____ From: XMLRPCNET@yahoogroups.com [mailto:XMLRPCNET@yahoogroups.com] On...
Andrew Bradnan
anbrad
Online Now Send Email
Jul 31, 2006
12:20 am
731
Two suggestions: (1) You could hack the XmlRpcClientProtocol class so that instead of calling DeserializeResponse it returns the raw XML. (2) You could hack...
charlescookuk
Offline Send Email
Jul 31, 2006
7:06 am
732
Hi, everyone. How XMLRPC server return a datatable to client? since i read the forum and XMLRPCNET site, is it XMLRPCNET able to return data in basic datatype...
Hoi Kok Kent
kent_plaza
Offline Send Email
Aug 1, 2006
4:13 am
733
Is there a how-to anywhere about using the xml-rpc client library over an ssl connection? Any pointers would be appreciated. I ran across an old post on this...
netinlet
Offline Send Email
Aug 2, 2006
6:29 am
734
Version 2.0.0 is up at http://www.xml-rpc.net/ The main change is the addition of a .NET 2.0 build to allow use of 2.0 features such as generics and nullable...
charlescookuk
Offline Send Email
Aug 2, 2006
7:33 am
737
Version 2.1.0 is up at http://www.xml-rpc.net/ New features and changes: * Add support for proxy interfaces with overloaded methods. * Add support for the...
charlescookuk
Offline Send Email
Aug 13, 2006
12:55 pm
Messages 705 - 737 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help