vote up 1 vote down star

Is this valid SOAP / XML?

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
    	<CreateRoute xmlns="urn:Routs">
    		<aRoute>
    			<name>ToTheTop</name>
    			<grade xsi:type="FrencGrade">
    				<gradeNumber>7</gradeNumber>
    				<gradeModifier>a</gradeModifier>
    			</grade>
    		</aRoute>
    	</CreateRoute>
    </soap:Body>
</soap:Envelope>

And if it is: in what namespace does FrenchGrade belong? Is it in the urn:Routs namespace?

flag

1 Answer

vote up 1 vote down

Yes that's correct. Problem?

link|flag
No problem, I just have to handle it... – Kim Sep 26 '08 at 13:41

Your Answer

Get an OpenID
or

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