vote up 1 vote down star
1

hi all,

I can not seem to find out how to set an attribute to a SOAP request without using the XSD_ANYXML encoding.

The request parameter should look as follows

<request
    xmlns:ns="/some/ns">
    ...
        <ns:parameter attr="some attribute">
            value
        </ns:parameter>
    ...
</request>

Of course the following code works, but it's rather ugly (ugly, because it uses string concatenation where it should use the SOAP_Client API and because it does not use the general namespace)

$param = new SoapVar(
    '<ns_xxx:parameter xmlns:ns_xxx="/some/ns" attr="some attribute">
        value
     </ns_xxx:parameter>',
    XSD_ANYXML
);

Is there a better way to create a SOAP request parameter with a namespace and an attribute?

I am looking for s.th. like the following (this is just some pseudo code using the SoapVar API):

$param = new SoapVar(
    array(
        '_' => 'value',
        'attr' => 'some attribute'
    ), 
    SOME_ENCODING,
    null,
    null,
    null,
    '/some/ns'
);
flag

71% accept rate
I'm not as well-versed at SOAP as I want to be, but does it support requests with attributes? (I know the WSDL has attributes, but how does it handle attributes in the XML sent to it?) Are you creating the service or is already set up? If it's your service, I would drop the attribute part and move it to it's own element within the parameter. Maybe as a no-value element, like <someattribute /> – Anthony Aug 25 at 10:39
@Anthony: i unfortunately do not control the SOAP server and have no influence over the service definition ;( else, of course, i could just make the attribute an element. – Pierre Spring Aug 25 at 18:30

1 Answer

vote up -1 vote down

SOAP does not support attributes, may be you should use REST instead!

EDIT: Please check the body style w3c:"4.3 SOAP Body" and remember that you need to encode your message with "soap-envelope" namespace and describe your XML types thats why, you can't use attributes to describe your message data.

But if you ask me, it can be made possible! You can use a custom SoapClient parser or something like that and convert your message as you like it. A example of that may be RSS over SOAP http://www.ibm.com/developerworks/webservices/library/ws-soaprdf. But, the problem would be that you would miss the descriptive information about your message data/types and other clients could not easy understand your messages!

My best practice for you would be to use elements instead of attributes, i know you need to fix your XML schema but thats the way it goes or switch to a other technology.

link|flag
i understand your liking of REST over SOAP. yet this answer really does not help at all. it does not help to tell people, not to use a technology, when they try to solve a problem in that particular technology. plus, what you write is simlpy wrong: SOAP does support attributes. c.f. w3.org/TR/2000/… – Pierre Spring Aug 28 at 14:53
No i prefer SOAP over REST. I'm developing with SOAP and PHP webservices for a couple of years now. I've modified my answer a bit, i hope this helps. – RedAssBaboon Aug 28 at 18:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.