I was trying to build a binding xml for my soap msg. The soap message should
be like this.

<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance";>
<soapenv:Header>
<wsse:Security soapenv:mustUnderstand="1" xmlns:wsse="http://docs.oasisopen.
org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken xmlns:wsse="
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wsswssecurity-
secext-1.0.xsd">
<wsse:Username xmlns:wsse="
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wsswssecurity-
secext-1.0.xsd">StarWebService</wsse:Username>
<wsse:Password xmlns:wsse="
http://docs.oasis-open.org/wss/2004/01/oasis-200401-wsswssecurity-
secext-1.0.xsd">[EMAIL PROTECTED]</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
<payloadManifest xmlns="
http://www.starstandards.org/webservices/2005/10/transport";>
<manifest ContentID="Content0" namespaceURI="
http://www.starstandards.org/STAR";
element="rey_VIVehicleInventory"
xmlns="http://www.starstandards.org/webservices/2005/10/transport"/<http://www.starstandards.org/webservices/2005/10/transport%22/>
>
</payloadManifest>
</soapenv:Header>
<soapenv:Body>
<PutMessage xmlns="
http://www.starstandards.org/webservices/2005/10/transport";>
<payload>
<content id="Content0">
</payload>
</PutMessage>
</soapenv:Body>
</soapenv:Envelope>

The confusion is how to assign the different namespace for the tags.
like if i put default="elements" i have name space assigned to all the
elements under the mapping class.
but you see th o/p msg,
the tag payloadManifest does not have any namespace though its under the
soap:header, how can i build the binding xml, ??

Thanks
Karthik
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
jibx-users mailing list
jibx-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to