Page 1 of 1

SOAP-PEAR problem please help!

Posted: Mon Dec 19, 2011 6:10 pm
by victorsk
Hi everybody,

I am working with SOAP-PEAR and run on a nasty problem I don't know answer to. First I explain what I know how to do. I am trying to construct a soap request and I know how to do this if XML has this structure:

Case 1

Code: Select all

<parent>
    <child1>string</child1>
    <child2>string</child2>
    <child3>string</child3>
</parent>
In this case, I construct an Array("root" => new Soap_Value("child1", "string", "value"))....

Now my problem is that I don't know how to create an array() or some other data if XML structure is like this:

Case 2

Code: Select all

<parent child1="value1" child2="value2" child3="value3" />
Could somebody please tell me how I can construct a SOAP request with SOAP-PEAR for that structure in Case 2? I just can't find a way to formulate it using arrays or some other data type :-\

Your help will greatly be appreciated.

Thank you,
Victor.

[SOLVED] Re: SOAP-PEAR problem please help!

Posted: Mon Dec 19, 2011 9:39 pm
by victorsk
Did some research and it should be XML_Serializer()

Re: SOAP-PEAR problem please help!

Posted: Tue Dec 20, 2011 10:11 am
by Amanda1998
I see that.. good that you have it... :drunk:
http://www.phpfreaks.com/forums/index.p ... c=350260.0