Web Service Client encoding style error

Hi all,
I have a created a java static stub client (created with wscompile from the wsdp). If I run the client I receive the following error
"unexpected encoding style: expected=http://schemas.xmlsoap.org/soap/encoding/..."
I am using a delphi web service server, the encoding style is set to "http://schemas.xmlsoap.org/soap/encoding/"
My server simply echos a string with the method name "echoString"
Where do I go from here?
Does the xmlns tag in the "config-wsdl.xml" have anything to do with it?
Complete error :
java.rmi.RemoteException: Runtime exception; nested exception is:
unexpected encoding style: expected=http://schemas.xmlsoap.org/soap/encoding/, actual=
at com.sun.xml.rpc.client.StreamingSender._handleRuntimeExceptionInSend(StreamingSender.java:248)
at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:230)
at staticstub.IMyEmailWebService_Stub.echoString(IMyEmailWebService_Stub.java:68)
at DelphiClass.main(DelphiClass.java:25)
Caused by: unexpected encoding style: expected=http://schemas.xmlsoap.org/soap/encoding/, actual=
at com.sun.xml.rpc.encoding.SOAPDeserializationContext.verifyEncodingStyle(SOAPDeserializationContext.java:159)
at com.sun.xml.rpc.encoding.ObjectSerializerBase.deserialize(ObjectSerializerBase.java:150)
at com.sun.xml.rpc.encoding.ReferenceableSerializerImpl.deserialize(ReferenceableSerializerImpl.java:134)
at staticstub.IMyEmailWebService_Stub._deserialize_echoString(IMyEmailWebService_Stub.java:173)
at staticstub.IMyEmailWebService_Stub._readFirstBodyElement(IMyEmailWebService_Stub.java:157)
at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:158)
Thank you in advance
Garth

Looks like the server is not using the correct encoding. I suggest using a packet sniffer so you can actually see the SOAP message to verify that. Apache Axis has a tcpmon utility that works very nicely.

Similar Messages

  • Web service - Client Proxy - SOAP error

    Hi All,
    I created a custom web service/port and Client proxy.
    While I test the Client proxy with Logical port via SE80, I am getting error message related to SOAP.
    Error text:
    SOAP:14 Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/wsdl/
    Error when processing Web service call
    Error when calling SOAP Runtime functions: Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/wsdl/
    Am I missing any configuration?
    THanks,
    Chirag

    Hi,
    I got the same error with using the configuration tool LPCONFIG after implementing -> with SOAMANAGER everything worked allright directly just create a port with that tool.
    Maybe tha will help you also - for your problem.
    Regards,
    Jeroen Cosijnse

  • Web Service - Client Proxy generation error

    Hi All,
    I tried creating a client proxy using an URL provided to me and followed the steps using the wizard. I end up in getting the following error messages. Could anyone throw some light on resolving this? I do not have any idea about what WSDL is. Any help is highly appreciated. Not able to attach the WSDL code here.
    Below is the error message upon client proxy creation:
    Proxy-Generierung: Fehler aufgetreten
    Exception occurred in library handler
    Not implemented
    Thanks
    Srini
    Edited by: Srinivasan Karunakaran on Oct 22, 2010 11:11 PM

    Resolved through SAP Help. Refer SAP note# 0001403271.

  • Problem using WSDL from SAP in IBM's RAD for generating web service client

    When importing a WSDL from the ABAP stack on a SAP 6.40 system into IBM's RAD tool for generating a web service client there are errors with the soap fault classes that get generated.  The WSDL declares the types for the faults with WebServiceName.RfcException and these have elements of name, text, and message.  When the tools see this in the WSDL they generate classes that extend the Java exeception class and this causes an error because the "message" name conflicts with the standard java exception message.  Has anyone else ran into this problem?  It seems like a basic problem many java tools for generating web service client proxies would have because the soap faults get turned into java exceptions.  This name conflict of the java exception with the WSDL fault definition means that code always needs to be adjusted and cannot simply use the classes that are generated from the WSDL.  Anyone run across this or a similar problem in the java environment using the SAP WSDL?
    Aaron

    Hi,
    Hello again .
    Have you tried your service using soapui ?
    You can use your WSDL as input .
    In order to eliminate eclipse problem try this service:(I just did)
    http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?WSDL
    Regards.
    package main;
    import java.io.FileInputStream;
    import java.rmi.RemoteException;
    import java.util.Properties;
    import org.oorsprong.www.websamples_countryinfo.CountryInfoServiceSoapType;
    import org.oorsprong.www.websamples_countryinfo.CountryInfoServiceSoapTypeProxy;
    import org.oorsprong.www.websamples_countryinfo.TCountryCodeAndName;
    public class Main {
    public static void main(String[] args) {
      try {
       final Properties properties = new Properties();
       properties.load(new FileInputStream("properties.ini"));
       System.getProperties().putAll(properties);
      } catch (final Exception exception) {
       exception.printStackTrace();
      new Main();
    public Main() {
      try {
       final CountryInfoServiceSoapType infoServiceSoapType = new CountryInfoServiceSoapTypeProxy();
       final TCountryCodeAndName[] tCountryCodeAndNames = infoServiceSoapType.listOfCountryNamesByName();
       for (final TCountryCodeAndName tCountryCodeAndName : tCountryCodeAndNames) {
        System.out.println(tCountryCodeAndName.getSName());
      } catch (final RemoteException exception) {
       exception.printStackTrace();

  • RPC style web service client

    hi,
    i am new to web service technology. i want to create dynamic web service client for a "rpc" style web service in Netbeans.
    please, can anybody guide me for this?
    thanks in advance.

    Hi,
    To avoid creating new topic I will put my question here.
    I try to create new web service (rpc-style) client in netbeans. I have rpc plugin installed. In ejb module node I right click > new > web service client >
    I fill all filds, chose rpc-style and > after clicking finish - error occur:java.lang.LinkageError: com/sun/xml/rpc/processor/generator/Names
         at org.netbeans.modules.websvc.registry.util.Util.getParameterType(Util.java:856)
         at org.netbeans.modules.websvc.registry.jaxrpc.WrapperClientWriter.printOperations(WrapperClientWriter.java:275)
         at org.netbeans.modules.websvc.registry.jaxrpc.WrapperClientWriter.writeClass(WrapperClientWriter.java:219)
         at org.netbeans.modules.websvc.registry.jaxrpc.Wsdl2Java.createWrapperClients(Wsdl2Java.java:305)
         at org.netbeans.modules.websvc.registry.jaxrpc.Wsdl2Java.execute(Wsdl2Java.java:229)
         at org.netbeans.modules.websvc.registry.util.Util.createWSJar(Util.java:493)
         at org.netbeans.modules.websvc.registry.RegistryViewImpl.registerService(RegistryViewImpl.java:221)
         at org.netbeans.modules.websvc.registry.RegistryViewImpl.registerService(RegistryViewImpl.java:159)
         at org.netbeans.modules.websvc.registry.netbeans.RegisterViewImplNetBeansSide.registerService(RegisterViewImplNetBeansSide.java:91)
         at org.netbeans.modules.websvc.jaxrpc.client.wizard.ClientBuilder.generate(ClientBuilder.java:330)
         at org.netbeans.modules.websvc.jaxrpc.client.wizard.JaxRpcClientCreator$2.run(JaxRpcClientCreator.java:319)
         at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:572)
    [catch] at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:997)
    I use netbeans 6.5. In my project I choose java ee 5 as in 1.4 there is no web service client option
    Any ideas?
    I found some rpc tutorils for netbeans 4.0 but I wonder why it couldn't be done in netbean 6.5
    Regards,
    Lech

  • Web service client error

    Hello,
    I created new Web service client using WL 8.1, axis 1.4 , JDK 1.4.2 . The Service is hosted by my vendor and it's on asp/.net.
    I used axis to create stub implemetation and when i invoke the service , i get the following error . I googled out the error and i see lot of them complain this as an axis issue.
    Does anyone faced this error before ? or found an workaround for this?
    Error message :-
    2009-09-16 15:11:52,299] [DEBUG] [org.apache.axis.utils.XMLUtils] - Failed to set EntityResolver to null on DocumentBuilder
    java.lang.NullPointerException
         at weblogic.xml.jaxp.ChainingEntityResolver.popEntityResolver(ChainingEntityResolver.java:61)
         at weblogic.xml.jaxp.RegistryDocumentBuilder.setEntityResolver(RegistryDocumentBuilder.java:168)
         at org.apache.axis.utils.XMLUtils.releaseDocumentBuilder(XMLUtils.java:252)
         at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:342)
    Thanks in advance.
    Thanks,
    Subu

    You made proxy client not a client.
    I think u did not make any mistake to generate the proxy client but most probably ur web service-- message format is not rpc/encoded. Check it. hope u will succeed

  • XML Parser Error while creating Web service Client using JAX RPC

    hello evryone,
    Im facing XML Parser Error while creating web service client using JAX RPC. Im using Net Beans IDE for development purpose. I have wrote configuration file for client. Now i want to create Client stub. However i dont know how to do this in Net Beans. So i tried to do it from Command promt using command :
    wscompile -gen:client -d build -classpath build config-wsdl.xml
    here im getting Error:
    error parsing configuration file: XML parsing error: com.sun.xml.rpc.sp.ParseException:10: XML declaration may only begin entities
    Please help me out.
    Many thanks in advance,
    Kacee

    Can i use the client generated using jdeveloper 11g to import into the oracle forms 10g, i.e., form builder 10g. Currently this is the version we have in our office.

  • Error creating a web service client from th WSDL document (soamanager)

    Hello everyone,
    we have generate with the wizard a web-service using the function module BAPI_CONTROL_RECIPE_GET_LIST. Then we have generated with SOAMANAGER the end point. As test, we have used a web-service explorer of Eclispe and we can retrieve without problems the data.
    Then we wanted to generate the web-servcie client with Eclipse Galileo (3.5.0) wiith the server GlassFish v2.1 Java EE 5 we first installed the WSIT jars, in order to support WS-RM protocol
    We have started the generation based on the document obtainend within the soamanager under the "Open WSDL document for selected binding" link.
    We have tried it several times and we always got the following error is:
    IWAB0399E Error in generating Java from WSDL: WSDLException (at /wsdl:definitions/wsdl:portType/wsp:Policy):
    faultCode=INVALID_WSDL: Encountered unexpected element 'Policy'.: <br>
        WSDLException (at /wsdl:definitions/wsdl:portType/wsp:Policy): faultCode=INVALID_WSDL: Encountered unexpected element 'Policy'.:
    at com.ibm.wsdl.util.xml.DOMUtils.throwWSDLException(Unknown Source)
    at com.ibm.wsdl.xml.WSDLReaderImpl.parsePortType(Unknown Source)
    at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(Unknown Source)
    at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
    at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
    at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
    at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:516)
    at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:495)
    at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361)
    at java.lang.Thread.run(Unknown Source)
    Do you know if we took the right document in order to generate the web-service client? Do we need to have some specifics settings in the configurations of th endpoint? (provider security, transport settings, etc...?)
    If needed, or if someone would be nice enough to try to generate it on its side, I can post here the whole wsdl document, but due to its length, I first wait your comments.
    Thanks a lot in advance for your feed-back
    best regards
    Pierre-André
    addtions:
    maybe this should have been better posted within the forum Service-Oriented Architecture than standards?
    I forgot to mention the following threads, which seems to me to be somehow in this direction. But I do not get really how I could use them, or how is is releated.
    Edited by: Pierre-andre Jacquod on Sep 23, 2009 4:02 PM

    Hi,
    I am facing the same issue while generating the client java class from IBM RAD 6.0.
    Here is the error I am getting.
    WSDLException (at /wsdl:definitions/wsdl:portType/wsp:Policy): faultCode=INVALID_WSDL: Encountered unexpected element 'Policy'.:
         [java] at com.ibm.wsdl.util.xml.DOMUtils.throwWSDLException(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.parsePortType(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(Unknown Source)
         [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:516)
         [java] at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:495)
         [java] at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361)
         [java] at java.lang.Thread.run(Thread.java:571)
    Please guide me to resolve this issue.
    Thanks & Regards,
    Vijay

  • Oracle Database Web Service Client using UTL_DBWS :: ORA-29532 Error

    Hi,
    I have the Oracle Database 10.2.0.1.0 :-
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - ProductionI have written a simple Web Services Client using the classes gfrom the UTL_DBWS package. I loaded the JAR file dbwsclient.jar in the SYS Schema and I am trying to use it in the USF Schema.
    However, I have hit this error & I ma unable to proceed :-
    SQL>  select get_stock_price from dual;
    select get_stock_price from dual
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: javax.xml.rpc.ServiceException:
    java.security.AccessControlException: the Permission
    (java.lang.RuntimePermission getClassLoader) has not been granted to USF. The
    PL/SQL to grant this is dbms_java.grant_permission( 'USF',
    'SYS:java.lang.RuntimePermission', 'getClassLoader', '' )
    ORA-06512: at "USF.UTL_DBWS", line 193
    ORA-06512: at "USF.UTL_DBWS", line 190
    ORA-06512: at "USF.GET_STOCK_PRICE", line 17Can you please help me with this ?
    Regards,
    Sandeep

    Hi,
    The error message said
    the Permission(java.lang.RuntimePermission getClassLoader) has not been granted to USF.
    I'd follow the suggestion
    The PL/SQL to grant this is dbms_java.grant_permission( 'USF','SYS:java.lang.RuntimePermission', 'getClassLoader', '' )
    In case you have not done so, consult the Callout Users Guide @
    http://www.oracle.com/technology/sample_code/tech/java/jsp/callout_users_guide.htm
    Kuassi http://db360.blogspot.com

  • Error when creating web service client in netbeans

    i tried to create a web service client from a wsdl and an error pops up:
    web service client can not be created by jaxws:wsimport utility.
    reason: com.sun.tools.xjc.api.schemacompiler.resetschema()v
    There might be a problem during java artifacts creation: for example a name conflict in generated classes.
    To detect the problem see also the error messages in output window.
    You may be able to fix the problem in WSDL Customization dialog
    (Edit Web Service Attributes action)
    or by manual editing of the local wsdl or schema files, using the JAXB customization
    (local wsdl and schema files are located in xml-resources directory).
    end of error message
    I am using netbeans 6.0 RC 2 and the bundled tomcat 6.0.13. Please help me.

    Hi Yatan
    The error is mostly there may be some Duplicate variable/schema element decalared in the wsdl or the xsd referred in the wsdl. Like in WSDL for any Operations, most of the times, we use input and outputs as complex xsd element. We declare these xsd in the same file or in another file and import that in the .wsdl file. So check or validate your XSD file for any Duplicates.
    In JDeveloper itself, I think, you can open XSD or WSDL and validate it from right click menu options like that.
    Thanks
    Ravi Jegga

  • Error when calling BPEL process from web service client

    I have created three projects here ,there're no problem when testing Composite Application(SynchronousSampleApplication) by test case inside this project.
    When I create a Java Application(SynchronousSampleApp),inside this project I've created a web service client from file WSDL of BPEL. After that, In Main class, I call an operation from web service client.But have the following error:
    Jul 17, 2008 4:48:22 PM synchronoussampleapp.Main main
    SEVERE: null
    java.rmi.RemoteException: HTTP transport error: java.net.MalformedURLException: For input string: "${HttpDefaultPort}"; nested exception is:
    HTTP transport error: java.net.MalformedURLException: For input string: "${HttpDefaultPort}"
    at SynSample.SynchronuosSamplePortType_Stub.synchronuosSampleOperation(SynchronuosSamplePortType_Stub.java:83)
    at synchronoussampleapp.Main.main(Main.java:24)
    Caused by: HTTP transport error: java.net.MalformedURLException: For input string: "${HttpDefaultPort}"
    at com.sun.xml.rpc.client.http.HttpClientTransport.invoke(HttpClientTransport.java:140)
    at com.sun.xml.rpc.client.StreamingSender._send(StreamingSender.java:96)
    at SynSample.SynchronuosSamplePortType_Stub.synchronuosSampleOperation(SynchronuosSamplePortType_Stub.java:67)
    ... 1 more
    Please help me soon. Thanks very much!

    Can't anyone help me? I'm using Netbean 6.1 and Glassfish server.
    Do I need any additional plugin?

  • Timeout error at J2EE Web Service client

    i have a .NET web service. a J2EE web service client deployed on Websphere application server 5.1 is invoking it. some services on .NET end take a long time to return a value. in such cases, the following error occurs on J2EE end. please suggest a solution.
    faultCode: Server.generalException
    faultString: java.net.SocketTimeoutException: Read timed out
    faultActor: null
    faultDetail:
    java.net.SocketTimeoutException: Read timed out
    at com.ibm.ws.webservices.engine.WebServicesFault.makeFault(WebServicesFault.java:150)
    at com.ibm.ws.webservices.engine.transport.http.HTTPSender.invoke(HTTPSender.java:200)
    at com.ibm.ws.webservices.engine.PivotHandlerWrapper.invoke(PivotHandlerWrapper.java:212)
    at com.ibm.ws.webservices.engine.WebServicesEngine.invoke(WebServicesEngine.java:255)
    at com.ibm.ws.webservices.engine.client.Connection.invokeEngine(Connection.java:685)
    at com.ibm.ws.webservices.engine.client.Connection.invoke(Connection.java:611)
    at com.ibm.ws.webservices.engine.client.Connection.invoke(Connection.java:441)
    at com.ibm.ws.webservices.engine.client.Stub$Invoke.invoke(Stub.java:662)

    Hi, am also getting time out .. excepiton in client
    i added the following code inside stub class constructer...
    System.out.println("GET TIME OUT ::::"+super.getTimeout());
    super.setTimeout(77777);
    System.out.println("GET TIME OUT AFTER SET::"+super.getTimeout());
    compilation success. However am getting runtime exception after the sop.
    GET TIME OUT ::::0
    javax.xml.rpc.ServiceException: WSWS5014E: Error instantiating generated Stub class.
    can you please tell me how u solved the issue.
    Thanks
    Bogi

  • Web service client compilation error

    With the help of wscompile on JWSDP 1.6 I created all the files required for a web service client in SabreServerBridge.client.stub package. Now when I am trying to compile these files, I am getting the following stack trace. The stacktrace also includes the compile command:
    C:\JWSE\Pool\SabreServerClient>compile *.java
    C:\JWSE\Pool\SabreServerClient>javac -cp .;C:\Tomcat5\common\lib\servlet-api.jar
    ;C:\Tomcat5\common\lib\mssqlserver.jar;C:\Tomcat5\common\lib\msbase.jar;C:\Tomca
    t5\common\lib\msutil.jar;C:\Tomcat5\common\lib\xercesImpl.jar;C:\Tomcat5\common\
    lib\jaxp-api.jar;C:\Tomcat5\common\lib\sax.jar;C:\Tomcat5\common\lib\poolit.jar;
    C:\Tomcat5\common\lib\databahn.jar;C:\Tomcat5\webapps\Book\WEB-INF\classes\DBSer
    ver;C:\Tomcat5\webapps\Book\WEB-INF\classes\SabreServer\;C:\Tomcat5\commaon\lib\
    jb2refscan-2.62.jar;C:\sun\jwsdp-1.6\jaxws\lib\jsr181-api.jar;C:\sun\jwsdp-1.6\j
    axws\lib\jsr250-api.jar;C:\sun\jwsdp-1.6\jaxws\lib\jaxws-tools.jar;C:\sun\jwsdp-
    1.6\jaxws\lib\jaxws-rt.jar;C:\sun\jwsdp-1.6\jaxws\lib\jaxws-api.jar;C:\sun\jwsdp
    -1.6\jaxrpc\lib\jaxrpc-impl.jar;;;C:\sun\jwsdp-1.6\jaxrpc\lib\jaxrpc-api.jar;C:\
    sun\jwsdp-1.6\jaxrpc\lib\jaxrpc-spi.jar;C:\sun\jwsdp-1.6\jaxrpc\lib\jaxrpc-impl.
    jar;C:\sun\jwsdp-1.6\jwsdp-shared\lib\jax-qname.jar;C:\sun\jwsdp-1.6\jwsdp-share
    d\lib\activation.jar;C:\sun\jwsdp-1.6\jwsdp-shared\lib\mail.jar;C:\sun\jwsdp-1.6
    \saaj\lib\saaj-impl.jar;C:\sun\jwsdp-1.6\saaj\lib\saaj-api.jar;C:\sun\jwsdp-1.6\
    jaxp\lib\endorsed\xercesImpl.jar;C:\sun\jwsdp-1.6\jaxp\lib\endorsed\dom.jar;C:\J
    WSE\Pool\SabreServerClient\gen; -d gen src\SabreServerBridge\client\stub\*.java
    src\SabreServerBridge\client\stub\SabreServerBridge.java:11: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    public SabreServerBridge.client.stub.SSBridge getSSBridgePort() throws Servi
    ceException;
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:55: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    public SabreServerBridge.client.stub.SSBridge getSSBridgePort() {
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPBuilder.java:12
    : cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private SabreServerBridge.client.stub.SSBridge_get_RequestStruct _instance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPBuilder.java:1
    2: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private SabreServerBridge.client.stub.SSBridge_get_ResponseStruct _instance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPBuilder
    .java:12: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct _in
    stance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPBuilder.java:12
    : cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private SabreServerBridge.client.stub.SSBridge_put_RequestStruct _instance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    implements SabreServerBridge.client.stub.SSBridge {
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:33: interface expected here
    implements SabreServerBridge.client.stub.SSBridge {
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:22: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private static final Class SSBridge_PortClass = SabreServerBridge.client.stu
    b.SSBridge.class;
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:28: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    new SabreServerBridge.client.stub.SabreServerBridge_SerializerRegist
    ry().getRegistry());
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:59: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_Stub stub = new SabreServerBridge
    .client.stub.SSBridge_Stub(handlerChain);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:59: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_Stub stub = new SabreServerBridge
    .client.stub.SSBridge_Stub(handlerChain);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:31:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_getVersion_RequestStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:34:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_ge
    tVersion_RequestStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:38:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_getVersion_ResponseStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:41:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_ge
    tVersion_ResponseStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:45:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_get_RequestStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:48:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_ge
    t_RequestStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:52:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_put_RequestStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:55:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_pu
    t_RequestStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:59:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_put_ResponseStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:62:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_pu
    t_ResponseStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:66:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_get_ResponseStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:69:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_ge
    t_ResponseStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPBuilder.java:57
    : cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    instance = (SabreServerBridge.client.stub.SSBridgeget_RequestStruct)in
    stance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = new
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = new
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :34: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct_SOAPBuilder bui
    lder = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :46: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_get
    RequestStructSOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_get_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_get_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_get_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_get_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPBuilder.java:5
    7: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    instance = (SabreServerBridge.client.stub.SSBridgeget_ResponseStruct)i
    nstance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = new
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = new
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:34: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct_SOAPBuilder bu
    ilder = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:46: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_get
    ResponseStructSOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_get_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_get_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_get_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_get_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:28: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = new SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:28: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = new SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = (SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = (SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:44: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = (SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:44: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = (SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPBuilder
    .java:57: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    instance = (SabreServerBridge.client.stub.SSBridgegetVersion_ResponseS
    truct)instance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = new SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = new SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:34: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct_SOAPBui
    lder builder = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:46: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_get
    Version_ResponseStruct_SOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = (SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = (SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = (SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = (SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPBuilder.java:68
    : cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    instance = (SabreServerBridge.client.stub.SSBridgeput_RequestStruct)in
    stance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :38: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = new
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :38: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = new
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct_SOAPBuilder bui
    lder = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :54: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_put
    RequestStructSOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :68: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_put
    RequestStructSOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :87: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_put_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :87: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_put_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :92: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_put_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :92: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_put_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:28: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = new
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:28: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = new
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_put_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_put_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:44: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_put_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:44: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_put_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:58: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct _mySSBridge
    getRequestStruct =
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:59: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    new SabreServerBridge.client.stub.SSBridge_get_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:72: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct _mySSBridg
    e_get_ResponseStruct = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:76: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    (SabreServerBridge.client.stub.SSBridge_get_ResponseStruct)(
    (SOAPDeserializationState)_responseObj).getInstance();
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:79: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    (SabreServerBridge.client.stub.SSBridge_get_ResponseStruct)_
    responseObj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:109: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct _myS
    SBridge_getVersion_RequestStruct =
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:110: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    new SabreServerBridge.client.stub.SSBridge_getVersion_RequestStr
    uct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:122: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct _my
    SSBridge_getVersion_ResponseStruct = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:126: cannot find symbol
    symbol : class client
    locat

    With the help of wscompile on JWSDP 1.6 I created all the files required for a web service client in SabreServerBridge.client.stub package. Now when I am trying to compile these files, I am getting the following stack trace. The stacktrace also includes the compile command:
    C:\JWSE\Pool\SabreServerClient>compile *.java
    C:\JWSE\Pool\SabreServerClient>javac -cp .;C:\Tomcat5\common\lib\servlet-api.jar
    ;C:\Tomcat5\common\lib\mssqlserver.jar;C:\Tomcat5\common\lib\msbase.jar;C:\Tomca
    t5\common\lib\msutil.jar;C:\Tomcat5\common\lib\xercesImpl.jar;C:\Tomcat5\common\
    lib\jaxp-api.jar;C:\Tomcat5\common\lib\sax.jar;C:\Tomcat5\common\lib\poolit.jar;
    C:\Tomcat5\common\lib\databahn.jar;C:\Tomcat5\webapps\Book\WEB-INF\classes\DBSer
    ver;C:\Tomcat5\webapps\Book\WEB-INF\classes\SabreServer\;C:\Tomcat5\commaon\lib\
    jb2refscan-2.62.jar;C:\sun\jwsdp-1.6\jaxws\lib\jsr181-api.jar;C:\sun\jwsdp-1.6\j
    axws\lib\jsr250-api.jar;C:\sun\jwsdp-1.6\jaxws\lib\jaxws-tools.jar;C:\sun\jwsdp-
    1.6\jaxws\lib\jaxws-rt.jar;C:\sun\jwsdp-1.6\jaxws\lib\jaxws-api.jar;C:\sun\jwsdp
    -1.6\jaxrpc\lib\jaxrpc-impl.jar;;;C:\sun\jwsdp-1.6\jaxrpc\lib\jaxrpc-api.jar;C:\
    sun\jwsdp-1.6\jaxrpc\lib\jaxrpc-spi.jar;C:\sun\jwsdp-1.6\jaxrpc\lib\jaxrpc-impl.
    jar;C:\sun\jwsdp-1.6\jwsdp-shared\lib\jax-qname.jar;C:\sun\jwsdp-1.6\jwsdp-share
    d\lib\activation.jar;C:\sun\jwsdp-1.6\jwsdp-shared\lib\mail.jar;C:\sun\jwsdp-1.6
    \saaj\lib\saaj-impl.jar;C:\sun\jwsdp-1.6\saaj\lib\saaj-api.jar;C:\sun\jwsdp-1.6\
    jaxp\lib\endorsed\xercesImpl.jar;C:\sun\jwsdp-1.6\jaxp\lib\endorsed\dom.jar;C:\J
    WSE\Pool\SabreServerClient\gen; -d gen src\SabreServerBridge\client\stub\*.java
    src\SabreServerBridge\client\stub\SabreServerBridge.java:11: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    public SabreServerBridge.client.stub.SSBridge getSSBridgePort() throws Servi
    ceException;
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:55: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    public SabreServerBridge.client.stub.SSBridge getSSBridgePort() {
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPBuilder.java:12
    : cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private SabreServerBridge.client.stub.SSBridge_get_RequestStruct _instance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPBuilder.java:1
    2: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private SabreServerBridge.client.stub.SSBridge_get_ResponseStruct _instance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPBuilder
    .java:12: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct _in
    stance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPBuilder.java:12
    : cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private SabreServerBridge.client.stub.SSBridge_put_RequestStruct _instance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    implements SabreServerBridge.client.stub.SSBridge {
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:33: interface expected here
    implements SabreServerBridge.client.stub.SSBridge {
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:22: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    private static final Class SSBridge_PortClass = SabreServerBridge.client.stu
    b.SSBridge.class;
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:28: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    new SabreServerBridge.client.stub.SabreServerBridge_SerializerRegist
    ry().getRegistry());
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:59: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_Stub stub = new SabreServerBridge
    .client.stub.SSBridge_Stub(handlerChain);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_Impl.java:59: cannot find sy
    mbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_Stub stub = new SabreServerBridge
    .client.stub.SSBridge_Stub(handlerChain);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:31:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_getVersion_RequestStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:34:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_ge
    tVersion_RequestStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:38:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_getVersion_ResponseStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:41:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_ge
    tVersion_ResponseStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:45:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_get_RequestStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:48:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_ge
    t_RequestStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:52:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_put_RequestStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:55:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_pu
    t_RequestStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:59:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_put_ResponseStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:62:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_pu
    t_ResponseStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:66:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    CombinedSerializer serializer = new SabreServerBridge.client.stub.SS
    Bridge_get_ResponseStruct_SOAPSerializer(type,
    ^
    src\SabreServerBridge\client\stub\SabreServerBridge_SerializerRegistry.java:69:
    cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    registerSerializer(mapping,SabreServerBridge.client.stub.SSBridge_ge
    t_ResponseStruct.class, type, serializer);
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPBuilder.java:57
    : cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    instance = (SabreServerBridge.client.stub.SSBridgeget_RequestStruct)in
    stance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = new
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = new
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :34: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct_SOAPBuilder bui
    lder = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :46: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_get
    RequestStructSOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_get_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_get_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_get_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_RequestStruct_SOAPSerializer.java
    :69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_get_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPBuilder.java:5
    7: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    instance = (SabreServerBridge.client.stub.SSBridgeget_ResponseStruct)i
    nstance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = new
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = new
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:34: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct_SOAPBuilder bu
    ilder = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:46: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_get
    ResponseStructSOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_get_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_get_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_get_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_get_ResponseStruct_SOAPSerializer.jav
    a:69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_get_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:28: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = new SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:28: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = new SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = (SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = (SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:44: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = (SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_RequestStruct_SOAPSerializ
    er.java:44: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct instance
    = (SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPBuilder
    .java:57: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    instance = (SabreServerBridge.client.stub.SSBridgegetVersion_ResponseS
    truct)instance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = new SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:33: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = new SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:34: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct_SOAPBui
    lder builder = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:46: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_get
    Version_ResponseStruct_SOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = (SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:64: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = (SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = (SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_getVersion_ResponseStruct_SOAPSeriali
    zer.java:69: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct instanc
    e = (SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPBuilder.java:68
    : cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    instance = (SabreServerBridge.client.stub.SSBridgeput_RequestStruct)in
    stance;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :38: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = new
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :38: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = new
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct_SOAPBuilder bui
    lder = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :54: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_put
    RequestStructSOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :68: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    builder = new SabreServerBridge.client.stub.SSBridge_put
    RequestStructSOAPBuilder();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :87: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_put_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :87: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_put_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :92: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_put_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_RequestStruct_SOAPSerializer.java
    :92: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_RequestStruct instance = (Sab
    reServerBridge.client.stub.SSBridge_put_RequestStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:28: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = new
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:28: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = new
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_put_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:39: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_put_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:44: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_put_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_put_ResponseStruct_SOAPSerializer.jav
    a:44: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_put_ResponseStruct instance = (Sa
    breServerBridge.client.stub.SSBridge_put_ResponseStruct)obj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:58: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_RequestStruct _mySSBridge
    getRequestStruct =
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:59: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    new SabreServerBridge.client.stub.SSBridge_get_RequestStruct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:72: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_get_ResponseStruct _mySSBridg
    e_get_ResponseStruct = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:76: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    (SabreServerBridge.client.stub.SSBridge_get_ResponseStruct)(
    (SOAPDeserializationState)_responseObj).getInstance();
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:79: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    (SabreServerBridge.client.stub.SSBridge_get_ResponseStruct)_
    responseObj;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:109: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_RequestStruct _myS
    SBridge_getVersion_RequestStruct =
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:110: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    new SabreServerBridge.client.stub.SSBridge_getVersion_RequestStr
    uct();
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:122: cannot find symbol
    symbol : class client
    location: interface SabreServerBridge.client.stub.SabreServerBridge
    SabreServerBridge.client.stub.SSBridge_getVersion_ResponseStruct _my
    SSBridge_getVersion_ResponseStruct = null;
    ^
    src\SabreServerBridge\client\stub\SSBridge_Stub.java:126: cannot find symbol
    symbol : class client
    locat

  • OC4J web service client and Spring

    Hello!
    I'm trying to use the Web Service client mechanism of Spring 1.2.6 in conjunction with OC4J by subclassing org.springframework.remoting.jaxrpc.JaxRpcPortProxyFactoryBean and using generated classes from soap-ui.
    Problem is that I keep getting errors like this when starting the (embedded) OC4J:
    org.springframework.beans.FatalBeanException: Could not instantiate class [at.sozvers.bva.shared.util.CommaSeparatedClassPathContext]; constructor threw exception; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'zpvPartnerAdresseWebService' defined in class path resource [onlineContext.xml]: Initialization of bean failed; nested exception is oracle.j2ee.ws.client.ServiceExceptionImpl: service: {http://oasdev1.bva.sozvers.at:8192/zpvPartnerAdresse/}PartnerAdresse does not contain port: {http://oasdev1.bva.sozvers.at:8192/zpvPartnerAdresse/}PartnerAdresse
    The WSDL:
    <?xml version="1.0" encoding="UTF-8"?><wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://service.zpv.esb.bva.sozvers.at" xmlns:ns2="http://error.shared.bva.sozvers.at" xmlns:ns3="http://dto.zpv.esb.bva.sozvers.at" xmlns:soap11="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope" xmlns:soapenc11="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soapenc12="http://www.w3.org/2003/05/soap-encoding" xmlns:tns="http://service.zpv.esb.bva.sozvers.at/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://service.zpv.esb.bva.sozvers.at/">
    <wsdl:types>
    <xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://service.zpv.esb.bva.sozvers.at/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="lesen">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="ns1:PartnerAdresseServiceRequest"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="lesenResponse">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns3:ZPVPartnerAdresseDTO"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="schreiben">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element maxOccurs="1" minOccurs="1" name="in0" nillable="true" type="xsd:string"/>
    <xsd:element maxOccurs="1" minOccurs="1" name="in1" nillable="true" type="ns1:PartnerAdresseServiceRequest"/>
    <xsd:element maxOccurs="1" minOccurs="1" name="in2" nillable="true" type="ns3:ArrayOfZPVAdresseDTO"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="schreibenResponse">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element maxOccurs="1" minOccurs="1" name="out" nillable="true" type="ns3:ZPVResponseDTO"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    </xsd:schema>
    <xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://service.zpv.esb.bva.sozvers.at" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:complexType name="PartnerAdresseServiceRequest">
    <xsd:sequence>
    <xsd:element minOccurs="0" name="bisDat" type="xsd:dateTime"/>
    <xsd:element minOccurs="0" name="bkFachschluessel" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="bkInput" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="vonDat" type="xsd:dateTime"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    <xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://dto.zpv.esb.bva.sozvers.at" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:complexType name="ZPVPartnerAdresseDTO">
    <xsd:sequence>
    <xsd:element minOccurs="0" name="exceptionDTO" nillable="true" type="ns2:ExceptionDTO"/>
    <xsd:element minOccurs="0" name="responseDto" nillable="true" type="ns3:ZPVResponseDTO"/>
    <xsd:element minOccurs="0" name="zpvAdresseDTOs" nillable="true" type="ns3:ArrayOfZPVAdresseDTO"/>
    <xsd:element minOccurs="0" name="zpvPartnerStammdatenDTO" nillable="true" type="ns3:ZPVPartnerStammdatenDTO"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ZPVResponseDTO">
    <xsd:sequence>
    <xsd:element minOccurs="0" name="exceptionDTO" nillable="true" type="ns2:ExceptionDTO"/>
    <xsd:element minOccurs="0" name="fehlerJN" nillable="true" type="xsd:boolean"/>
    <xsd:element minOccurs="0" name="zpvFehlerId" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="zpvMeldungstext" nillable="true" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ArrayOfZPVAdresseDTO">
    <xsd:sequence>
    <xsd:element maxOccurs="unbounded" minOccurs="0" name="ZPVAdresseDTO" nillable="true" type="ns3:ZPVAdresseDTO"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ZPVAdresseDTO">
    <xsd:sequence>
    <xsd:element minOccurs="0" name="abgabestelle" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="adresstyp" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="anschriftzusatz" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="beginn" type="xsd:dateTime"/>
    <xsd:element minOccurs="0" name="beharrungsadresse" nillable="true" type="xsd:boolean"/>
    <xsd:element minOccurs="0" name="bundeslandKennzeichen" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="ende" type="xsd:dateTime"/>
    <xsd:element minOccurs="0" name="exceptionDTO" nillable="true" type="ns2:ExceptionDTO"/>
    <xsd:element minOccurs="0" name="gebrauchKurz" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="hausnummer" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="ort" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="plz" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="postfach" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="staatkennzeichen" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="staatname" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="stocktuernummer" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="strasse" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="updatecount" nillable="true" type="xsd:int"/>
    <xsd:element minOccurs="0" name="verwendungsartKurz" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="zpvAevnummer" nillable="true" type="xsd:long"/>
    </xsd:sequence>
    </xsd:complexType>
    <xsd:complexType name="ZPVPartnerStammdatenDTO">
    <xsd:sequence>
    <xsd:element minOccurs="0" name="angehoeriger" type="xsd:boolean"/>
    <xsd:element minOccurs="0" name="bkFachschluesselAngabe" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="exceptionDTO" nillable="true" type="ns2:ExceptionDTO"/>
    <xsd:element minOccurs="0" name="familienname" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="familiennameDiakritisch" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="geburtsDAT" type="xsd:dateTime"/>
    <xsd:element minOccurs="0" name="geschlechtKZ" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="isoa3Staatsbuergerschaft" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="landesstellenKennzeichen" nillable="true" type="xsd:int"/>
    <xsd:element minOccurs="0" name="namensergaenzung" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="namenskorrektur" type="xsd:boolean"/>
    <xsd:element minOccurs="0" name="staatsbuergerschaftSonderformKZ" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="stornoJN" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="titelHintenKurz" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="titelVorneKurz" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="todesDAT" type="xsd:dateTime"/>
    <xsd:element minOccurs="0" name="updatecount" nillable="true" type="xsd:int"/>
    <xsd:element minOccurs="0" name="versicherter" type="xsd:boolean"/>
    <xsd:element minOccurs="0" name="vorname" nillable="true" type="xsd:string"/>
    <xsd:element minOccurs="0" name="vornameDiakritisch" nillable="true" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    <xsd:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://error.shared.bva.sozvers.at" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <xsd:complexType name="ExceptionDTO"/>
    </xsd:schema>
    </wsdl:types>
    <wsdl:message name="schreibenResponse">
    <wsdl:part element="tns:schreibenResponse" name="parameters">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="lesenRequest">
    <wsdl:part element="tns:lesen" name="parameters">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="lesenResponse">
    <wsdl:part element="tns:lesenResponse" name="parameters">
    </wsdl:part>
    </wsdl:message>
    <wsdl:message name="schreibenRequest">
    <wsdl:part element="tns:schreiben" name="parameters">
    </wsdl:part>
    </wsdl:message>
    <wsdl:portType name="PartnerAdresseServicePortType">
    <wsdl:operation name="lesen">
    <wsdl:input message="tns:lesenRequest" name="lesenRequest">
    </wsdl:input>
    <wsdl:output message="tns:lesenResponse" name="lesenResponse">
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="schreiben">
    <wsdl:input message="tns:schreibenRequest" name="schreibenRequest">
    </wsdl:input>
    <wsdl:output message="tns:schreibenResponse" name="schreibenResponse">
    </wsdl:output>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="zpvPartnerAdresseBinding" type="tns:PartnerAdresseServicePortType">
    <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="lesen">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="lesenRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="lesenResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="schreiben">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="schreibenRequest">
    <wsdlsoap:body use="literal"/>
    </wsdl:input>
    <wsdl:output name="schreibenResponse">
    <wsdlsoap:body use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="PartnerAdresse">
    <wsdl:port binding="tns:zpvPartnerAdresseBinding" name="zpvPartnerAdresse">
    <wsdlsoap:address location="http://0.0.0.0:8192/zpvPartnerAdresse/"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    The Spring configuration of the WS- bean:
    <bean id="zpvPartnerAdresseWebService" class="at.sozvers.bva.panda.m02.service.PartnerAdresseProxyFactoryBean">
    <property name="serviceInterface">
    <value>at.sozvers.bva.panda.m02.service.RemotePartnerAdresseBean</value>
    </property>
    <property name="wsdlDocumentUrl">
    <value>http://oasdev1.bva.sozvers.at:8192/zpvPartnerAdresse/main.wsdl</value>
    </property>
    <property name="namespaceUri">
    <value>http://oasdev1.bva.sozvers.at:8192/zpvPartnerAdresse/</value>
    </property>
    <property name="serviceName">
    <value>PartnerAdresse</value>
    </property>
    <property name="portName">
    <value>PartnerAdresse</value>
    </property>
    </bean>
    Does anyone have ideas or experience using Spring 1.2.6 for web service clients with oc4j 10.1.3 ?
    Thank you in advance
    Stefan

    I also tried to use "zpvPartnerAdresse" as portName, but this didn't change anything.
    Stefan

  • Standalone Web Service clients in NetBeans with WSIT security

    I'm having a problem create a secure app with NetBeans, any help would be appreciated, here's what I did:
    Following the WSIT tutorial (http://java.sun.com/webservices/reference/tutorials/wsit/doc/index.html) I was able to create a Web Service with (for example) Username Authentication with Symmetric Key. I select the keystore as being the either the default development settings (I installed V3 certificates previously) or what I imagine are the same as them: keystore from domain1, alias xws-server and a username and password that I've created in the glassfish admin console. All good so far.
    I then create a new web app servlet client, configuring the Web Service client with the corresponding cacerts keystore, alias xws-security-server from domain1 and the correct username and password. Deploy that and bingo, it works.
    Try that again with a standalone Java client configuring the client reference in exactly the same way and using:
            try { // Call Web Service Operation
                uk.ac.ox.sddag.glassfish.server.SecureWSService service = new uk.ac.ox.sddag.glassfish.server.SecureWSService();
                uk.ac.ox.sddag.glassfish.server.SecureWS port = service.getSecureWSPort();
                int x = 1200;
                int y = 36;
                int result = port.add(x, y);
                System.out.println("Result = "+result);
            } catch (Exception ex) {
                System.out.println("Exception:");
                ex.printStackTrace();
            }but this time, it doesn't work:
    Exception:
    javax.xml.ws.soap.SOAPFaultException: ERROR: No security header found in the message
            at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:188)
            at com.sun.xml.ws.fault.SOAPFaultBuilder.createException(SOAPFaultBuilder.java:130)
            at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:119)
            at com.sun.xml.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:89)
            at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:118)
            at $Proxy29.add(Unknown Source)
            at securestandaloneclient.Main.main(Main.java:26)
    Caused by: javax.xml.ws.soap.SOAPFaultException: ERROR: No security header found in the message
            at com.sun.xml.ws.security.opt.impl.util.SOAPUtil.getSOAPFaultException(SOAPUtil.java:171)
            at com.sun.xml.wss.provider.wsit.WSITServerAuthContext.validateRequest(WSITServerAuthContext.java:277)
            at com.sun.xml.wss.provider.wsit.WSITServerAuthContext.validateRequest(WSITServerAuthContext.java:179)
            at com.sun.enterprise.webservice.CommonServerSecurityPipe.processRequest(CommonServerSecurityPipe.java:168)
            at com.sun.enterprise.webservice.CommonServerSecurityPipe.process(CommonServerSecurityPipe.java:129)
            at com.sun.xml.ws.api.pipe.helper.PipeAdapter.processRequest(PipeAdapter.java:115)
            at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:595)
            at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:554)
            at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:539)
            at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:436)
            at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:243)
            at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:444)
            at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:244)
            at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:135)
            at com.sun.enterprise.webservice.JAXWSServlet.doPost(JAXWSServlet.java:176)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:738)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
            at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:290)
            at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
            at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
            at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
            at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
            at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
            at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
            at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
            at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
            at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
            at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
            at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
            at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)I'm assuming that it's something to do with the WSDL being used to create the request, here's what the source view for the web service reference says:
    <?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-417-SNAPSHOT. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-417-SNAPSHOT. --><definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://server.glassfish.sddag.ox.ac.uk/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://server.glassfish.sddag.ox.ac.uk/" name="SecureWSService">
    <ns1:Policy xmlns:ns1="http://schemas.xmlsoap.org/ws/2004/09/policy" wsu:Id="SecureWSPortBindingPolicy">
    <ns1:ExactlyOne>
    <ns1:All>
    <ns4:SignedSupportingTokens xmlns:ns4="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
    <ns1:Policy>
    <ns1:ExactlyOne>
    <ns1:All>
    <ns4:UsernameToken ns4:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/AlwaysToRecipient">
    <ns1:Policy>
    <ns1:ExactlyOne>
    <ns1:All>
    <ns4:WssUsernameToken10></ns4:WssUsernameToken10>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    </ns4:UsernameToken>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    </ns4:SignedSupportingTokens>
    <ns5:SymmetricBinding xmlns:ns5="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
    <ns1:Policy>
    <ns1:ExactlyOne>
    <ns1:All>
    <ns5:AlgorithmSuite>
    <ns1:Policy>
    <ns1:ExactlyOne>
    <ns1:All>
    <ns5:Basic128></ns5:Basic128>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    </ns5:AlgorithmSuite>
    <ns5:IncludeTimestamp></ns5:IncludeTimestamp>
    <ns5:Layout>
    <ns1:Policy>
    <ns1:ExactlyOne>
    <ns1:All>
    <ns5:Strict></ns5:Strict>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    </ns5:Layout>
    <ns5:OnlySignEntireHeadersAndBody></ns5:OnlySignEntireHeadersAndBody>
    <ns5:ProtectionToken>
    <ns1:Policy>
    <ns1:ExactlyOne>
    <ns1:All>
    <ns5:X509Token ns5:IncludeToken="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy/IncludeToken/Never">
    <ns1:Policy>
    <ns1:ExactlyOne>
    <ns1:All>
    <ns5:RequireIssuerSerialReference></ns5:RequireIssuerSerialReference>
    <ns5:WssX509V3Token10></ns5:WssX509V3Token10>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    </ns5:X509Token>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    </ns5:ProtectionToken>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    </ns5:SymmetricBinding>
    <ns6:Wss11 xmlns:ns6="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
    <ns1:Policy>
    <ns1:ExactlyOne>
    <ns1:All>
    <ns6:MustSupportRefEncryptedKey></ns6:MustSupportRefEncryptedKey>
    <ns6:MustSupportRefIssuerSerial></ns6:MustSupportRefIssuerSerial>
    <ns6:MustSupportRefThumbprint></ns6:MustSupportRefThumbprint>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    </ns6:Wss11>
    <ns7:UsingAddressing xmlns:ns7="http://www.w3.org/2006/05/addressing/wsdl" ns1:Optional="true"></ns7:UsingAddressing>
    </ns1:All>
    </ns1:ExactlyOne>
    </ns1:Policy>
    <ns8:Policy xmlns:ns8="http://schemas.xmlsoap.org/ws/2004/09/policy" wsu:Id="SecureWSPortBinding_add_Input_Policy">
    <ns8:ExactlyOne>
    <ns8:All>
    <ns9:EncryptedParts xmlns:ns9="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
    <ns9:Body></ns9:Body>
    </ns9:EncryptedParts>
    <ns10:SignedParts xmlns:ns10="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
    <ns10:Body></ns10:Body>
    <ns10:Header Name="ReplyTo" Namespace="http://www.w3.org/2005/08/addressing"></ns10:Header>
    <ns10:Header Namespace="http://www.w3.org/2005/08/addressing" Name="To"></ns10:Header>
    <ns10:Header Name="From" Namespace="http://www.w3.org/2005/08/addressing"></ns10:Header>
    <ns10:Header Name="MessageID" Namespace="http://www.w3.org/2005/08/addressing"></ns10:Header>
    <ns10:Header Name="FaultTo" Namespace="http://www.w3.org/2005/08/addressing"></ns10:Header>
    <ns10:Header Name="Action" Namespace="http://www.w3.org/2005/08/addressing"></ns10:Header>
    <ns10:Header Name="RelatesTo" Namespace="http://www.w3.org/2005/08/addressing"></ns10:Header>
    <ns10:Header Namespace="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" Name="AckRequested"></ns10:Header>
    <ns10:Header Namespace="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" Name="CreateSequence"></ns10:Header>
    <ns10:Header Namespace="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" Name="Sequence"></ns10:Header>
    <ns10:Header Namespace="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" Name="SequenceAcknowledgement"></ns10:Header>
    </ns10:SignedParts>
    </ns8:All>
    </ns8:ExactlyOne>
    </ns8:Policy>
    <ns11:Policy xmlns:ns11="http://schemas.xmlsoap.org/ws/2004/09/policy" wsu:Id="SecureWSPortBinding_add_Output_Policy">
    <ns11:ExactlyOne>
    <ns11:All>
    <ns12:EncryptedParts xmlns:ns12="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
    <ns12:Body></ns12:Body>
    </ns12:EncryptedParts>
    <ns13:SignedParts xmlns:ns13="http://schemas.xmlsoap.org/ws/2005/07/securitypolicy">
    <ns13:Body></ns13:Body>
    <ns13:Header Name="ReplyTo" Namespace="http://www.w3.org/2005/08/addressing"></ns13:Header>
    <ns13:Header Namespace="http://www.w3.org/2005/08/addressing" Name="To"></ns13:Header>
    <ns13:Header Name="From" Namespace="http://www.w3.org/2005/08/addressing"></ns13:Header>
    <ns13:Header Name="MessageID" Namespace="http://www.w3.org/2005/08/addressing"></ns13:Header>
    <ns13:Header Name="FaultTo" Namespace="http://www.w3.org/2005/08/addressing"></ns13:Header>
    <ns13:Header Name="Action" Namespace="http://www.w3.org/2005/08/addressing"></ns13:Header>
    <ns13:Header Name="RelatesTo" Namespace="http://www.w3.org/2005/08/addressing"></ns13:Header>
    <ns13:Header Namespace="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" Name="AckRequested"></ns13:Header>
    <ns13:Header Namespace="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" Name="CreateSequence"></ns13:Header>
    <ns13:Header Namespace="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" Name="Sequence"></ns13:Header>
    <ns13:Header Namespace="http://schemas.xmlsoap.org/ws/2005/02/rm/policy" Name="SequenceAcknowledgement"></ns13:Header>
    </ns13:SignedParts>
    </ns11:All>
    </ns11:ExactlyOne>
    </ns11:Policy>
    <types>
    <xsd:schema>
    <xsd:import namespace="http://server.glassfish.sddag.ox.ac.uk/" schemaLocation="http://localhost:8080/SecureApplication/SecureWSService?xsd=1"></xsd:import>
    </xsd:schema>
    </types>
    <message name="add">
    <part name="parameters" element="tns:add"></part>
    </message>
    <message name="addResponse">
    <part name="parameters" element="tns:addResponse"></part>
    </message>
    <portType name="SecureWS">
    <operation name="add">
    <input message="tns:add"></input>
    <output message="tns:addResponse"></output>
    </operation>
    </portType>
    <binding name="SecureWSPortBinding" type="tns:SecureWS">
    <ns14:PolicyReference xmlns:ns14="http://schemas.xmlsoap.org/ws/2004/09/policy" URI="#SecureWSPortBindingPolicy"></ns14:PolicyReference>
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding>
    <operation name="add">
    <soap:operation soapAction="add"></soap:operation>
    <input>
    <ns15:PolicyReference xmlns:ns15="http://schemas.xmlsoap.org/ws/2004/09/policy" URI="#SecureWSPortBinding_add_Input_Policy"></ns15:PolicyReference>
    <soap:body use="literal"></soap:body>
    </input>
    <output>
    <ns16:PolicyReference xmlns:ns16="http://schemas.xmlsoap.org/ws/2004/09/policy" URI="#SecureWSPortBinding_add_Output_Policy"></ns16:PolicyReference>
    <soap:body use="literal"></soap:body>
    </output>
    </operation>
    </binding>
    <service name="SecureWSService">
    <port name="SecureWSPort" binding="tns:SecureWSPortBinding">
    <soap:address location="http://localhost:8080/SecureApplication/SecureWSService"></soap:address>
    </port>
    </service>
    </definitions>The contents of META-INF (The WSDL):
    <?xml version="1.0" encoding="UTF-8"?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-417-SNAPSHOT. --><!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is JAX-WS RI 2.1.3.1-hudson-417-SNAPSHOT. --><definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://server.glassfish.sddag.ox.ac.uk/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://server.glassfish.sddag.ox.ac.uk/" name="SecureWSService" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:sc="http://schemas.sun.com/2006/03/wss/client" xmlns:wspp="http://java.sun.com/xml/ns/wsit/policy">
    <types>
    <xsd:schema>
    <xsd:import namespace="http://server.glassfish.sddag.ox.ac.uk/" schemaLocation="http://localhost:8080/SecureApplication/SecureWSService?xsd=1"></xsd:import>
    </xsd:schema>
    </types>
    <message name="add">
    <part name="parameters" element="tns:add"></part>
    </message>
    <message name="addResponse">
    <part name="parameters" element="tns:addResponse"></part>
    </message>
    <portType name="SecureWS">
    <operation name="add">
    <input message="tns:add"></input>
    <output message="tns:addResponse"></output>
    </operation>
    </portType>
    <binding name="SecureWSPortBinding" type="tns:SecureWS">
        <wsp:PolicyReference URI="#SecureWSPortBindingPolicy"/>
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"></soap:binding>
    <operation name="add">
    <soap:operation soapAction="add"></soap:operation>
    <input>
    <soap:body use="literal"></soap:body>
    </input>
    <output>
    <soap:body use="literal"></soap:body>
    </output>
    </operation>
    </binding>
    <service name="SecureWSService">
    <port name="SecureWSPort" binding="tns:SecureWSPortBinding">
    <soap:address location="http://localhost:8080/SecureApplication/SecureWSService"></soap:address>
    </port>
    </service>
        <wsp:Policy wsu:Id="SecureWSPortBindingPolicy">
            <wsp:ExactlyOne>
                <wsp:All>
                    <sc:CallbackHandlerConfiguration wspp:visibility="private">
                        <sc:CallbackHandler default="example1" name="usernameHandler"/>
                        <sc:CallbackHandler default="password1" name="passwordHandler"/>
                    </sc:CallbackHandlerConfiguration>
                    <sc:TrustStore wspp:visibility="private" type="JKS" storepass="changeit" location="/Applications/NetBeans/glassfish-v2ur2/domains/domain1/config/cacerts.jks" peeralias="xws-security-server"/>
                </wsp:All>
            </wsp:ExactlyOne>
        </wsp:Policy>
    </definitions>The wsit-client:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="mainclientconfig"
    >
        <import location="SecureWSService.xml" namespace="http://server.glassfish.sddag.ox.ac.uk/"/>
    </definitions>

    This bug still isn't fixed.
    Thank you, adding Glassfish's webservices-rt.jar does fix it.

Maybe you are looking for

  • Replace Special Characters in a String

    Let's say someone copies the folowing list and pastes it into a Javascript prompt box: 302304 305678 245675 How do I manipulate the string so it reads: 302304 305678 245675 In other words, how do I replace the manual line breaks in a string with spac

  • I use Yahoo mail. It requires Java which I cannot activate. must thus use "Clasic" with important features missing.

    Because my Acer computer with Vista crashed twice, I changed from Thunderbird to Yahoo mail <[email protected]> (I live in Canada so why the "uk", I do not know). I upgraded Firefox to version 4. For the past week I am told that I must activate my Ja

  • JComboBox event problem

    Hi , I have JComboBox in my application. I added action listener for this. When I set the values programmatically I don't want the code in the actionperformed to be executed. I can do it indirectly by using boolean flag for this, but I want to know i

  • WHY WONT MY 3RD GENERATION 8GB IPOD TOUCH UPGRADE TO 4.3.3 ?

    I HAVE BEEN TRYING BUT ITUNES DOESNT SEEM TO SHOW THE MESSAGE THAT AN UPDATE IS AVALIABLE FOR YOUR IPOD TOUCH :S

  • IWeb crashing during FTP upload

    I have secured a new host since apple stopped hosting. i put in my FTP info, go back to the menu and choose publish entire site, progress bars come up for about 1 minute, then it crashes, with no memory of my FTP info at relaunch, any ideas???