Search the web
Sign In
New User? Sign Up
xml-rpc · XML-RPC Discussion
? 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 6798 - 6828 of 6839   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6798
Hello, thank you for the great lib ... but i wonder if there is an "running" example for a real vb.net xmlrpc-net SERVER. I dont like to have an IIS or...
Chris Karidian
karidian63
Offline Send Email
Feb 12, 2009
2:45 pm
6799
Greetings Chris. Working on the assumption that you are using the XML-RPC.NET library (you did not specify,) your question is answered in the FAQ: ...
Troy Farrell
troyatni
Offline Send Email
Feb 12, 2009
3:09 pm
6800
I'm not a PHP programmer, so not sure what to look for. Is there a standard client library that is recommended for PHP? A few Google turned up: ...
Bill Moseley
whmoseley
Offline Send Email
Mar 19, 2009
11:33 pm
6801
I'd say the best choices are: - the php xmlrpc extension (www.php.net/xmlrpc). Fastest of them all, since it is written in C and not in PHP, and comes as...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Mar 20, 2009
9:07 am
6802
Hello everyone, Iam using the xmlrpc with the c#.net. My server function looks like this below. API = (('object_id', 'ASCII string', 1), ('services', 'struct',...
verynew
dineshp_832003
Offline Send Email
Apr 14, 2009
1:09 pm
6803
Hello Dineshp. You can nest XmlRpcStructs just like you would nest .net Hashtables: XmlRpcStruct t = new XmlRpcStruct(); XmlRpcStruct u = new XmlRpcStruct(); ...
Troy Farrell
troyatni
Offline Send Email
Apr 14, 2009
2:54 pm
6805
Hello troy, Thank you very much for your answer. I have implemented the interface and structure as below [XmlRpcUrl("http://www.myurl.com")] public interface...
verynew
dineshp_832003
Offline Send Email
Apr 21, 2009
10:32 am
6806
Dinesh, If your client is not receiveing a response, your client is probably not transmitting a request. Try using Wireshark http://www.wireshark.org/ to ...
Troy Farrell
troyatni
Offline Send Email
Apr 21, 2009
2:00 pm
6807
hello troy, Thank you once again for your reply. Actually is it possible to view the request in from the c#.Net itself so that i can verify with the server api...
verynew
dineshp_832003
Offline Send Email
Apr 21, 2009
3:57 pm
6808
Hi Dinesh. Since you are using XML-RPC.NET, you should read the Debugging section of the FAQ. It answers your question: ...
Troy Farrell
troyatni
Offline Send Email
Apr 21, 2009
4:32 pm
6809
Hello troy, This was really good help. I had used Fiddler to view the request header. Actually i have a send a request to the server api function like this ...
verynew
dineshp_832003
Offline Send Email
Apr 22, 2009
8:53 pm
6810
hello troy, This is really good help. I had used the fiddler to view the request and reponse header. I found what is the problem i have. Actually my api...
verynew
dineshp_832003
Offline Send Email
Apr 22, 2009
9:38 pm
6811
Hello Dinesh. Your program is giving you this: {events: {evt_change: True}, services: "aw_email"} You want this: {aw_email: {evt_change: True}} So maybe you...
Troy Farrell
troyatni
Offline Send Email
Apr 23, 2009
12:06 am
6812
Hello Troy, You are right that was the mistake.. I changed it and it's working fine now.. Really Thank you very much for time and help. Dinesh....
verynew
dineshp_832003
Offline Send Email
Apr 23, 2009
10:05 am
6813
I have an app the runs XML-RPC and it uses the IXR library php file. I have switch from php4 to php5 and seen a huge performance drop and it has become...
partsboy
Offline Send Email
May 5, 2009
7:42 am
6814
After digging up the posts I decided to ask.. According to XML-RPC spec, parameter value of <string> cannot contain < or &. This means, sending XML as a...
kereszt_hu
Online Now Send Email
Jun 2, 2009
2:30 pm
6815
... There is no way, to send unescaped xml, sorry. It is not the fault of xmlrpc, it is the fault of the xml spec _ you cannot ever use a "<" char inside a...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Jun 2, 2009
2:47 pm
6816
... Yes, implementations generally use &lt; and &amp; ... Yes, the text can be enclosed in a CDATA section: <![CDATA[ some text with < and & ]]> I'd be...
John Wilson
tug123uk
Offline Send Email
Jun 2, 2009
2:49 pm
6817
... The safest approach is to taken encoded XML and base-64 encode it as a binary payload. This way you don't have to know or are about the encoding of the...
Fred Drake
pythondocs
Offline Send Email
Jun 2, 2009
2:51 pm
6818
... Actually, CDATA were my next tip. Your post explained to me that XML-RPC uses just the <string>'s node value and not everything below it. In the later...
kereszt_hu
Online Now Send Email
Jun 3, 2009
10:19 pm
6819
... I'm not sure I understand what you are saying. Let me try to clarify what the spec says: A <string> can only contain text (in XML terms CDATA). It may not ...
John Wilson
tug123uk
Offline Send Email
Jun 4, 2009
6:17 am
6820
... You might want to look up the relax-ng spec for xmlrpc if you want to add more formalism / automation to the protocol. Unfortunately using xsd to exactly...
gaetanogiunta2000
gaetanogiunt...
Offline Send Email
Jun 4, 2009
8:02 am
6821
Hi All, I want to test my client code to connect to the yahoo server using XML-RPC. Below is my Client code to connect to Flicker service implemented in yahoo...
sirikanthg
Offline Send Email
Jul 7, 2009
9:44 am
6822
Hello, I found this very old post http://tech.groups.yahoo.com/group/xml-rpc/message/2306, asking a similar question as I will do in a moment. The only reply...
akalaghan
Offline Send Email
Jul 15, 2009
3:00 pm
6823
... One option is to use JABBER-RPC (http://xmpp.org/extensions/xep-0009.html ). this is XML-RPC using XMPP as a transport mechanism rather then HTTP. You run...
John Wilson
tug123uk
Offline Send Email
Jul 15, 2009
5:52 pm
6824
Thank you for the reply. One of my requirements is to have at least C (or C++) and java implementations for both server and client side available. Plus the...
Arne Kalaghan
akalaghan
Offline Send Email
Jul 16, 2009
10:41 am
6825
... Maybe jsonrpc might be better suited to your needs - it is less hardcoded to http and better suited to bidirectional communications. There are a lot of...
Gaetano Giunta
gaetanogiunt...
Offline Send Email
Jul 16, 2009
10:52 am
6826
... You could consider having a getNextEvents service available; clients would call it, and get back an array of the most recent events ready for delivery to...
Jay Carlson
nop@...
Send Email
Jul 16, 2009
11:02 am
6827
... Excellent. It seems that you saved me lots of work. For some reason I had jsonrpc in my mind as some derivative of xmlrpc, using a less structured format...
Arne Kalaghan
akalaghan
Offline Send Email
Jul 16, 2009
12:50 pm
6828
... This is another option that I was considering. But it needs two connections per client/server pair, doesn't it? If the server is executing (=idling most of...
Arne Kalaghan
akalaghan
Offline Send Email
Jul 16, 2009
1:00 pm
Messages 6798 - 6828 of 6839   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