Re: [PHP] PHP5 SOAP...

2009-06-16 Thread Tom Rogers
Hi, Wednesday, June 17, 2009, 1:21:47 AM, you wrote: RJ> I'm working on a project using SOAP and WS-Security in which I am failing RJ> miserably. RJ> Is there a way to inspect the actual XML, header, etc. that is actually RJ> being sent. I feel like I am constructing the call correctly, and I kno

RE: [PHP] PHP5 SOAP...

2009-06-16 Thread bruce
Behalf Of Russell Jones Sent: Tuesday, June 16, 2009 8:22 AM To: PHP General Subject: [PHP] PHP5 SOAP... I'm working on a project using SOAP and WS-Security in which I am failing miserably. Is there a way to inspect the actual XML, header, etc. that is actually being sent. I feel like I

[PHP] PHP5 SOAP...

2009-06-16 Thread Russell Jones
I'm working on a project using SOAP and WS-Security in which I am failing miserably. Is there a way to inspect the actual XML, header, etc. that is actually being sent. I feel like I am constructing the call correctly, and I know exactly what needs to be sent, but I dont know how to see exactly wh

[PHP] PHP5 - SOAP extension and WSDL generation

2009-02-22 Thread Yannick Warnier
Hi there, I'm trying to find out how to generate a WSDL with the functions I am providing as web services, and I'm finding various posts on the net that say it's not possible with the SOAP extension built in PHP5. At the same time, I find that http://www.php.net/manual/en/soap.constants.php list

[PHP] PHP5, Soap, WSDL, and unbounded xsd:choice types.

2006-01-09 Thread Simon Detheridge
I have a problem with PHP talking to my non-php webservice. The problem arises because I have a list of elements in an umbounded xsd:choice type, which are supposed to be parsed in the correct order. Unfortunately, PHP groups them together per-type instead of in the order they appear in the do

Re: [PHP] Php5 SOAP WSDL parsing

2006-01-09 Thread David Grant
Simon, It would appear you've not included the full message. Please look at the source of the message in your web browser. The space between unexpected and "in complexType" probably contains an XML tag. David Simon Detheridge wrote: > I'm trying to get PHP5 to talk to a web service that I am d

Re: [PHP] Php5 SOAP WSDL parsing

2006-01-09 Thread Jochem Maas
another guess: does the php soap extension maybe think that 'complexType' (all of them) needs a name attrib? (try giving them bogus names?) Simon Detheridge wrote: Thanks for your response. Quoting Jochem Maas <[EMAIL PROTECTED]>: Simon Detheridge wrote: I'm trying to get PHP5 to talk to a

Re: [PHP] Php5 SOAP WSDL parsing

2006-01-09 Thread Simon Detheridge
Thanks for your response. Quoting Jochem Maas <[EMAIL PROTECTED]>: Simon Detheridge wrote: I'm trying to get PHP5 to talk to a web service that I am developing. is php choking on the comment?: "" I've removed the comments from the file. No luck. or maybe it's choking on the 'included'

Re: [PHP] Php5 SOAP WSDL parsing

2006-01-09 Thread Jochem Maas
Simon Detheridge wrote: I'm trying to get PHP5 to talk to a web service that I am developing. I have created a wsdl for the service (http://www.symgate.com/symgate/symgate.wsdl) and am trying to get PHP to parse it. (The wsdl validates in a number of tools I've pointed at it, including mindre

[PHP] Php5 SOAP WSDL parsing

2006-01-09 Thread Simon Detheridge
I'm trying to get PHP5 to talk to a web service that I am developing. I have created a wsdl for the service (http://www.symgate.com/symgate/symgate.wsdl) and am trying to get PHP to parse it. (The wsdl validates in a number of tools I've pointed at it, including mindreef soapscope and the wsdl

[PHP] PHP5 Soap extension and generate wsdl

2005-12-06 Thread Dan Rossi
Hi there, im just wondering if its possible to setup your web service and let it generate a wsdl file for clients when u request the script with a wsdl flag like with nusoap ? Im rather not having to code an entire wsdl document for the web service if possible :\ -- PHP General Mailing List (

Re: [PHP] PHP5 Soap + .NET Webservice

2005-10-11 Thread Chris Hemmings
Thanks Richard, I think I might start on a slightly simpler service, it seems MS has done its best to complicate everything. I have managed to get something working, but, god knows why the their example web service is sending back schema data as well as the result data, quite over the top.

Re: [PHP] PHP5 Soap + .NET Webservice

2005-10-10 Thread Richard Lynch
On Mon, October 10, 2005 4:40 am, Chris Hemmings wrote: > Can anyone explain how this works, and, how to fix it. I'm can't find > any documentation on the problem I am having. colon-separated name-spaces in XML are a relatively new development. Your XML parser probably is not up to speed on them

[PHP] PHP5 Soap + .NET Webservice

2005-10-10 Thread Chris Hemmings
Hello, Can anyone explain how this works, and, how to fix it. I'm can't find any documentation on the problem I am having. I'm using a .NET webservice and a PHP SOAP call using version 5.0.4. The returned result does not seem correct because of all the stuff at the top, the 'xs' stuff. Thi