victorsk Posted December 19, 2011 Share Posted December 19, 2011 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 <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 <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. Quote Link to comment https://forums.phpfreaks.com/topic/253513-soap-pear-problem-please-help/ Share on other sites More sharing options...
victorsk Posted December 20, 2011 Author Share Posted December 20, 2011 OK, the answer is XML_Serializer() Quote Link to comment https://forums.phpfreaks.com/topic/253513-soap-pear-problem-please-help/#findComment-1299593 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.