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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 271 - 301 of 1417   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
271 ahmad shajee
ahmadshajee Send Email
Jun 7, 2004
11:08 am
Dear Charles Hi! Thanks for the reply. have downloaded the tcptrace and proxytrace from pocketsoap.com However my problem remains as is. The server response...
272 charlescookuk Send Email Jun 7, 2004
12:19 pm
Hi Shajee - if you use one of the trace programs you will be able to see the response that is being returned by the server. - Charles ... tcptrace and...
273 okimeu Send Email Jun 11, 2004
11:37 am
Hi. I have this: [XmlRpcUrl("http://xxx.xxx.xxx.xxx/something")] interface ISomething { [XmlRpcMethod("Some.thing")] XmlRpcStruct foo(XmlRpcStruct params); } ...
274 charlescookuk Send Email Jun 11, 2004
11:39 am
http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#2.4...
275 burtwalsh Send Email Jun 15, 2004
5:23 am
I am getting the following error JavaClient: XML-RPC Fault #0: org.apache.xmlrpc.XmlRpcException: Index was outsi de the bounds of the array. when sending a...
276 ahmad shajee
ahmadshajee Send Email
Jun 18, 2004
12:11 am
Dear Charles Hello! Sorry for the long mail I've been able to invoke the login method of phpgw using xml rpc through my asp .net client. It gives back a...
277 fawxglove Send Email Jul 10, 2004
6:29 pm
Hi, First off - what an excellent library! Thanks for developing it. I'm using the library in an open source project of mine. I've had to modify your source...
278 stately_wy Send Email Jul 10, 2004
6:29 pm
Hi, I'm currently using XML-RPC.net with my asp.net application. my XML-RPC service is built by python. when I calling the service, I got a exception error...
279 kuldeep963 Send Email Jul 10, 2004
6:29 pm
Hi, I am using XmlRpcClientProtocol object in VB.NET form to invoke a remote function call on an ASP page. The syntax used for invoking the remote funtion is...
280 alfaboy16 Send Email Jul 10, 2004
6:29 pm
hi i think this error i get , is diffirent with nirmal errors . i am not new in programming , but i am new in C# and xml-rpc . i want to start with a easy and...
281 charlescookuk Send Email Jul 13, 2004
5:51 am
Hi Erik - sorry about the delay in responding, just back from vacation. Your understanding of the licensing position is correct. - Charles ... to ... MIT ... ...
282 charlescookuk Send Email Jul 13, 2004
6:07 am
Hi Ali - define a function like this [XmlRpcMethod("math.Add")] public int Add(int a, int b) { return (int)xmlRpcClient.Invoke(this, "Add", a, b); } and then...
283 charlescookuk Send Email Jul 13, 2004
6:08 am
Hi Kuldeep - if you catch the XmlRpcFault exception you will see it contains the error code and error description returned from the server in the XML-RPC fault...
284 charlescookuk Send Email Jul 13, 2004
6:24 am
It looks like the server does not like the request for some reason. Can you look at the request/response using tcptrace or proxytrace and post here if it is...
285 kuldeep963 Send Email Jul 14, 2004
8:10 am
Thanks a lot for the response Charles. I was able to fix the problem at my end. I was using the incorrect namespace name for the function call. Thanks, Kuldeep...
286 Victor Hadianto
victornuix Send Email
Jul 14, 2004
8:10 am
In the struct return value, is it possible to specify that the member value could be either int or string? For example the post struct that I use for...
287 charlescookuk Send Email Jul 14, 2004
8:24 am
Hi Victor - the only way to handle this is to specify the member as type Object and then check the actual type at runtime. - Charles...
288 Victor Hadianto
victornuix Send Email
Jul 14, 2004
8:47 am
Ah .. Of course why didn't I think about it before :) Thanks, Victor ________________________________ From: charlescookuk...
289 Burt Walsh
burtwalsh Send Email
Jul 15, 2004
6:13 am
Hi, Building a Javaclient which accesses a xmlrpc.net ASP.NET web service. I get this 403 error when I have more than 10 threads concurrently accessing the...
290 Victor Hadianto
victornuix Send Email
Jul 23, 2004
5:03 am
Hi, We've just discovered this problem, XML-RPC.Net crash if the URL is set as IP address without the http:// prefix. For example 127.0.0.1 will crash, but...
291 kai_kretschmann Send Email Jul 31, 2004
7:48 pm
I could at least insert the .net assembly intro delphi8 and even could drop it as a no visual component into a new sample application. But how can I invoke a...
292 charlescookuk Send Email Sep 2, 2004
6:10 pm
Version 0.9.0 is now available at www.xml-rpc.net. XmlRpcServiceAttribute has a new AutoDocumentation property which allows automatic documentation to be...
293 charlescookuk Send Email Sep 15, 2004
7:04 am
I spent a couple of hours last night porting XML-RPC.NET to the .NET Compact Framework. After I had stripped out all the server-side code and the...
294 kgilpin Send Email Sep 28, 2004
6:06 pm
I have an Internet Explorer toolbar for which I want to use XML-RPC to communicate back to the server that has served the page which is showing as the main...
296 d v
d_vmn Send Email
Oct 6, 2004
3:33 pm
How do I read attributes of an XML-RPC file and create a response document when the incoming request looks like this? Is this standard XML-RPC or not? I am ...
297 vivek phadke
vicky_phadke Send Email
Oct 23, 2004
9:46 am
hi I am new to this group I need urgent help. I am trying to make an application using c#.Net and java I have written following code to access the method in ...
298 charlescookuk Send Email Oct 23, 2004
9:53 am
Hi Vivek - the section in the FAQ on implementing clients should help you: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html - Charles ... params1 = new...
299 Vivek Phadke
vicky_phadke Send Email
Nov 18, 2004
6:27 am
I am trying to accessing a service using xmlrpc in c#.net The request structure expects two variables %limit and %offset. but c# doesnt allow me to declare...
300 charlescookuk Send Email Nov 18, 2004
10:47 am
This may help: http://www.xml-rpc.net/faq/xmlrpcnetfaq.html#1.11 - Charles ... variables...
301 Vivek Phadke
vicky_phadke Send Email
Nov 19, 2004
5:03 am
thanx charles. it worked thank you for your help...
Messages 271 - 301 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