I am tasked to create a web service call where the input looks like this:
<own:AuthenticateMember>
<own:request>
<own1:SecurityToken>9415CD31-0C7E-40AB-A45F-D3538B98D96D</own1:SecurityToken>
<own2:MembershipNumber>200103407801</own2:MembershipNumber>
</own:request>
</own:AuthenticateMember>
The actual values (SecurityToken and MembershipNumber) are PHP request variables.
As you see, it contains namespaces. How would I go about successfully creating this xml request via PHP Soap? Please help me.