Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

XMLRPCNET · XML-RPC.NET

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 672
  • Category: Open Source
  • Founded: Apr 3, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 482 - 511 of 1417   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
482 sprg3ak Send Email Jul 1, 2005
11:09 am
I am currently working with a XML-RPC service from Where2GetIt a mapping company. Because there response is somewhat reformed I am using XmlRpcStruct and...
483 charlescookuk Send Email Jul 1, 2005
11:12 am
In the scenario I suggested a custom channel sink is used to configure Remoting to accept XML-RPC requests. The client can be any XML-RPC compliant client....
484 tgessl67 Send Email Jul 4, 2005
9:06 am
Charles, I will check the examples and the FAQs. I have not experiences on custom channel sinks... With the custom channel sink I can setup a service, bind it...
485 Charles Cook
charlescookuk Send Email
Jul 4, 2005
9:42 am
Hi Gabe - I can't reproduce this but I may be misunderstanding the problem. Can you send me an example of a response which is failing? - Charles ... [Non-text...
486 tgessl67 Send Email Jul 4, 2005
10:50 am
Charles, I tested the StateNameServer example as standalone server. I can request with SOAP and XMLRPC. Perfect. I think this is all I need. Thilo ... any ... ...
487 countzero Send Email Jul 14, 2005
11:51 pm
Due to the nature of different implementation of the metaWeblog.getCategories API out there (struct of structs vs array of structs) soes anyone know a way to...
488 charlescookuk Send Email Jul 15, 2005
6:16 am
Specify the return type as System.Object, a.k.a object in C#. - Charles ... metaWeblog.getCategories API out there ... get the library to return a ... it is?...
489 countzero Send Email Jul 15, 2005
11:48 am
That's what I guessed but wasn't sure whether the library works that way. Thanks!...
490 vs_infos_pt Send Email Jul 25, 2005
9:28 am
i need to build an application that both sends and receives xmlrpc messages. can i do it? and how?...
491 zeketheelder Send Email Jul 31, 2005
9:10 am
Is it the case that a XML-RPC client can send a struct but a server can not respond with a struct? If this is the case how do you do things like responding to...
492 countzero Send Email Aug 1, 2005
12:35 am
Hi, Just want to let the group knows about an issue I've just fixed in the library. My app uses the lib to connect to blogging services such as TypePad and MT....
493 charlescookuk Send Email Aug 2, 2005
8:33 am
Thanks for this Alex. I'll add check the change in. - Charles...
494 Mayorga, Armando CIV ...
navy_rad_geek Send Email
Aug 3, 2005
4:36 pm
Hello all, Having issues with deploying my XmlRpc App, the issue is that the app works GREAT on my development box but only works partially on the box im...
495 charlescookuk Send Email Aug 3, 2005
5:21 pm
Hi Armando - what type of XML-RPC.NET server implementation is it? If IIS and not remoting, is the web.config file ok? - Charles ... app works GREAT on my...
496 Mayorga, Armando CIV ...
navy_rad_geek Send Email
Aug 3, 2005
6:12 pm
I'm using remoting, with a .config file the same one that I used on the development box A.J. Mayorga Network Security Engineer US NAVY / Fleet Information...
497 Mayorga, Armando CIV ...
navy_rad_geek Send Email
Aug 3, 2005
7:15 pm
Now I am wondering if my App sees the .config file at all, I removed it from the dir and it gave me the same error, Does anyone have a sample of how to setup...
498 zeketheelder Send Email Aug 6, 2005
5:16 am
Whas this question to tough for you folks? ... can...
499 Thomas Zastrow
thomaszastro... Send Email
Aug 28, 2005
2:37 pm
Hello, at first I have to say that I'm totaly new to .NET and C# .... I worked with XML-RPC in Perl and Java, but I realy have no experience with C# ... so,...
500 Charles Cook
charlescookuk Send Email
Aug 29, 2005
11:55 am
Hi Thomas - section 2.1 contains the code you need. However I noticed a bug in the code in the FAQ: the SumAndDifference method should be public. Also the name...
501 Thomas Zastrow
thomaszastro... Send Email
Aug 29, 2005
5:35 pm
... Dear Charles, thank you very much! Now I made a bit step forward ;-) Next thing I will try is to connect to the eXist-XML-Database ...
502 lloydphillips77 Send Email Sep 4, 2005
12:16 pm
Hi All I'm a newbie to xml-rpc and am trying to get a news feed working on my website which is coded in vb.net. I've check the web and can only see a posting...
503 dado49.rm Send Email Sep 8, 2005
12:18 pm
Hi I'm a student and making my poject exam. I use xml-rpc in asp.net I don't have much experience with this kind programming. I tryed to make a contact a...
504 Thomas Zastrow
thomaszastro... Send Email
Sep 11, 2005
8:45 pm
Dear Charles, I hope it's OK to ask you another newbie-question :-) As I already told, I try to access the XML-Database eXist with C# / ... using System; using...
505 charlescookuk Send Email Sep 12, 2005
7:25 am
Tom - your Document method is implemented incorrectly. It should be: public String Document (String datei) { return (String) Invoke ("Document&quot;, new...
506 charlescookuk Send Email Sep 12, 2005
7:28 am
Dado - XmlRpcStruct is derived from Hashtable. - Charles...
507 dado49.rm Send Email Sep 12, 2005
7:52 am
How can I get inside secodn struct? I tryed this: Dim str1 As XmlRpcStruct str1 = proxy.getAllAccounts(sesKey) '200 struct Dim str2 As XmlRpcStruct ' this is...
508 jteichi Send Email Sep 13, 2005
6:33 am
Hallo, I want to call my service with a struct as parameter. My first Tests with simple integers as parameters worked perfectly. Now I want to use structs. The...
509 jteichi Send Email Sep 13, 2005
3:44 pm
Hi Jim, I am an absolut beginner but I could implement a server that respond with a struct. My problem is, that the server cannot receive a struct. :-) If you...
510 James Brown
zeketheelder Send Email
Sep 13, 2005
4:07 pm
Joachim - After getting little (no) help from anyone in the newsgroup I did managed to get the thing running, both sending and receiving stuct. I code in...
511 jteichi Send Email Sep 13, 2005
6:25 pm
thank you. I try to decipher. Did you realize that with the cookcomputing library or did you make your own xml-server? regards Joachim ... newsgroup I did...
Messages 482 - 511 of 1417   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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