Search the web
Sign In
New User? Sign Up
xml-rpc · XML-RPC Discussion
? 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 6529 - 6558 of 6839   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6529
Hi, 1) My program was crashing because of the * in xmlrpc_parse_value(&HA_env,HA_result,"{s:i,*}","ErrorCode",&HA_ret); WHY THIS HAPPENED? 2) My server is...
nishant kumar
coolnishant83
Offline Send Email
Aug 3, 2006
3:20 pm
6530
... See documentation of xmlrpc_parse_value() in the manual: <http://xmlrpc-c.sourceforge.net/doc/libxmlrpc.html>. (It refers you to the...
bryanh@...
giraffedata
Offline Send Email
Aug 3, 2006
4:31 pm
6531
after keepalive no of connections on a single persistent socket are reached after that the server is respawned or in the same server process the processing...
coolnishant83
Offline Send Email
Aug 8, 2006
5:33 pm
6532
//serv.c //--------------------------------- int HA_SERVER; xmlrpc_value *method_1(){} xmlrpc_value *method_2(){} int main(void) { /*only place, in whole...
nishant kumar
coolnishant83
Offline Send Email
Aug 9, 2006
10:41 am
6533
Hi, We are using xmlrpc-c-0.9.9 libraries and it has been observerd that if we keep posting a request from a java/C-client to a xmlrpc-abyss server, it crashes...
coolnishant83
Offline Send Email
Aug 9, 2006
2:46 pm
6534
There are a number of places, all below Xmlrpc-c code, that can wait for a long time before giving up. I've never seen one wait 20 minutes, but I also don't...
bryanh@...
giraffedata
Offline Send Email
Aug 12, 2006
7:41 pm
6535
Hi I am new to XML-RPC. I am trying to use a third party Javascript, running under IE7, to access an application running on an Apache server, via XML-RPC. The...
davida442005
Offline Send Email
Aug 17, 2006
4:17 pm
6536
Hi I am new to XML-RPC. I wish to access an application running on an Apache server from a Javascript running under Internet Explorer (IE), using XML-RPC. Both...
davida442005
Offline Send Email
Aug 17, 2006
4:30 pm
6537
Hi everyone, I've written a few XML-RPC APIs and I've always used structs to pass named parameters, plus in the APIs I've used, this has also been the case, so...
Dave
daverisimili...
Offline Send Email
Aug 21, 2006
5:51 pm
6538
Friends We will be implementing either multithreading or Forking with XMLRPC C Server. From the sample code files it looks like XMLRPC C uses multithreading ...
amit_basnak25
Offline Send Email
Aug 22, 2006
11:47 am
6539
... I assume you're talking about the XML-RPC For C/C++, aka Xmlrpc-c, package. While the package contains facilities to create just about any kind of server...
bryanh@...
giraffedata
Offline Send Email
Aug 23, 2006
10:06 am
6540
Hi I have posted the similar problem earlier also....and i havent been able to find the solution or rather the exact problem. I have two nodes master and...
coolnishant83
Offline Send Email
Aug 24, 2006
12:30 am
6541
I have also noted one thing that "kill -9 'pid-of-handler-process'" , where handler process is the one which is hanging in select system call after slave...
coolnishant83
Offline Send Email
Aug 24, 2006
12:36 am
6542
Bryan Thanks for your inputs. I will go through the sample files provided in the package of xmlrpc -c . I have one more question. How do I pass a C structure...
amit_basnak25
Offline Send Email
Aug 24, 2006
4:03 pm
6543
... You can do it the same way that the example programs pass a C integer, except using "{...}" in the format string instead of "i". See ...
bryanh@...
giraffedata
Offline Send Email
Aug 24, 2006
6:22 pm
6544
Bryan thanks I have my client.c written as below where im passing an array of string #include <stdlib.h> #include <stdio.h> #include <xmlrpc-c/base.h> #include...
amit_basnak25
Offline Send Email
Aug 25, 2006
12:19 pm
6545
Hi, I am new to XMLRPC. I have problem with sending request to server. when I send the xml format request to server I got "Invalid return payload: enable...
sb_kuttibtech
Offline Send Email
Aug 30, 2006
5:34 am
6546
... that XML-RPC implementation are you using? what are you sending to the server? John Wilson The Wilson Partnership web http://www.wilson.co.uk blog...
John Wilson
tug123uk
Offline Send Email
Aug 30, 2006
6:08 am
6547
... a Google search on the error message you posted indicates that it's the PEAR XML-RPC implementation. You would probably be better asking on the...
John Wilson
tug123uk
Offline Send Email
Aug 30, 2006
6:26 am
6548
How to implement the xmlrpc? I send my username,password , keywords to server. John Wilson <tug@...> wrote: ... that XML-RPC implementation are you...
kutty S.B.
sb_kuttibtech
Offline Send Email
Aug 30, 2006
11:32 am
6549
I've been working with xml-rpc and quite like it so far. The only problem I have now is that we have several places where we need to send 64 bit ints back and...
Mark Harrison
marhar62
Offline Send Email
Aug 30, 2006
5:00 pm
6550
... What would you hope to gain by adding it to the spec? Ensure that you can send any client or server a 64 bit integer and it will be able to handle it? If...
bryanh@...
giraffedata
Offline Send Email
Aug 30, 2006
6:32 pm
6551
Given the error message you are receiving, you are either using the PEAR::RPC library or the php-xmlrpc library (the two are very similar...) To "enable...
gaetanogiunta2000
gaetanogiunt...
Offline Send Email
Sep 1, 2006
7:46 am
6552
... NOPE. Sorry, all you can hope for is an 'unofficial' extension and support by a limited number of toolkits. Exactly what has happened for other extensions,...
gaetanogiunta2000
gaetanogiunt...
Offline Send Email
Sep 1, 2006
7:51 am
6553
... it's extremely unlikely there will ever be a change to the XML-RPC spec. You can always pass the int as a String if you are prepared to do a little work at...
John Wilson
tug123uk
Offline Send Email
Sep 1, 2006
8:43 am
6554
Hi, I am new to xml-rpc. I have written a server in C#.net and I am using that in a webpage. Both rpc server and the aspx are on the same webserver. When I...
eg_breakup
Offline Send Email
Sep 6, 2006
6:31 am
6555
Hi, Can we return a DataSet from a xml-rpc server method. Also, how to write a client to handle the returned DataSet.?...
eg_breakup
Offline Send Email
Sep 6, 2006
8:16 pm
6556
Hi, we are facing issue while integrating XML RPC server running on HP UNIX 11i with HP DCE client on same machine. The XML RPC server contains libpthread.h,...
thehacker_chinna
thehacker_ch...
Offline Send Email
Sep 7, 2006
6:12 am
6557
I am trying to send a xml file that was created in a Hand Held Device with Pocket Pc 2003 to a Server. Is it posible to do this with xml- rpc.net? the device...
Carlos Coronel
cecda7008
Offline Send Email
Sep 7, 2006
3:31 pm
6558
If I understood what you asked... http://www.pocketsoap.com/pocketXMLRPC/...
Adrian Nicolaiev
adrian_nicol...
Offline Send Email
Sep 7, 2006
4:07 pm
Messages 6529 - 6558 of 6839   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