Package org.apache.axis.message.addressing

Examples of org.apache.axis.message.addressing.AttributedQName


   throws MalformedURIException,
          RegistrationFailureException
   {
      m_isSingleton             = false;
      m_simulatedEndpointRef    = new EndpointReference( new URI( "http://unittest.apache.org/wsdm/unittest" ) );
      m_simulatedEndpointRef.setPortType( new AttributedQName( "", "UNIT_TEST_PORT" ) );
      ServiceNameType snt = new ServiceNameType( "UNIT_TEST_PORT", "UNIT_TEST_SERVICE" );
      snt.setPort( "UNIT_TEST_PORT" );
      m_simulatedEndpointRef.setServiceName( snt );
      m_simulatedId = "UNIT_TEST_RESOURCE_ID_1234";
      m_manager.register( this );
View Full Code Here


   throws MalformedURIException,
          RegistrationFailureException
   {
      m_isSingleton             = true;
      m_simulatedEndpointRef    = new EndpointReference( new URI( "http://unittest.apache.org/wsdm/unittest" ) );
      m_simulatedEndpointRef.setPortType( new AttributedQName( "", "UNIT_TEST_PORT" ) );
      ServiceNameType snt = new ServiceNameType( "UNIT_TEST_PORT", "UNIT_TEST_SERVICE" );
      snt.setPort( "UNIT_TEST_PORT" );
      m_simulatedEndpointRef.setServiceName( snt );
      m_simulatedId = null;
      m_manager.register( this );
View Full Code Here

TOP

Related Classes of org.apache.axis.message.addressing.AttributedQName

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.