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: 671
  • 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 502 - 531 of 1417   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
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...
512 jteichi Send Email Sep 13, 2005
7:25 pm
Blame on me! I did define the struct a little bit different in client and in server modul. The member of the struct st_order_new is "Customer_ID" in the client...
513 James Brown
zeketheelder Send Email
Sep 13, 2005
8:34 pm
The Client/Server library is part of XML-RPC for Delphi from Source Forge... Good Luck... ... From: jteichi To: XMLRPCNET@yahoogroups.com Sent: Tuesday,...
514 sprg3ak Send Email Sep 14, 2005
4:51 pm
We are using Xml Rpc.net as a client to query a mapping web service occasionally the server displays a "Service Unavailable" after the AppPool has shut down...
515 cyberheromaster Send Email Sep 23, 2005
7:24 am
Hallo all, Since i worked with Delphi 7, XMLRPC (from CodePunk). But now I have to programm a ASP.Net Site und Delphi 2005 with the CookComputing componet. I...
516 charlescookuk Send Email Sep 23, 2005
12:21 pm
I can't see why there should be a problem with thread safety in the XML-RPC.NET library itself using this code (you're using a separate proxy for each call)....
517 Jonathan Ballet
j_ballet Send Email
Sep 23, 2005
12:30 pm
Hello, I'm using Xmlrpc.net in a C# Windows client to communicate with a Python server. I would like to encrypte my communication between the client and...
518 dominiklachance Send Email Sep 29, 2005
8:57 pm
Hello everyone ! I must call a procedure with XML-RPC.NET. The problem is HTTP request ... POST / HTTP/1.1 Content-Type: text/xml User-Agent: XML-RPC.NET Host:...
519 Matthias Kestenholz
a21lokje321l... Send Email
Sep 30, 2005
5:29 am
... Hi Dominik, it would be very helpful if you included the piece of code where you are generating the RPC proxy or the interface description or your own RPC ...
520 Dominik Lachance
dominiklachance Send Email
Sep 30, 2005
1:33 pm
... Hello Matthias ! ... PROXY ... Imports CookComputing.XmlRpc <XmlRpcUrl("http://192.168.2.101:8070")> _ Public Class LoginProxy Inherits...
521 Matthias Kestenholz
a21lokje321l... Send Email
Sep 30, 2005
3:42 pm
... Hi Dominik, try modifying the XmlRpcUrl attribute your Url seems to be incomplete: <XmlRpcUrl("http://192.168.2.101:8070/xmlrpc/common&quot;)> _ (just add...
522 Dominik Lachance
dominiklachance Send Email
Sep 30, 2005
5:30 pm
... strPassword}) ... Hi Matthias, It work very well now :) ! Thank you for help !...
523 sprg3ak Send Email Sep 30, 2005
11:21 pm
I am trying to debug a System.outofmemoryexception. So, I setup a test to verify that the response xml was valid. The below test fails. Does anybody have a...
524 sprg3ak Send Email Sep 30, 2005
11:43 pm
Never mind about the failed test the api documentation is incorrect. Has anybody excperienced an out of memory exception before with a client proxy? Any...
525 charlescookuk Send Email Oct 1, 2005
12:06 pm
The return value of the response - a struct - does not contain a member called "map". It does however contain a member called "route" which contains a member...
526 charlescookuk Send Email Oct 1, 2005
12:21 pm
I've not had any reports of this. I've not tried it myself but you can get detailed information about managed memory allocations with the SOS debugger...
527 Massimo Vassalli
mv_999_mv Send Email
Oct 5, 2005
8:34 am
Dear All, I'm trying to implement an XML-RPC client using C# and XML-RPC.NET for a remore server (written in C++). At the beginning I had no problems but I'm...
528 charlescookuk Send Email Oct 5, 2005
8:48 am
Hi Massimo - looks like your server is not XML-RPC compliant. According to the XML-RPC spec a string value can be passed as: <value>some text</value> or ...
529 Massimo Vassalli
mv_999_mv Send Email
Oct 5, 2005
1:04 pm
Dear All, I'm trying to implement an XML-RPC client using C# and XML-RPC.NET for a remore server (written in C++). At the beginning I had no problems but I'm...
530 Massimo Vassalli
mv_999_mv Send Email
Oct 6, 2005
6:45 pm
Hi Charles, thank you for your answer. The server has been implemented using the XmlRpc++ implementation of XML-RPC that seems to be compliant with the...
531 charlescookuk Send Email Oct 7, 2005
6:47 am
Hi Massimo - I don't know what you mean by "xmlrpc value" type. Can you post the responses generated by the Java client and your application? Though if the...
Messages 502 - 531 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