RE: [PHP] PHP, Soap, and WDSL

2010-09-06 Thread SBS Computers
est) { echo $test.PHP_EOL; } From: sbs_comput...@hotmail.com To: chris...@gmail.com; jang...@jangita.com CC: php-general@lists.php.net Subject: RE: [PHP] PHP, Soap, and WDSL Date: Fri, 3 Sep 2010 09:05:52 -0400 Thanks guys. Both methods worked. Gino > Date: Fri, 3 Sep 2010

RE: [PHP] PHP, Soap, and WDSL

2010-09-03 Thread SBS Computers
Thanks guys. Both methods worked. Gino > Date: Fri, 3 Sep 2010 08:31:06 -0400 > From: chris...@gmail.com > To: jang...@jangita.com > CC: php-general@lists.php.net > Subject: Re: [PHP] PHP, Soap, and WDSL > > Alternatively you can pass the var through htmlspeci

Re: [PHP] PHP, Soap, and WDSL

2010-09-03 Thread chris h
Alternatively you can pass the var through htmlspecialchars... echo htmlspecialchars( $response ); and for a really simple solution you can echo it inside a textarea... echo " $response "; Though you'll likely want to increase the size of the textarea! ;-) Chris. On Fri, Sep 3, 2010

Re: [PHP] PHP, Soap, and WDSL

2010-09-03 Thread Jangita
On 02/09/2010 10:51 p, SBS Computers wrote: It's as if the data is not getting to my php page? The view source shows the following data: http://schemas.xmlsoap.org/soap/envelope/";> . . .bunch of data . . Seems like the data is getting there OK. But a browser normally will not output normal

RE: [PHP] PHP, Soap, and WDSL

2010-09-02 Thread SBS Computers
Date: Thu, 2 Sep 2010 22:39:41 +0300 > From: an...@oire.org > To: sbs_comput...@hotmail.com > CC: php-general@lists.php.net > Subject: Re: [PHP] PHP, Soap, and WDSL > > Hello Gino, > > Just put at the end the following: > > echo $response; >

Re: [PHP] PHP, Soap, and WDSL

2010-09-02 Thread Andre Polykanine
- From: SBS Computers To: php-general@lists.php.net Date: Thursday, September 2, 2010, 10:16:26 PM Subject: [PHP] PHP, Soap, and WDSL Hi everyone, I am trying to write a simple php page using an sdk. The SDK api contains all wsdl files which do all the work. There's a soap.php which ha

[PHP] PHP, Soap, and WDSL

2010-09-02 Thread SBS Computers
Hi everyone, I am trying to write a simple php page using an sdk. The SDK api contains all wsdl files which do all the work. There's a soap.php which has all the functions and stores the output in $response. My php page includes soap.php and a function. The function is handled by soap.php a