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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 648 - 677 of 1226   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
648
Hi, I have a simple XML-RPC Web service which runs fine on a number of XP Pro machines but doesn't run on a Windows 2000 or 2003 Server. When the Web service...
apbarc
Offline Send Email
Apr 10, 2006
8:22 am
649
One of the methods I'm trying to write uses a scalar variable event. Here is the defintion: event(required): * [scalar](required) The event/log text the user...
Mike Romero
ssurge95
Offline Send Email
Apr 29, 2006
6:51 am
650
I sheepishly retract this as I should bother to read the FAQ first :)...
Mike Romero
ssurge95
Offline Send Email
Apr 29, 2006
7:04 am
651
Even if my last question was a bit sheepish for not reading the FAQ, this one is less so. The method I'm submitting to requires that you submit the date in...
Mike Romero
ssurge95
Offline Send Email
Apr 30, 2006
3:42 am
652
First thing that comes to my mind: are the server's expected values zero-based, maybe? (i.e., January is month 0 instead of month 1?) Or is the server's...
Ivan Grozny
mt_headed99
Offline Send Email
May 1, 2006
1:18 am
653
My turn to be a bit sheepish - it's LiveJournal, no? I'm looking at the spec, and it says: mon(required): [scalar](required) The current 1- or 2-digit month...
Ivan Grozny
mt_headed99
Offline Send Email
May 1, 2006
1:51 am
654
You're right, that was the issue. I suppose I should read the spec a bit more carefully ;) Thanks for your help! ... user's local timezone). ... knowing...
Mike Romero
ssurge95
Offline Send Email
May 1, 2006
5:51 am
655
Here's one feature of LiveJournal that I am trying to work on. One of the things that makes LJ popular is its associated post metadata, like what mood one is...
Mike Romero
ssurge95
Offline Send Email
May 1, 2006
6:26 am
656
hi i'm new to xmp-rpc, and i am currently working on projects with server in apache (doing some php script developed by others), and client using xml-rpc with...
howard_lee_2000
Offline Send Email
May 2, 2006
6:33 am
657
hi i'm new to xml-rpc, currently i am working on a project with server in apache/php and client in xml-rpc with .net (visual studio 2005). we would like to...
howard_lee_2000
Offline Send Email
May 2, 2006
6:34 am
658
You can just have the library in the same folder as your application. As long as you set the reference to it in your code (using CookComputing.XmlRpc) you're ...
Michael Romero
ssurge95
Offline Send Email
May 2, 2006
9:21 pm
659
Does anyone know if there is a way to dynamically set the XmlRpcMethod name? I am connecting to an XMLRPC server, where an initial call returns an instance id,...
veloce8sp
Offline Send Email
May 4, 2006
5:57 pm
660
Hi all, Nice to meet you & thank you for excellent library. I'm struggling to post to Wordpress.com with VS 2005. Which API should I use? Is there any working...
Naoki Hada
hadanaoki
Offline Send Email
May 4, 2006
5:57 pm
661
You might want to reference http://codex.wordpress.org/XML-RPC_Support which has a whole bunch of information about using MetaWeblog, Blogger, or the MT XMLRPC...
Michael Romero
ssurge95
Offline Send Email
May 4, 2006
7:51 pm
662
Hi, Is there any way to not assign a constant URL in Interface? Cause the server path may change time to time. <XmlRpcUrl("http://VMXP/Xmlrpc/RPC2.ashx")> _ ...
Hoi Kok Kent
kent_plaza
Offline Send Email
May 10, 2006
11:59 am
663
... Yes there is. I'll post the C# code because I never use VB, but it should be easily translatable: IStateName proxy = ...
Matthias Kestenholz
a21lokje321l...
Offline Send Email
May 10, 2006
1:04 pm
664
Thank Matthias, It's work. ... Yes there is. I'll post the C# code because I never use VB, but it should be easily translatable: IStateName proxy = ...
Hoi Kok Kent
kent_plaza
Offline Send Email
May 11, 2006
2:04 am
665
Thank Matthias, It's work. ... Yes there is. I'll post the C# code because I never use VB, but it should be easily translatable: IStateName proxy = ...
Hoi Kok Kent
kent_plaza
Offline Send Email
May 11, 2006
2:11 am
666
Hello. I want to know how to send message from server ? Now in my application only client can send message to server and get response. How to do a server-sent...
alt7alt7
Offline Send Email
May 31, 2006
1:55 pm
667
XML-RPC over HTTP is stateless - you'd need to create an XML-RPC "Server" in the client if you're wanting to do it that way, and then create a "Client" on the...
Stephen Sadowski
ronin793
Offline Send Email
May 31, 2006
2:10 pm
668
ok, i am making now this staying alive feature for client. I also tried put "client" to server and "server" to client. Looks really not good. But i am in...
alt7alt7
Offline Send Email
May 31, 2006
2:56 pm
669
Hello there, I currently try to implement the FlickrAPI with XML-RPC.NET however I#m facing some problems with some Methods. Flickr uses to deliver the Method...
maui.mauer
Offline Send Email
May 31, 2006
5:06 pm
670
An manally implemented proxy method like this requires that the signature of the method corresponds to the signature of the XML-RPC method. In this case it...
charlescookuk
Offline Send Email
May 31, 2006
5:20 pm
671
Hello Charles, thanks for your information. I will try if I can do it with XmlRpcProxyGen, but I think I will run intro trouble because I remember this not...
maui.mauer
Offline Send Email
May 31, 2006
5:44 pm
672
For the Compact Framework you will have to use write a method which calls Invoke because the CF doesn't support reflection. In this case define the proxy...
charlescookuk
Offline Send Email
May 31, 2006
8:07 pm
673
I am trying to send to an XmlRpc method over SSL with Basic Authentication. The following VB.NET code is in a subclass of XmlRpcClientProtocol and is used to...
Mark Patrick
techezconsul...
Offline Send Email
Jun 2, 2006
5:37 am
674
I am trying to write some code for an XML-RPC server that listens on port 13001. How do I set the port number?...
philipwagenaar
Offline Send Email
Jun 12, 2006
11:07 am
675
Hi all, Can any one provide me saple or link to C# sample to upload/download photos on MSN spaces... Thanks and Regards, Anand...
Anand
ad221177
Offline Send Email
Jun 20, 2006
6:33 am
676
I've investigated a report of problems with the Syndic8 XML-RPC API where requests from XML-RPC.NET were failing with "The server committed a protocol...
charlescookuk
Offline Send Email
Jun 21, 2006
12:39 pm
677
I am running a RPC server on this machine http://66.75.158.78/RPC2 and have deployed clients to call it (www.seti.net/SETINet/SETINet.htm). It works fine but I...
zeketheelder
Offline Send Email
Jun 21, 2006
3:19 pm
Messages 648 - 677 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