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 439 - 468 of 1417   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
439 charlescookuk Send Email May 22, 2005
12:00 pm
The FAQ has examples. Note that the url and port are configured by whatever is hosting the service class. - Charles ... required logic & have extended the...
440 charlescookuk Send Email May 22, 2005
12:02 pm
There is currently no support for overload methods. - Charles...
441 charlescookuk Send Email May 22, 2005
2:35 pm
Version 0.9.2 is now available at www.xml-rpc.net: http://www.xml-rpc.net/release/xml-rpc.net.0.9.2.zip Changes * Fixed parsing struct containing an enum...
442 Benjamin C. Allfree
benallfree2000 Send Email
May 23, 2005
1:38 pm
Does anyone know of a way to cast a class to a struct, or a struct to a class? Ben _____ From: XMLRPCNET@yahoogroups.com [mailto:XMLRPCNET@yahoogroups.com] On...
443 j_ballet Send Email May 24, 2005
5:16 pm
Hello, I wanted to make a communication between a server (written in Python) and a client written in C#, using XMLRPC. So, I started to make a little test with...
444 Brad Sahlhoff
bsahlhof Send Email
May 24, 2005
6:25 pm
I understand that .NET DateTime can't contain a value like: "0000-00-00T00:00:00" but is there any way to suppress the error (maybe enter value as void or...
445 Yolanda Soriano
soriano_yolanda Send Email
May 25, 2005
6:50 am
Hi, Does anybody know how to access an XIndice1.1b3/b4 database from .NET (Visual C#) by using XMLRPC.NET? Do I need an additional library or something...
446 charlescookuk Send Email May 25, 2005
7:17 am
Hi Ben - I had a quick look to see what is involved in mapping .NET class types to/from XML-RPC struct and it is a fairly simple change. I've not done any...
447 charlescookuk Send Email May 25, 2005
7:33 am
To get a dump of the response from Xindice hook up an instance of RequestResponseLogger (in util.cs) to your proxy (see LoggingExample sample for illustration...
448 charlescookuk Send Email May 25, 2005
7:42 am
Hi Brad - in the short term I think you need to modify the library to handle this special case - see ParseDateTime in XmlRpcSerializer.cs - and return, say,...
449 Yolanda Soriano
soriano_yolanda Send Email
May 28, 2005
5:32 pm
Hi, I am trying to run a .NET CF application with an XIndice 1.0 database and I am struggling a bit with it :(. Could you help me, please? First of all, I have...
450 Yolanda Soriano
soriano_yolanda Send Email
May 29, 2005
10:45 am
Hi, Regarding my last email and the requests/responses posted in it I would like to clarify something: the 3 first requests/responses dumps belong to the first...
451 eryanv Send Email May 29, 2005
11:30 am
Has anybody had any success getting xml-rpc.net working with php's built-in xmlrpc functions? Everything seems to be going alright until the server response...
452 charlescookuk Send Email May 29, 2005
12:48 pm
Hi Erik - are there really two blank lines between the final header and the content of the response? If so, wouldn't this cause the exception - the content of...
453 eryanv Send Email May 30, 2005
2:56 pm
... Yup, that happened to be the problem. I found where the extra line was getting inserted and everything is working just fine now. Thanks, ~Erik...
454 mosenturm Send Email Jun 3, 2005
6:08 pm
Hi, I've tried the example from the FAQ with a PHP PEAR XML-RPC Client without success. Everytime I call the service from PHP I get the error (fault): ...
455 charlescookuk Send Email Jun 3, 2005
7:56 pm
Hi Andreas - sorry, Sean Rohead posted about a fix for this and I didn't apply it. I've built a test version of the library containing the fix and its...
456 Andreas Kaiser
mosenturm Send Email
Jun 4, 2005
9:21 am
Hi Charles, ... Thanks a lot for your fast response! I've tried out your test version, ... HTTP/1.1 500 Im Server ist ein interner Fehler aufgetreten....
457 charlescookuk Send Email Jun 5, 2005
12:22 pm
Hi Andreas - I can reproduce the error message if I use the wrong URI in the client. For the sample in section 3.3 of the FAQ, if client and server are...
458 Andreas Kaiser
mosenturm Send Email
Jun 5, 2005
1:30 pm
Hi Charles, ... That's true: it was the wrong URI. Now with a Python XML-RPC Client everything is working fine. My PHP Client (PEAR:XML_RPC) isn't working but...
459 pocalujmniewdupe1
pocalujmniew... Send Email
Jun 6, 2005
6:37 am
hi Charles! I wanted to try your xml-rpc implementation and i used an example from faq : that's my proxy : namespace rpctest { ...
460 charlescookuk Send Email Jun 6, 2005
7:44 am
Please post your web.config file. - Charles...
461 pocalujmniewdupe1
pocalujmniew... Send Email
Jun 6, 2005
9:05 am
that's my file : <configuration&gt; <system.web> <httpHandlers>; <add verb="*" path="statename.rem" type="StateNameService, ClassLibrary2" /> </httpHandlers&gt; ...
462 charlescookuk Send Email Jun 6, 2005
10:50 am
Looks like the type you are specifying in the add element is wrong - you have implemented StateNameService in the rpctest namespace. - Charles...
463 pocalujmniewdupe1
pocalujmniew... Send Email
Jun 6, 2005
10:58 pm
Do you mean I should use fully qualified name? <add verb="*" path="statename.rem" type="rpctest.StateNameService, ClassLibrary2" /> anyway it doesn't work........
464 charlescookuk Send Email Jun 7, 2005
9:14 am
Hi Dereck - I built your service and configured with your config file (with the correction below). Works fine on my machine. The only way I can force the...
465 Yolanda Soriano
soriano_yolanda Send Email
Jun 7, 2005
3:54 pm
Hi, Is there any way of passing a hashtable as a parameter to a XML-RPC call? I am trying to make a XML-RPC call to an Xindice method which has a hashtable as...
466 xmlrpc@...
xmlrpcxolido Send Email
Jun 7, 2005
4:06 pm
... Try XmlRpcStruct class instead Hashtable....
467 Yolanda Soriano
soriano_yolanda Send Email
Jun 7, 2005
4:23 pm
Thanks a lot!! It works! Yolanda ... Try XmlRpcStruct class instead Hashtable. ... Yahoo! Groups Links To visit your group on the web, go to: ...
468 pocalujmniewdupe1
pocalujmniew... Send Email
Jun 7, 2005
6:10 pm
... file ... I ... type ... so, can you write how you test it? i mean, you bild client+proxy and run .exe? service is in .dll file? Maybe my IIS is crashed or...
Messages 439 - 468 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