Hi Martin, thanks for your reply.

What I'm saying is happening is that:

with version 1.3 wsdl2java downloads all of the xsd files referenced in the
original wsdl and puts those xsd files in the resources directory. e.g.
xsd13.xsd
It then replaces all references in the generated wsdl(s) such as
schemaLocation="http://docs.oasis-open.org/wsrf/r-2.xsd"; with
schemaLocation="xsd13.xsd"

If I run exactly the same command with 1.5.4 the xsd files do not get saved
to the resources directory and the schemaLocations remains remote e.g
schemaLocation="http://docs.oasis-open.org/wsrf/r-2.xsd";

I was wondering if there's an option on 1.5.4 to follow the same behaviour
as regards schemaLocation as I see with version 1.3 ?


On 9 May 2011 02:26, Martin Gainty <[email protected]> wrote:

>  so what you're saying is 1.5.4 wont recognise local schemas?
> did you try prefixing schemaLocation with file:/// so your import statement
> would look something like
> assuming xsd13.xsd is located in C:/temp
>
> <xsd:import schemaLocation="file:///c:/temp/xsd13.xsd" 
> namespace="http://docs.oasis-open.org/wsrf/r-2"/>
>
> ?
> Martin
> ______________________________________________
> Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité
>
> Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene
> Empfaenger sein, so bitten wir hoeflich um eine Mitteilung. Jede unbefugte
> Weiterleitung oder Fertigung einer Kopie ist unzulaessig. Diese Nachricht
> dient lediglich dem Austausch von Informationen und entfaltet keine
> rechtliche Bindungswirkung. Aufgrund der leichten Manipulierbarkeit von
> E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen.
>
> Ce message est confidentiel et peut être privilégié. Si vous n'êtes pas le 
> destinataire prévu, nous te demandons avec bonté que pour satisfaire informez 
> l'expéditeur. N'importe quelle diffusion non autorisée ou la copie de ceci 
> est interdite. Ce message sert à l'information seulement et n'aura pas 
> n'importe quel effet légalement obligatoire. Étant donné que les email 
> peuvent facilement être sujets à la manipulation, nous ne pouvons accepter 
> aucune responsabilité pour le contenu fourni.
>
>
>
>
>
>
> ------------------------------
> Date: Sun, 8 May 2011 12:57:18 +0100
> Subject: Difference in schemaLocation for wsdl2java in 1.3 and 1.5.4
> From: [email protected]
> To: [email protected]
>
>
> Hello,
>
> Apologies if this is a newbie question:
>
> When I run wsdl2java using the 1.5.4 build I get wsdl files and
> services.xml generated in the resources directory. All schema locations
> within the wsdl files are on the net:
>
> for example:
> <xsd:import namespace="http://docs.oasis-open.org/wsrf/r-2";
> schemaLocation="http://docs.oasis-open.org/wsrf/r-2.xsd"/>
>
> When I run wsdl2java using 1.3 I get wsdl files, services.xml and the
> appropriate number of XML schema files in the resource directory. All schema
> locations within the wsdl files are local:
>
> for example:
> <xsd:import namespace="http://docs.oasis-open.org/wsrf/r-2";
> schemaLocation="xsd13.xsd"/>
>
> I can get around this by running wsdl2java twice and using the resources
> from the 1.3 run and the generated source from the 1.5.4 run but would like
> to be able to do this in one step.
>
> The generated sources from the 1.3 run have an error or two in the code so
> I don't want to just use 1.3.
>
> Does anybody know how to solve this problem?
>
> thanks,
>
> --
> Barry.
>



-- 
Barry.

Reply via email to