thanks for reply.
this is my frist time using AXIS. i just follow the steps on AXIS website and wrote the client(which i sent to you).. actually i am a TIBCO developer. so i created a TIBCO process using SOAP (which is server)..
and i am trying to invoke that SOAP services from java client.
here is the WSDL.see below.
do i need to use WSDL to JAVA command? i am totally new..i thought, i just have to write the following java client and provide the endpoint of the WSDL and the services will be invoked..but i don't know what else i need?
your prompt response and help needed..thanks
this is my frist time using AXIS. i just follow the steps on AXIS website and wrote the client(which i sent to you).. actually i am a TIBCO developer. so i created a TIBCO process using SOAP (which is server)..
and i am trying to invoke that SOAP services from java client.
here is the WSDL.see below.
do i need to use WSDL to JAVA command? i am totally new..i thought, i just have to write the following java client and provide the endpoint of the WSDL and the services will be invoked..but i don't know what else i need?
your prompt response and help needed..thanks
---------
<?xml version="1.0" encoding="UTF-8"?>
<!--Created by TIBCO WSDL-->
<wsdl:definitions xmlns:ns0="www.example.com" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://xmlns.example.com/1138118522394/OperationImpl" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="Untitled" targetNamespace="http://xmlns.example.com/1138118522394/OperationImpl">
<wsdl:types>
<xs:schema xmlns="www.example.com" xmlns:xs="http://www.w3.org/2001/XMLSchema" attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="www.example.com">
<xs:element name="WS_REPLY">
<xs:annotation>
<xs:documentation>Generic web service request</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="STATUS" type="xs:string"/>
<xs:element minOccurs="0" name="DATA" type="xs:string">
<xs:annotation>
<xs:documentation>insert the reply XML here</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="WS_REQUEST">
<xs:annotation>
<xs:documentation>Generic web service request</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="SUBJECT" type="xs:string"/>
<xs:element name="DATA" type="xs:string">
<xs:annotation>
<xs:documentation>insert the request XML here</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
</wsdl:types>
<wsdl:message name="Request">
<wsdl:part element="ns0:WS_REQUEST" name="part1"/>
</wsdl:message>
<wsdl:message name="Response">
<wsdl:part element="ns0:WS_REPLY" name="part1"/>
</wsdl:message>
<wsdl:portType name="PortType">
<wsdl:operation name="Operation">
<wsdl:input message="tns:Request"/>
<wsdl:output message="tns:Response"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="SOAPServerBinding" type="tns:PortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="Operation">
<wsdl:documentation>The operation has no documentation</wsdl:documentation>
<soap:operation soapAction="/Processes/Process Definition" style="document"/>
<wsdl:input>
<soap:body parts="part1" use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body parts="part1" use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="SOAPServer">
<wsdl:port binding="tns:SOAPServerBinding" name="SOAPServerHttpPort">
<soap:address location="http://DUSU41009X1:80/Processes/SOAPServer"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Anne Thomas Manes <[EMAIL PROTECTED]> wrote:
WSDL, please?
Did you try compiling a stub from the WSDL?
Anne
On 1/30/06, mm jj <[EMAIL PROTECTED]> wrote:I NEED some help..here is my Java client. i am trying to invoke a webservice(TIBCO) through java clientimport org.apache.axis.client.*;
import javax.xml.rpc.ParameterMode;
import org.apache.axis.encoding.XMLType;
import org.apache.axis.utils.Options;public class FibClient {
public static void main(String[] args) throws Exception {
String endpoint = " http://DUSU41009X1:80/Processes/SOAPServer";
//String endpoint = "http://DUSU41009X1:8080/Processes_sp_Definition ";
String Sub = "SUBJECT";
String Data = "";
Service service = new Service();
Call call = (Call) service.createCall();
call.setTargetEndpointAddress(endpoint);
call.setOperationName("Operation");
call.setProperty(Call.OPERATION_STYLE_PROPERTY, "wrapped");
call.addParameter("op1", XMLType.XSD_STRI NG , ParameterMode.IN);
call.addParameter("op2", XMLType.XSD_STRING, ParameterMode.IN);
call.setReturnType(XMLType.XSD_STRING);
call.setReturnType(XMLType.XSD_STRING);
String ret = (String) call.invoke(new Object[]{Sub, Data});
System.out.println("Got result : " + ret);
}
}i am getting following errors..pls helpinit:
deps-jar:
compile-single:
run-single:
- Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultip art). Attachment support is disabled.
AxisFault
faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Cli ent
faultSubcode:
faultString: No handler for body element
faultActor:
faultNode:
faultDetail:
{}detail:<transportUri> http://DUSU41009X1:80/Processes/SOAPServer</transportUri><soapAction>""</soapAction><element>Operation</element>No handler for body element
at org.apache.axis.message.SOAPFaultBuilder.createFault (SOAPFaultBuilder.java:222)
at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129)
at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java :1087)
&nbs p; at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1712)
at org.apache.crimson.parser.Parser2.content(Parser2.java:1963)
at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1691)
at org.apache.crimson.parser.Parser2.content(Parser2.java:1963)
at org.apache.crimson.parser.Parser2.maybeElement(Parser2.java:1691)
at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java :667)
at org.apache.crimson.parser.Parser2.parse(Parser2.java:337)
at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:448)
at javax.xml.parsers.SAXParser.parse(SAXParser.java:345)
at org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227)
at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java :696)
at org.apache.axis.Message.getSOAPEnvelope(Message.java:435)
at org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62)
at org.apache.axis.client.AxisClient.invoke (AxisClient.java:206)
at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
at org.apache.axis.client.Call.invoke(Call.java:2767)
at org.apache.axis.client.Call.invoke(Call.java:2443)
at org.apache.axis.client.Call.invoke(Call.java:2366)
at org.apache.axis.client.Call.invoke(Call.java:1812)
at FibClient.main(FibClient.java :24)
Exception in thread "main"
Java Result: 1
BUILD SUCCESSFUL (total time: 2 seconds)
Bring words and photos together (easily) with
PhotoMail - it's free and works with Yahoo! Mail.
Yahoo! Autos. Looking for a sweet ride? Get pricing, reviews, & more on new and used cars.