dblevins    2004/12/22 00:42:40

  Added:       modules/openejb-builder/src/test-ejb-jar/META-INF/wsdl
                        test-ejb.wsdl test-ejb.xml
  Log:

  Basic soap rpc/encoded deployment and container support along with a general 
revamping of the networkservice stacks.
  
  Revision  Changes    Path
  1.1                  
openejb/modules/openejb-builder/src/test-ejb-jar/META-INF/wsdl/test-ejb.wsdl
  
  Index: test-ejb.wsdl
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  
  <definitions name="SimpleService" 
targetNamespace="http://openejb.org/test-ejb-jar";
      xmlns:test="http://openejb.org/test-ejb-jar";
      xmlns="http://schemas.xmlsoap.org/wsdl/";
      xmlns:xsd="http://www.w3.org/2001/XMLSchema";
      xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";>
  
      <types/>
  
      <message name="echoRequest">
          <part name="String_1" type="xsd:string"/>
      </message>
      <message name="echoResponse">
          <part name="result" type="xsd:string"/>
      </message>
  
      <portType name="Simple">
          <operation name="echo" parameterOrder="String_1">
              <input message="test:echoRequest"/>
              <output message="test:echoResponse"/>
          </operation>
      </portType>
  
      <binding name="SimpleBinding" type="test:Simple">
          <soap:binding transport="http://schemas.xmlsoap.org/soap/http"; 
style="rpc"/>
          <operation name="echo">
              <soap:operation soapAction=""/>
              <input>
                  <soap:body 
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; use="encoded" 
namespace="http://openejb.org/test-ejb-jar"/>
              </input>
              <output>
                  <soap:body 
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; use="encoded" 
namespace="http://openejb.org/test-ejb-jar"/>
              </output>
          </operation>
      </binding>
  
      <service name="SimpleService">
          <port name="SimplePort" binding="test:SimpleBinding">
              <soap:address location="http://localhost:8000/services/Simple"/>
          </port>
      </service>
  </definitions>
  
  
  
  1.1                  
openejb/modules/openejb-builder/src/test-ejb-jar/META-INF/wsdl/test-ejb.xml
  
  Index: test-ejb.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <java-wsdl-mapping xmlns="http://java.sun.com/xml/ns/j2ee";
                     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
                     xmlns:wsdl="http://Hello.org";
                     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
http://www.ibm.com/webservices/xsd/j2ee_jaxrpc_mapping_1_1.xsd";
                     version="1.1">
  
    <package-mapping>
      <package-type>org.openejb.test.simple.slsb</package-type>
      <namespaceURI>http://openejb.org/test-ejb-jar</namespaceURI>
    </package-mapping>
  </java-wsdl-mapping>
  
  
  

Reply via email to