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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 1042 - 1073 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1042
Hi, I have a client(c# and xml-rpc.net) will call a server (this server protected by NetPoint or CoreID). Are there any one have any idea how my client can...
richardzhousc
Offline Send Email
Jun 3, 2008
10:44 pm
1043
Hi - I've implemented a server as an .ASHX file within an ASP.Net website (based upon http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#3.11 only in C#) and am...
richardshea98
Offline Send Email
Jun 4, 2008
12:18 pm
1044
Just replying to my own question here. Firstly (and most importantly) it seems that I was doing the right thing in specifying the full URL down to the file...
richardshea98
Offline Send Email
Jun 4, 2008
11:58 pm
1045
Hi all, Is it normal that the XML-RPC.NET server always sends the "HTTP/1.1 100 Continue" even if the client does not send the Expect 100 header? Is there a...
magellan7474
Offline Send Email
Jun 10, 2008
8:16 am
1046
I was wondering if someone might have an ideas on the following: I'm receiving the following error on the response from an xmlrpc server: ...
dlbork
Offline Send Email
Jun 10, 2008
8:31 pm
1047
It looks like the response XML is missing the encoding attribute in the XML declaration. Without this attribute UTF-8 is assumed. Your test code converts the...
charlescookuk
Offline Send Email
Jun 12, 2008
10:30 am
1048
Hi all, I have developed an application in Python running on a PDA that calls xmlrpc methods from a server authenticating in each call, and it works great, but...
joiggisa
Offline Send Email
Jun 16, 2008
8:13 am
1051
I'm currently using the latest XML-RPC.NET version of the DLL in a managed C++ client application. Since C++ doesn't provide functions to (directly) return an...
fredrikullner
Offline Send Email
Jun 24, 2008
4:57 pm
1052
Hi there, As part of my XML-RPC request, I have an element called "x-uniqueid" In the code I have put the following: [XmlElement(ElementName = "x-uniqueid")] ...
Barry Houghton
houghtonbarry
Offline Send Email
Jun 26, 2008
11:04 am
1053
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#1.11 ... custom attributes, but I'm not sure how to correctly set this attribute so that it is correctly picked up...
charlescookuk
Offline Send Email
Jun 26, 2008
12:13 pm
1054
Ahhh ok figured it out! I had to use the following attribute: [XmlRpcMemberAttribute("x-uniqueid")] Hope that helps someone else Baz ... custom attributes, but...
houghtonbarry
Offline Send Email
Jun 26, 2008
12:45 pm
1055
#include "stdafx.h" using namespace System; using namespace CookComputing::XmlRpc; public interface class IEcho : public IXmlRpcProxy { [XmlRpcMethod] ...
charlescookuk
Offline Send Email
Jun 26, 2008
8:27 pm
1056
I'm trying to troubleshoot a new document format that is sent as a request from a trading partner. I don't think he is sending the values that he claims. I've...
Dan Stringfellow
stringda
Offline Send Email
Jun 28, 2008
1:37 pm
1057
namespace OpenDHTLib { [XmlRpcUrl("planetlab4.cs.duke.edu")] public interface IOpenDHT { [XmlRpcMethod("put")] int Put(byte[] key, byte[] data, int ttl, string...
shinobigoh
Offline Send Email
Jul 1, 2008
8:27 am
1058
The dlls aren't in the latest zip. How do i compile without Visual Studio?...
Digital Enigma
digeratess
Offline Send Email
Jul 14, 2008
7:52 am
1059
If you use the built-in compressed folders feature of Windows Explorer in Windows XP to extract files from the distribution, you may find that the contents of...
charlescookuk
Offline Send Email
Jul 14, 2008
7:58 am
1060
Hello to all. I am new to XML-RPC and am trying to create a .NET client to work with self hosted Wordpress weblogs using the xmlrpc.php server. I am happy with...
pearce_w_j
Offline Send Email
Jul 16, 2008
10:34 am
1061
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#2.3...
charlescookuk
Offline Send Email
Jul 16, 2008
10:36 am
1062
Thank you so much, and with apologies for missing that in the FAQ. I think my unfamiliarity with the concepts and terminology meant that I failed to spot...
pearce_w_j
Offline Send Email
Jul 16, 2008
11:39 am
1063
Hi, I am trying to access a parameter-less method via XMLRPC.net and i have set UseEmptyParamsTag to false. Still I get an error saying that 'couldn't find...
brian.demoore
Offline Send Email
Jul 22, 2008
10:47 am
1064
Hi, I am trying to access a parameter-less method via XMLRPC.net and I have set UseEmptyParamsTag to false. Still I get an error saying that 'couldn't find...
Brian Demoore
brian.demoore
Offline Send Email
Jul 23, 2008
7:02 am
1065
Hi Brian: I just checked and setting UseEmptyParamsTags to false works as expected. You could check that the XML-RPC request is as you expect by using one of...
charlescookuk
Offline Send Email
Jul 23, 2008
7:50 am
1066
Hi Charles, Thanks for the reply. Setting up the parameter didn't work for me. However, I noticed that the UseEmptyParamsTag is not set in...
Brian Demoore
brian.demoore
Offline Send Email
Jul 23, 2008
9:27 am
1067
Hi, Is there a way I can send a C# dictionary object using XMLRPC.NET. My requirement is to send a List like <string , int>. janandith. [Non-text portions of...
Janandith Jayawardena
janandith
Offline Send Email
Jul 23, 2008
10:27 am
1068
Hi, The XML-RPC server I talk with is in python. It needs a tuple as input. How can I send it using C# and XML-RPC.NET janandith [Non-text portions of this...
Janandith Jayawardena
janandith
Offline Send Email
Jul 23, 2008
6:01 pm
1069
Hi Janandith: a tuple is an immutable list so I suppose an array is what you need. ... input. How can I send it using C# and XML-RPC.NET...
charlescookuk
Offline Send Email
Jul 24, 2008
7:51 am
1070
Hi Janandith: use XmlRpcStruct which is derived from HashTable....
charlescookuk
Offline Send Email
Jul 24, 2008
7:53 am
1071
I'm new to XMLRPC. Trying to figure out how to convert an XMLRPC call written in Java to call the same service from .NET app using XMLRPCNET. Here is a...
e_j_graham
Offline Send Email
Jul 30, 2008
3:25 pm
1072
I'm accessing an XML-RPC service where one type (User) includes a property that may be one of a small set of known values. In C#, I'd do this as an enum, but...
Owen Blacker
owenblacker
Offline Send Email
Aug 4, 2008
5:39 pm
1073
Erm, anyone? ... up ... something...
Owen Blacker
owenblacker
Offline Send Email
Aug 8, 2008
12:40 pm
Messages 1042 - 1073 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