[PHP] XML-RPC set XML encoding?

2006-05-02 Thread D. Dante Lorenso
XML-RPC gurus, Does anyhow know how to set the character encoding for XML-RPC? I am using the PHP built-in XML-RPC server to handle XML-RPC calls. ?php ... // create the XML-RPC server $this-SERVER = xmlrpc_server_create(); ... // fetch the raw input stream which contains our XML data

Re: [PHP] XML-RPC set XML encoding?

2006-05-02 Thread D. Dante Lorenso
D. Dante Lorenso wrote: Does anyhow know how to set the character encoding for XML-RPC? Ok, after digging through the sources, I figured this one out. There's a 4th parameter to the method: xmlrpc_server_call_method And, the options are all explained on this page:

Re: [PHP] XML-RPC or SOAP

2006-03-31 Thread Benjamin Adams
I want to take a mysql database that I have and turn it into a wsdl page where I can make a client program connect to. I have read how to do it in Tomcat. but looking for help in using PHP. On Mar 30, 2006, at 9:45 PM, Anthony Ettinger wrote: what about WSDL? On 3/30/06, Russell Jones

[PHP] XML-RPC or SOAP

2006-03-30 Thread Merlin
Hello there, I am at the beginning of creating a web service. As I am not very familar with both SOAP and XML-RPC it would not make much difference in which one I learn. Which one would you guys recommend for a web app that has to be transformed into a white lable solution. Thank you for

Re: [PHP] XML-RPC or SOAP

2006-03-30 Thread Philip Hallstrom
I am at the beginning of creating a web service. As I am not very familar with both SOAP and XML-RPC it would not make much difference in which one I learn. Which one would you guys recommend for a web app that has to be transformed into a white lable solution. I just did one using SOAP.

Re: [PHP] XML-RPC or SOAP

2006-03-30 Thread Russell Jones
I would go with XML-RPC. I currently use XML-RPC to run LinkSleeve - a link-spam detection tool. In my opinion, I have found XML-RPC to be easier to use and understand. If at any point in your product you will be dealing with customers / vendors who will be beginners with both XML-RPC and SOAP, I

Re: [PHP] XML-RPC or SOAP

2006-03-30 Thread Anthony Ettinger
what about WSDL? On 3/30/06, Russell Jones [EMAIL PROTECTED] wrote: I would go with XML-RPC. I currently use XML-RPC to run LinkSleeve - a link-spam detection tool. In my opinion, I have found XML-RPC to be easier to use and understand. If at any point in your product you will be dealing

[PHP] xml-rpc and xml-rpci

2006-02-12 Thread Alex Duggan
Hello, What is the future of the xml-rpc client and server functions in php 5.x? I see the old xml-rpc extension is still marked as expirimental and the newer xml-rpci extention in pecl has not been worked on in 12 months and doesn't have server functionality. I am in the process of porting a

[PHP] XML-RPC and comment spam...

2006-01-24 Thread Russell Jones
I am trying to set up a personal blog of mine with the new LinkSleeve.orgXML-RPC link spam service, but I dont know the firs thing about PHP and XML-RPC. I did read that there are some problems with security, though, with the popular PHP XML-RPC classes. Have these been fixed and which would you

[PHP] XML-RPC questions...

2006-01-24 Thread Russell Jones
I have read recently that there are some issues with XML-RPC and security in PHP classes. Have these been fixed? What would you recommend? I am looking to create a LinkSleeve filter for my blog and it requires XML-RPC. rjonesx

Re: [PHP] XML-RPC problem with long running times

2005-12-30 Thread Richard Lynch
If you can't get at the PHP internal time-out... First, file a bug report Feature Request and ask for it to be exposed. You won't be the only one who needs it. Second, for the short term, you may be stuck with rolling your own XMLRPC interface, or using one of the others out there as raw PHP

[PHP] XML-RPC problem with long running times

2005-12-29 Thread Andreas Schlicker
Hi all, I'm using Apache/1.3.33 (Unix), PHP/5.0.3, mod_ssl/2.8.22, OpenSSL/0.9.6a. I wrote a dummy script that is called by a Java program via XML-RPC, waits for some time and replies the start and end times. ?php set_time_limit(500); $xmlServer = xmlrpc_server_create(); function process()

Re: [PHP] XML-RPC problem with long running times

2005-12-29 Thread Andreas Schlicker
Of course, fflusch($log); should be fflush($log); I just found out that $xmlResponse really is empty. However, connection_status() returns 0, so I assume that the script is not interrupted by a timeout. Why does xmlrpc_server_call_method($xmlServer, $xmlRequest, NULL) return nothing if the

[PHP] xml-rpc and xml-rpci

2005-11-10 Thread Alex Duggan
Hello, What is the future of the xml-rpc client and server functions in php 5.x? I see the old xml-rpc extension is still marked as expirimental and the newer xml-rpci extention in pecl has not been worked on in 8 months and doesn't have server functionality. I am in the process of porting a

Re: [PHP] XML-RPC Error:-32300:transport error - could not open socket

2005-10-28 Thread Dan McCullough
It was the version of class-IXR.php, there was a small bug in that library and the fix had just come out, so it was until I went back and download some updates that it worked. On 10/22/05, Richard Lynch [EMAIL PROTECTED] wrote: On Sat, October 22, 2005 10:19 am, Dan McCullough wrote: I'm

[PHP] XML-RPC Error:-32300:transport error - could not open socket

2005-10-22 Thread Dan McCullough
I'm having any issue finding out why this is happening and how to fix it. Is it a permissions problem between php and the server or something else? Help -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML-RPC Error:-32300:transport error - could not open socket

2005-10-22 Thread Torgny Bjers
Dan McCullough wrote: I'm having any issue finding out why this is happening and how to fix it. Is it a permissions problem between php and the server or something else? Help Without looking up this specific error code thoroughly through Google or elsewhere, I would have to ask you to submit

Re: [PHP] XML-RPC Error:-32300:transport error - could not open socket

2005-10-22 Thread Dan McCullough
Tried Google and the guy who created the snippet they had no helpful information about the error. On 10/22/05, Torgny Bjers [EMAIL PROTECTED] wrote: Dan McCullough wrote: I'm having any issue finding out why this is happening and how to fix it. Is it a permissions problem between php and the

Re: [PHP] XML-RPC Error:-32300:transport error - could not open socket

2005-10-22 Thread Richard Lynch
On Sat, October 22, 2005 10:19 am, Dan McCullough wrote: I'm having any issue finding out why this is happening and how to fix it. Is it a permissions problem between php and the server or something else? Help Go to the command line/shell or even, gak, MS-DOS, and type: telnet XYZ 32000

[PHP] xml-rpc with php5

2005-03-01 Thread Alex Duggan
Hello, What is the best solution for setting up an xml-rpc client with php5? Are the built in functions still experimental, are the classes from useful inc better to use? I want to continue using xml-rpc instead of soap because of it's simplicity and less overhead. Alex -- PHP General

Re: [PHP] xml-rpc with php5

2005-03-01 Thread Matthew Fonda
On Tue, 2005-03-01 at 21:14, Alex Duggan wrote: Hello, What is the best solution for setting up an xml-rpc client with php5? Are the built in functions still experimental, are the classes from useful inc better to use? I want to continue using xml-rpc instead of soap because of it's

[PHP] XML-RPC problem with array

2005-02-01 Thread Bambero
Hello I have compiled my php with --with-xmlrpc option to use xmlrpc server. Everything works fine, but there is one problem. Array (indexed from 0): $array[0] $array[1] $array[2] is changed to xmlrpc 'array' type - thats ok. Array (with string indexes): $array['ad'] $array['sd'] $array['rd'] is

Re: [PHP] XML-RPC problem with array

2005-02-01 Thread Richard Lynch
Bambero wrote: Hello I have compiled my php with --with-xmlrpc option to use xmlrpc server. Everything works fine, but there is one problem. Array (indexed from 0): $array[0] $array[1] $array[2] is changed to xmlrpc 'array' type - thats ok. Array (with string indexes):

[PHP] xml-rpc compile problems - 4.3.2 - libexpat

2003-08-14 Thread Garth Gillespie
Trying to compile PHP 4.3.2 with xmlrpc. The xmlrpc manual page says no external libraries are needed yet configure complains with checking whether to enable XML support... yes checking external libexpat install dir... no checking for XMLRPC-EPI support... yes checking libexpat dir for

[PHP] XML-RPC problem

2003-06-10 Thread Evandro Sestrem
Hi, I'm using the XML-RPC implementation from Useful (http://phpxmlrpc.sourceforge.net) to do my client in PHP. When this client receives a response from my server and this response is a array of struct with more than 1 item, occurs a problem. When the response array of struct has just 1 item it

[PHP] XML-RPC, is this the best approach for something like this?

2002-12-01 Thread Jonathan Chum
Hi guys! I'm wrapping up a web hosting control panel written in PHP that fills up a queue with commands such as create web hosting account, or change password. A Perl based CRON job on each server will query the database trying to determine what tasks it needs to execute. The problem however is

Re: [PHP] XML-RPC, is this the best approach for something like this?

2002-12-01 Thread Matt Vos
- Original Message - From: Jonathan Chum [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, December 01, 2002 3:27 PM Subject: [PHP] XML-RPC, is this the best approach for something like this? Hi guys! I'm wrapping up a web hosting control panel written in PHP that fills up

Re: [PHP] XML-RPC, is this the best approach for something like this?

2002-12-01 Thread Ernest E Vogelsinger
At 21:27 01.12.2002, Jonathan Chum said: [snip] I'm wrapping up a web hosting control panel written in PHP that fills up a queue with commands such as create web hosting account, or change password. A Perl based CRON job on each server will query the

[PHP] XML-RPC

2002-10-12 Thread jacob
Has anyone on this list had any experience with XML-RPC and, more specifically, any experience using it with PHP? XML-RPC: http://xml-rpc.org w/ PHP: http://xmlrpc-c.sourceforge.net/xmlrpc-howto/xmlrpc-howto-php.html -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] xml-rpc for windows?

2002-04-07 Thread dietrich
does anyone know where i could find an XML-RPC-EPI dll? thx, dietrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] xml-rpc for windows?

2002-04-07 Thread Tyler Longren
] To: [EMAIL PROTECTED] Sent: Sunday, April 07, 2002 11:29 PM Subject: [PHP] xml-rpc for windows? does anyone know where i could find an XML-RPC-EPI dll? thx, dietrich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing

Re: [PHP] xml-rpc for windows?

2002-04-07 Thread dietrich
Windows. At least I've heard it was in php 4.1.0. Good luck, Tyler Longren Captain Jack Communications [EMAIL PROTECTED] www.captainjack.com - Original Message - From: dietrich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, April 07, 2002 11:29 PM Subject: [PHP] xml-rpc for