[Nsi-wg] NSA Dev: JAX-WS generation

John MacAuley john.macauley at surfnet.nl
Wed Aug 31 09:17:49 CDT 2011


Implementors,

Is anyone else generating their web services using JAX-WS?  I generated this stub through netbeans and think the queryConfirmed and queryFailed methods are incorrect.  Should these not being returning "GenericAcknowledgmentType" instead of void?  Just want to make sure I have not missed anything.

Thanks,
John.

@WebService(serviceName = "ConnectionServiceProvider", portName = "ConnectionServiceProviderPort", endpointInterface = "org.ogf.schemas.nsi._2011._07.connection.provider.ConnectionProviderPort", targetNamespace = "http://schemas.ogf.org/nsi/2011/07/connection/provider", wsdlLocation = "WEB-INF/wsdl/ConnectionServiceProvider/ogf_nsi_connection_provider_v1_0.wsdl")
public class ConnectionServiceProvider {

    public org.ogf.schemas.nsi._2011._07.connection._interface.GenericAcknowledgmentType reservation(org.ogf.schemas.nsi._2011._07.connection._interface.ReservationRequestType parameters) throws org.ogf.schemas.nsi._2011._07.connection.provider.NSIServiceException {
        //TODO implement this method
        throw new UnsupportedOperationException("Not implemented yet.");
    }

    public org.ogf.schemas.nsi._2011._07.connection._interface.GenericAcknowledgmentType provision(org.ogf.schemas.nsi._2011._07.connection._interface.ProvisionRequestType parameters) throws org.ogf.schemas.nsi._2011._07.connection.provider.NSIServiceException {
        //TODO implement this method
        throw new UnsupportedOperationException("Not implemented yet.");
    }

    public org.ogf.schemas.nsi._2011._07.connection._interface.GenericAcknowledgmentType release(org.ogf.schemas.nsi._2011._07.connection._interface.ReleaseRequestType parameters) throws org.ogf.schemas.nsi._2011._07.connection.provider.NSIServiceException {
        //TODO implement this method
        throw new UnsupportedOperationException("Not implemented yet.");
    }

    public org.ogf.schemas.nsi._2011._07.connection._interface.GenericAcknowledgmentType terminate(org.ogf.schemas.nsi._2011._07.connection._interface.TerminateRequestType parameters) throws org.ogf.schemas.nsi._2011._07.connection.provider.NSIServiceException {
        //TODO implement this method
        throw new UnsupportedOperationException("Not implemented yet.");
    }

    public org.ogf.schemas.nsi._2011._07.connection._interface.GenericAcknowledgmentType query(org.ogf.schemas.nsi._2011._07.connection._interface.QueryRequestType parameters) throws org.ogf.schemas.nsi._2011._07.connection.provider.NSIServiceException {
        //TODO implement this method
        throw new UnsupportedOperationException("Not implemented yet.");
    }

    public void queryConfirmed(javax.xml.ws.Holder<java.lang.String> correlationId, org.ogf.schemas.nsi._2011._07.connection.types.QueryConfirmedType queryConfirmed) throws org.ogf.schemas.nsi._2011._07.connection.provider.NSIServiceException {
        //TODO implement this method
        throw new UnsupportedOperationException("Not implemented yet.");
    }

    public void queryFailed(javax.xml.ws.Holder<java.lang.String> correlationId, org.ogf.schemas.nsi._2011._07.connection.types.QueryFailedType queryFailed) throws org.ogf.schemas.nsi._2011._07.connection.provider.NSIServiceException {
        //TODO implement this method
        throw new UnsupportedOperationException("Not implemented yet.");
    }

}



More information about the nsi-wg mailing list