[JBossWS] - abstract operation
by scottmh
Hi. I am trying to wsconsume the following wsdl.
I am getting the error:
abstract operation "retrieveFinalTradeSet" binding, part "finalTradeSet_attachment" has multiple binding.
Can anyone tell me what is wrong? It looks valid and other tools (ie. axis) seem able to consume it.
Any guidance would be appreciated. Thanks.
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsi="http://ws-i.org/schemas/conformanceClaim/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
targetNamespace="http://www.somewhere.com/soa/2008-08-09/retrieveFinalTradeSet.wsdl"
xmlns:tns="http://www.somewhere.com/soa/2008-08-09/retrieveFinalTradeSet.wsdl"
xmlns:schemaInfor="http://www.somewhere.com/soa/2008-08-09/FinalTradeSet.xsd"
xmlns:typeIn="http://www.somewhere.com/soa/2007-02-09/RequestFinalTradeSet.xsd"
xmlns:typeHeader="http://www.somewhere.com/soa/2006-06-13/StandardAttachmentInfor.xsd"
xmlns:typeFault="http://www.somewhere.com/soa/2006-06-13/StandardOutput.xsd">
<wsdl:documentation>
A web service to retrieve final trade set
</wsdl:documentation>
<!-- type elements define data types used in this wsdl document using xml schema -->
<!-- note the namespaces defined matched up with the typeIn and typeOut defined above -->
<wsdl:types>
<xs:schema xmlns:m="http://www.somewhere.com/soa/2006-06-13/StandardAttachmentInfor.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.somewhere.com/soa/2006-06-13/StandardAttachmentInfor.xsd" elementFormDefault="qualified">
<xs:element name="standardAttachmentInfor" type="m:standardAttachmentInfor"/>
<xs:complexType name="standardAttachmentInfor">
<xs:sequence>
<xs:element name="Attachment" type="m:Attachment" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Attachment">
<xs:sequence>
<xs:element name="id" type="xs:string" minOccurs="0"/>
<xs:element name="name" type="xs:string" minOccurs="0"/>
<xs:element name="description" type="xs:string" minOccurs="0"/>
<xs:element name="version" type="xs:string" minOccurs="0"/>
<xs:element name="sequenceNumber" type="xs:string" minOccurs="0"/>
<xs:element name="type" type="xs:string" minOccurs="0"/>
<xs:element name="size" type="xs:string" minOccurs="0"/>
<xs:element name="source" type="xs:string" minOccurs="0"/>
<xs:element name="tool" type="xs:string" minOccurs="0"/>
<xs:element name="creationTime" type="xs:dateTime" minOccurs="0"/>
<xs:element name="compressFlag" type="m:compressFlag" minOccurs="0"/>
<xs:element name="compressMethod" type="xs:string" minOccurs="0"/>
<xs:element name="AttributeList" type="m:AttributeList" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="compressFlag">
<xs:restriction base="xs:string">
<xs:enumeration value="yes"/>
<xs:enumeration value="no"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="AttributeList">
<xs:sequence>
<xs:element name="Sequence" type="xs:string" minOccurs="0"/>
<xs:element name="Name" type="xs:string" minOccurs="0"/>
<xs:element name="Value" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
<xs:schema xmlns="http://www.somewhere.com/soa/2007-02-09/RequestFinalTradeSet.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.somewhere.com/soa/2007-02-09/RequestFinalTradeSet.xsd" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="RequestFinalTradeSet" type="RequestFinalTradeSet"/>
<xs:complexType name="RequestFinalTradeSet">
<xs:choice>
<xs:element name="Trade_MarketTimeInterval" type="Trade_MarketTimeInterval" minOccurs="0"/>
<xs:element name="Trade_TradeIDMarketTimeInterval" type="Trade_TradeIDMarketTimeInterval" minOccurs="0"/>
</xs:choice>
</xs:complexType>
<xs:simpleType name="MarketType">
<xs:restriction base="xs:string">
<xs:enumeration value="DAM"/>
<xs:enumeration value="RTM"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="Trade_MarketTimeInterval">
<xs:sequence>
<xs:element name="MarketStartTime" type="xs:dateTime"/>
<xs:element name="MarketEndTime" type="xs:dateTime"/>
<xs:element name="marketType" type="MarketType"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Trade_TradeIDMarketTimeInterval">
<xs:sequence>
<xs:element name="TradeID" type="xs:string" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
<xs:schema xmlns:m="http://www.somewhere.com/soa/2006-06-13/StandardOutput.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.somewhere.com/soa/2006-06-13/StandardOutput.xsd" elementFormDefault="qualified">
<xs:element name="outputDataType" type="m:outputDataType"/>
<xs:complexType name="outputDataType">
<xs:sequence>
<xs:element name="EventLog" type="m:EventLog" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="EventLog">
<xs:sequence>
<xs:element name="id" type="xs:string" minOccurs="0"/>
<xs:element name="name" type="xs:string" minOccurs="0"/>
<xs:element name="description" type="xs:string" minOccurs="0"/>
<xs:element name="type" type="xs:string" minOccurs="0"/>
<xs:element name="creationTime" type="xs:dateTime" minOccurs="0"/>
<xs:element name="collectionType" type="xs:string" minOccurs="0"/>
<xs:element name="collectionQuantity" type="xs:string" minOccurs="0"/>
<xs:element name="Event" type="m:Event" maxOccurs="unbounded"/>
<xs:element name="Service" type="m:Service" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Event">
<xs:sequence>
<xs:element name="result" type="xs:string"/>
<xs:element name="id" type="xs:string" minOccurs="0"/>
<xs:element name="name" type="xs:string" minOccurs="0"/>
<xs:element name="description" type="xs:string" minOccurs="0"/>
<xs:element name="creationTime" type="xs:dateTime" minOccurs="0"/>
<xs:element name="severity" type="xs:string" minOccurs="0"/>
<xs:element name="priority" type="xs:string" minOccurs="0"/>
<xs:element name="sequenceNumber" type="xs:string" minOccurs="0"/>
<xs:element name="eventType" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Service">
<xs:sequence>
<xs:element name="id" type="xs:string"/>
<xs:element name="name" type="xs:string"/>
<xs:element name="description" type="xs:string"/>
<xs:element name="comments" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</wsdl:types>
<!-- message elements define input and output parameters -->
<!-- a request and response case to use the data type defined in TYPE for payload -->
<wsdl:message name="retrieveFinalTradeSetHeader">
<!-- attachment wrapper -->
<wsdl:part name="standardAttachmentInfor" element="typeHeader:standardAttachmentInfor">
<wsdl:documentation>attachment information</wsdl:documentation>
</wsdl:part>
</wsdl:message>
<wsdl:message name="retrieveFinalTradeSetRequest">
<wsdl:part name="requestData" type="typeIn:RequestFinalTradeSet">
<wsdl:documentation>send request date</wsdl:documentation>
</wsdl:part>
</wsdl:message>
<wsdl:message name="retrieveFinalTradeSetResponse">
<wsdl:part name="finalTradeSet_attachment" type="xs:base64Binary">
<wsdl:documentation>return final trade set</wsdl:documentation>
</wsdl:part>
</wsdl:message>
<wsdl:message name="faultReturnType">
<wsdl:part name="faultReturn" element="typeFault:outputDataType">
<wsdl:documentation>fault information</wsdl:documentation>
</wsdl:part>
</wsdl:message>
<!-- portType elements define the abstract interface of a web service -->
<!-- to use the message type defined in message above -->
<wsdl:portType name="retrieveFinalTradeSet">
<wsdl:operation name="retrieveFinalTradeSet">
<wsdl:documentation>retrieve final trade set</wsdl:documentation>
<wsdl:input message="tns:retrieveFinalTradeSetRequest" />
<wsdl:output message="tns:retrieveFinalTradeSetResponse" />
<wsdl:fault name="faultReturn" message="tns:faultReturnType" />
</wsdl:operation>
</wsdl:portType>
<!-- binding elements define protocols and encoding styles -->
<!-- to bind the operation defined in portType -->
<wsdl:binding name="retrieveFinalTradeSet_Binding" type="tns:retrieveFinalTradeSet">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="retrieveFinalTradeSet">
<soap:operation style="rpc"
soapAction="http://www.somewhere.com/soa/2008-08-09/retrieveFinalTradeSet"/>
<wsdl:input>
<soap:body use="literal" namespace="http://www.somewhere.com/soa/2008-08-09/retrieveFinalTradeSet"/>
</wsdl:input>
<wsdl:output>
<mime:multipartRelated>
<mime:part>
<soap:body use="literal" namespace="http://www.somewhere.com/soa/2008-08-09/retrieveFinalTradeSet"/>
</mime:part>
<mime:part>
<mime:content part="finalTradeSet_attachment"
type="application/octetstream"/>
</mime:part>
</mime:multipartRelated>
<soap:header message="tns:retrieveFinalTradeSetHeader"
part="standardAttachmentInfor" use="literal" wsdl:required="true"/>
</wsdl:output>
<wsdl:fault name="faultReturn">
<soap:fault name="faultReturn" use="literal"/>
</wsdl:fault>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="retrieveFinalTradeSetService">
<wsdl:port name="retrieveFinalTradeSetServicePort" binding="tns:retrieveFinalTradeSet_Binding">
<soap:address location="http://www.somewhere.com/soa/2008-08-09/retrieveFinalTradeSet"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4221156#4221156
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4221156
15 years, 11 months
[JBossWS] - Re: WS-Addressing in native stack
by mobaxkrs
Thank God. It worked..
1. Used wsconsume.sh from another version of jboss
mobicents-all-1.2.0.CR3-jboss-4.2.3.GA-0812022325
2. Included all jars that you referred in the compile command.
3. Added wsdl4j.jar, xercesImpl.jar
The sample worked!! With web service trace enabled, i get the log
2009-03-25 18:15:17,684 TRACE [org.jboss.ws.core.MessageTrace] Incoming Request Message
<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>
<env:Header xmlns:wsa='http://www.w3.org/2005/08/addressing'>
<wsa:Action>helloWorld</wsa:Action>
</env:Header>
<env:Body>
<ns1:helloWorld xmlns:ns1='http://www.jboss.org/jbossws/ws-extensions/wsaddressing'>
KRS, Great Job
</ns1:helloWorld>
</env:Body>
</env:Envelope>
2009-03-25 18:15:17,694 TRACE [org.jboss.ws.core.MessageTrace] Outgoing Response Message
<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'>
<env:Header xmlns:wsa='http://www.w3.org/2005/08/addressing'>
<wsa:To>http://www.w3.org/2005/08/addressing/anonymous</wsa:To>
<wsa:Action>http://www.jboss.org/jbossws/ws-extensions/wsaddressing/SampleWebServiceP...</wsa:Action>
</env:Header>
<env:Body>
<ns2:helloWorldResponse xmlns:ns2='http://www.jboss.org/jbossws/ws-extensions/wsaddressing'>
Hello Welcome, KRS, Great Job
</ns2:helloWorldResponse>
</env:Body>
</env:Envelope>
Thanks a lot.. Richard
Now, next step is provide an id to identify the request and get the id in response.
Also, if i could work out a POC for Records Management Framework, that would be great.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4220901#4220901
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4220901
15 years, 11 months
[JBossWS] - Re: WS-Addressing in native stack
by mobaxkrs
In ant.properties, i changed
jbossws.integration.target=jboss423
# The JBoss settings
jboss.server.instance=default
jboss.bind.address=200.201.202.159
and run the tests
below is portion of log
2009-03-25 15:10:34,174 DEBUG [sun.rmi.loader:65] main: name = "org.jnp.server.NamingServer_Stub", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,183 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.server.RemoteStub", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,191 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.server.RemoteObject", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,219 DEBUG [sun.rmi.transport.tcp:65] main: localHostKnown = false, localHost = 127.0.0.1
2009-03-25 15:10:34,274 DEBUG [sun.rmi.client.ref:65] main: get connection
2009-03-25 15:10:34,275 DEBUG [sun.rmi.transport.tcp:65] main: Version = 2, ep = [127.0.0.1:0]
2009-03-25 15:10:34,277 DEBUG [sun.rmi.transport.tcp:65] main: created local endpoint for socket factory null on port 0
2009-03-25 15:10:34,279 DEBUG [sun.rmi.transport.tcp:65] main: create connection
2009-03-25 15:10:34,280 DEBUG [sun.rmi.transport.tcp.proxy:65] main: host: 200.201.202.159, port: 1098
2009-03-25 15:10:34,285 DEBUG [sun.rmi.transport.tcp:65] main: local host set to 200.201.202.159
2009-03-25 15:10:34,308 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.dgc.Lease", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,310 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.dgc.VMID", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,312 DEBUG [sun.rmi.loader:65] main: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,314 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.server.UID", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,316 DEBUG [sun.rmi.client.ref:65] main: free connection (reuse = true)
2009-03-25 15:10:34,320 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:34,322 DEBUG [sun.rmi.transport.tcp:65] main: create reaper
2009-03-25 15:10:34,326 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:34,340 DEBUG [sun.rmi.loader:65] main: name = "org.jnp.interfaces.MarshalledValuePair", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,344 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.MarshalledObject", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,348 DEBUG [sun.rmi.loader:65] main: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,349 DEBUG [sun.rmi.client.ref:65] main: free connection (reuse = true)
2009-03-25 15:10:34,350 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:34,351 DEBUG [sun.rmi.loader:65] main: interfaces = [org.jboss.jmx.adaptor.rmi.RMIAdaptor, org.jboss.jmx.adaptor.rmi.RMIAdaptorExt], codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,401 DEBUG [sun.rmi.loader:65] main: name = "java.lang.reflect.Proxy", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,416 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.proxy.ClientContainer", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,423 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.proxy.ClientMethodInterceptor", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,426 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.proxy.Interceptor", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,434 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.proxy.SecurityInterceptor", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,437 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.jmx.connector.invoker.client.InvokerAdaptorClientInterceptor", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,464 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.invocation.InvokerInterceptor", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,520 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.util.id.GUID", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,525 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.util.id.UID", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,528 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.util.id.VMID", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,534 DEBUG [sun.rmi.loader:65] main: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,536 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.util.platform.PID", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,541 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.invocation.InvocationContext", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,544 DEBUG [sun.rmi.loader:65] main: name = "java.util.HashMap", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,547 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.invocation.InvocationKey", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,551 DEBUG [sun.rmi.loader:65] main: name = "java.lang.Integer", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,553 DEBUG [sun.rmi.loader:65] main: name = "java.lang.Number", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,559 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,570 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.invocation.jrmp.server.JRMPInvoker_Stub", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,573 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.server.RemoteStub", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,579 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.server.RemoteObject", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,584 DEBUG [sun.rmi.client.ref:65] main: get connection
2009-03-25 15:10:34,585 DEBUG [sun.rmi.transport.tcp:65] main: create connection
2009-03-25 15:10:34,587 DEBUG [sun.rmi.transport.tcp.proxy:65] main: host: 200.201.202.159, port: 4444
2009-03-25 15:10:34,603 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.dgc.Lease", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,605 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.dgc.VMID", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,607 DEBUG [sun.rmi.loader:65] main: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,611 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.server.UID", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,613 DEBUG [sun.rmi.client.ref:65] main: free connection (reuse = true)
2009-03-25 15:10:34,614 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:34,616 DEBUG [sun.rmi.transport.tcp:65] main: create reaper
2009-03-25 15:10:34,638 DEBUG [org.jboss.security.SecurityAssociation:143] Using ThreadLocal: false
2009-03-25 15:10:34,649 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:34,673 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.MarshalledObject", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,675 DEBUG [sun.rmi.loader:65] main: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:34,676 DEBUG [sun.rmi.client.ref:65] main: free connection (reuse = true)
2009-03-25 15:10:34,676 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:34,677 DEBUG [org.jboss.wsf.test.JBossWSTestSetup:109] Integration target: jboss423
2009-03-25 15:10:34,692 DEBUG [org.jboss.wsf.framework.DefaultSPIProvider:69] provide SPI 'class org.jboss.wsf.spi.invocation.SecurityAdaptorFactory'
2009-03-25 15:10:34,707 DEBUG [org.jboss.wsf.framework.DefaultSPIProvider:147] class org.jboss.wsf.spi.invocation.SecurityAdaptorFactory Implementation: org.jboss.wsf.container.jboss42.SecurityAdapterFactoryImpl@11bed71
2009-03-25 15:10:34,709 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:35,244 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.jmx.connector.invoker.client.InvokerAdaptorException", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,246 DEBUG [sun.rmi.loader:65] main: name = "java.lang.Exception", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,247 DEBUG [sun.rmi.loader:65] main: name = "java.lang.Throwable", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,258 DEBUG [sun.rmi.loader:65] main: name = "[Ljava.lang.StackTraceElement;", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,265 DEBUG [sun.rmi.loader:65] main: name = "java.lang.StackTraceElement", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,271 DEBUG [sun.rmi.loader:65] main: name = "javax.management.MBeanException", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,272 DEBUG [sun.rmi.loader:65] main: name = "javax.management.JMException", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,280 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.deployment.DeploymentException", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,286 DEBUG [sun.rmi.loader:65] main: name = "org.jboss.util.NestedException", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,296 DEBUG [sun.rmi.loader:65] main: name = "javax.xml.ws.WebServiceException", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,298 DEBUG [sun.rmi.loader:65] main: name = "java.lang.RuntimeException", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,308 DEBUG [sun.rmi.client.call:65] main: outbound call received exception: [200.201.202.159:4444] exception:
org.jboss.jmx.connector.invoker.client.InvokerAdaptorException
at org.jboss.jmx.connector.invoker.InvokerAdaptorService.invoke(InvokerAdaptorService.java:291)
at sun.reflect.GeneratedMethodAccessor129.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
at org.jboss.jmx.connector.invoker.SerializableInterceptor.invoke(SerializableInterceptor.java:74)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.invocation.jrmp.server.JRMPProxyFactory.invoke(JRMPProxyFactory.java:179)
at sun.reflect.GeneratedMethodAccessor128.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.invocation.jrmp.server.JRMPInvoker$MBeanServerAction.invoke(JRMPInvoker.java:818)
at org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:419)
at sun.reflect.GeneratedMethodAccessor127.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:294)
at sun.rmi.transport.Transport$1.run(Transport.java:153)
at java.security.AccessController.doPrivileged(Native Method)
at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
at java.lang.Thread.run(Thread.java:595)
at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:126)
at org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invoke(Unknown Source)
at org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.invoke(JRMPInvokerProxy.java:133)
at org.jboss.invocation.InvokerInterceptor.invokeInvoker(InvokerInterceptor.java:365)
at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:197)
at org.jboss.jmx.connector.invoker.client.InvokerAdaptorClientInterceptor.invoke(InvokerAdaptorClientInterceptor.java:66)
at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:70)
at org.jboss.proxy.ClientMethodInterceptor.invoke(ClientMethodInterceptor.java:74)
at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:100)
at $Proxy0.invoke(Unknown Source)
at org.jboss.wsf.test.TestDeployerJBoss.invokeMainDeployer(TestDeployerJBoss.java:90)
at org.jboss.wsf.test.TestDeployerJBoss.deploy(TestDeployerJBoss.java:65)
at org.jboss.wsf.test.JBossWSTestHelper.deploy(JBossWSTestHelper.java:67)
at org.jboss.wsf.test.JBossWSTestSetup.setUp(JBossWSTestSetup.java:117)
at junit.extensions.TestSetup$1.protect(TestSetup.java:18)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.extensions.TestSetup.run(TestSetup.java:23)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.run(JUnitTestRunner.java:420)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.launch(JUnitTestRunner.java:911)
at org.apache.tools.ant.taskdefs.optional.junit.JUnitTestRunner.main(JUnitTestRunner.java:768)
2009-03-25 15:10:35,314 DEBUG [sun.rmi.client.ref:65] main: free connection (reuse = true)
2009-03-25 15:10:35,314 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:35,335 DEBUG [org.jboss.util.NestedThrowable:140] org.jboss.util.NestedThrowable.parentTraceEnabled=true
2009-03-25 15:10:35,341 DEBUG [org.jboss.util.NestedThrowable:140] org.jboss.util.NestedThrowable.nestedTraceEnabled=false
2009-03-25 15:10:35,342 DEBUG [org.jboss.util.NestedThrowable:140] org.jboss.util.NestedThrowable.detectDuplicateNesting=true
2009-03-25 15:10:35,378 DEBUG [org.jboss.wsf.framework.DefaultSPIProvider:69] provide SPI 'class org.jboss.wsf.spi.invocation.SecurityAdaptorFactory'
2009-03-25 15:10:35,379 DEBUG [org.jboss.wsf.framework.DefaultSPIProvider:147] class org.jboss.wsf.spi.invocation.SecurityAdaptorFactory Implementation: org.jboss.wsf.container.jboss42.SecurityAdapterFactoryImpl@542529
2009-03-25 15:10:35,380 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:35,403 DEBUG [sun.rmi.loader:65] main: name = "java.rmi.MarshalledObject", codebase = "http://200.201.202.159:8083/", defaultLoader = sun.misc.Launcher$AppClassLoader@17943a4
2009-03-25 15:10:35,404 DEBUG [sun.rmi.client.ref:65] main: free connection (reuse = true)
2009-03-25 15:10:35,405 DEBUG [sun.rmi.transport.tcp:65] main: reuse connection
2009-03-25 15:10:35,496 DEBUG [org.jboss.ws.metadata.builder.jaxws.JAXWSWebServiceMetaDataBuilder:75] START buildMetaData: [service={http://org.jboss.ws/jaxws/context}EndpointService]
2009-03-25 15:10:35,584 DEBUG [org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory:100] parse: http://200.201.202.159:8080/jaxws-samples-context?wsdl
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4220843#4220843
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4220843
15 years, 11 months