Hi Perry,

It's very surprising to hear that you're getting different results on 
these two systems. You're sure that you've got identical versions of the 
app (including the SOAP framework you're using) on both systems?

You might want to try updating to 1.1.6, since I think some of the 
changes involved namespace handling.

  - Dennis

Dennis M. Sosnoski
SOA and Web Services in Java
Training and Consulting
http://www.sosnoski.com - http://www.sosnoski.co.nz
Seattle, WA +1-425-939-0576 - Wellington, NZ +64-4-298-6117



[EMAIL PROTECTED] wrote:
> Hello all:
>
> We recently came across an issue where JiBX is dropping a namespace on 
> marshalling the request.
>
> In the one instance (on a laptop running WinXP), the marshaller creates this 
> request:
>
> <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/>
>    <soapenv:Body>
>       <MedispanSearch xmlns="http://www.acme.com/WebServices/DrugSearchWS";>
>          <medispanRequest>
>             <ndc>59148001013</ndc>
>             <maxRecordsThreshold>300</maxRecordsThreshold>
>          </medispanRequest>
>       </MedispanSearch>
>    </soapenv:Body>
> </soapenv:Envelope>
>
> In the next example (running on a Solaris box):
>
> <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/>
>    <soapenv:Body>
>       <MedispanSearch>
>          <medispanRequest>
>             <ndc>59148001013</ndc>
>             <maxRecordsThreshold>300</maxRecordsThreshold>
>          </medispanRequest>
>       </MedispanSearch>
>    </soapenv:Body>
> </soapenv:Envelope>
>
> Notice the dropped namespace on the MedispanSearch.  Both environments are 
> running JiBX 1.1.5 and a version of JDK 1.5
>
> Has anyone seen similar behavior?
>
> Perry Hoekstra
>
> -------------------------------------------------------------------------
> 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
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/jibx-users
>
>   

-------------------------------------------------------------------------
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
[email protected]
https://lists.sourceforge.net/lists/listinfo/jibx-users

Reply via email to