473,385 Members | 1,325 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

difference in wsdl prevents DataBean

hi.. i have a small Web Service which is consumed by dotnet application

the webservice is located in 2 places. the first is my local tomcat,
and the second is in websphere server.

problems is that if i generate a proxy from the wsdl in websphere, i
can't get the databean if refer the proxy's url my tomcat's (i simply
recive null).

this is my tomcats's wsdl:

<?xml version="1.0" encoding="UTF-8" ?>
- <wsdl:definitions
targetNamespace="http://localhost:8080/axis/services/PMRCUpdate"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:apachesoap="http://xml.apache.org/xml-soap"
xmlns:impl="http://localhost:8080/axis/services/PMRCUpdate"
xmlns:intf="http://localhost:8080/axis/services/PMRCUpdate"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:tns1="ReturnedDataBeanns"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <wsdl:types>
- <schema targetNamespace="ReturnedDataBeanns"
xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
- <complexType name="ReturnedDataBean">
- <sequence>
<element name="code" type="xsd:long" />
<element name="message" nillable="true" type="xsd:string" />
<element name="type" type="xsd:int" />
</sequence>
</complexType>
</schema>
</wsdl:types>
- <wsdl:message name="updatePMRCResponse">
<wsdl:part name="updatePMRCReturn" type="tns1:ReturnedDataBean" />
</wsdl:message>
- <wsdl:message name="updatePMRCByKovetzResponse">
<wsdl:part name="updatePMRCByKovetzReturn"
type="tns1:ReturnedDataBean" />
</wsdl:message>
- <wsdl:message name="updatePMRCByKovetzRequest">
<wsdl:part name="updateSystem" type="xsd:string" />
<wsdl:part name="MS_HAVILA" type="xsd:int" />
<wsdl:part name="pmRc" type="xsd:int" />
<wsdl:part name="SHEM_KOVETZ" type="xsd:string" />
</wsdl:message>
- <wsdl:message name="updatePMRCRequest">
<wsdl:part name="updateSystem" type="xsd:string" />
<wsdl:part name="MS_HAVILA" type="xsd:int" />
<wsdl:part name="pmRc" type="xsd:int" />
</wsdl:message>
- <wsdl:portType name="PMRCUpdate">
- <wsdl:operation name="updatePMRC" parameterOrder="updateSystem
MS_HAVILA pmRc">
<wsdl:input message="impl:updatePMRCRequest" name="updatePMRCRequest"
/>
<wsdl:output message="impl:updatePMRCResponse"
name="updatePMRCResponse" />
</wsdl:operation>
- <wsdl:operation name="updatePMRCByKovetz"
parameterOrder="updateSystem MS_HAVILA pmRc SHEM_KOVETZ">
<wsdl:input message="impl:updatePMRCByKovetzRequest"
name="updatePMRCByKovetzRequest" />
<wsdl:output message="impl:updatePMRCByKovetzResponse"
name="updatePMRCByKovetzResponse" />
</wsdl:operation>
</wsdl:portType>
- <wsdl:binding name="PMRCUpdateSoapBinding" type="impl:PMRCUpdate">
<wsdlsoap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="updatePMRC">
<wsdlsoap:operation soapAction="" />
- <wsdl:input name="updatePMRCRequest">
<wsdlsoap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://logic.pmrc" use="encoded" />
</wsdl:input>
- <wsdl:output name="updatePMRCResponse">
<wsdlsoap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://localhost:8080/axis/services/PMRCUpdate"
use="encoded" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="updatePMRCByKovetz">
<wsdlsoap:operation soapAction="" />
- <wsdl:input name="updatePMRCByKovetzRequest">
<wsdlsoap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://logic.pmrc" use="encoded" />
</wsdl:input>
- <wsdl:output name="updatePMRCByKovetzResponse">
<wsdlsoap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="http://localhost:8080/axis/services/PMRCUpdate"
use="encoded" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:service name="PMRCUpdateService">
- <wsdl:port binding="impl:PMRCUpdateSoapBinding" name="PMRCUpdate">
<wsdlsoap:address
location="http://localhost:8080/axis/services/PMRCUpdate" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

this is websphere's wsdl:

<?xml version="1.0" encoding="UTF-8" ?>
- <wsdl:definitions targetNamespace="http://logic.pmrc"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:apachesoap="http://xml.apache.org/xml-soap"
xmlns:impl="http://logic.pmrc" xmlns:intf="http://logic.pmrc"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <wsdl:types>
- <schema elementFormDefault="qualified"
targetNamespace="http://logic.pmrc"
xmlns="http://www.w3.org/2001/XMLSchema">
- <element name="updatePMRC">
- <complexType>
- <sequence>
<element name="updateSystem" nillable="true" type="xsd:string" />
<element name="MS_HAVILA" type="xsd:int" />
<element name="pmRc" type="xsd:int" />
</sequence>
</complexType>
</element>
- <complexType name="ReturnedDataBean">
- <sequence>
<element name="code" type="xsd:long" />
<element name="message" nillable="true" type="xsd:string" />
<element name="type" type="xsd:int" />
</sequence>
</complexType>
- <element name="updatePMRCResponse">
- <complexType>
- <sequence>
<element name="updatePMRCReturn" nillable="true"
type="impl:ReturnedDataBean" />
</sequence>
</complexType>
</element>
- <element name="updatePMRCByKovetz">
- <complexType>
- <sequence>
<element name="updateSystem" nillable="true" type="xsd:string" />
<element name="MS_HAVILA" type="xsd:int" />
<element name="pmRc" type="xsd:int" />
<element name="SHEM_KOVETZ" nillable="true" type="xsd:string" />
</sequence>
</complexType>
</element>
- <element name="updatePMRCByKovetzResponse">
- <complexType>
- <sequence>
<element name="updatePMRCByKovetzReturn" nillable="true"
type="impl:ReturnedDataBean" />
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
- <wsdl:message name="updatePMRCResponse">
<wsdl:part element="intf:updatePMRCResponse" name="parameters" />
</wsdl:message>
- <wsdl:message name="updatePMRCByKovetzRequest">
<wsdl:part element="intf:updatePMRCByKovetz" name="parameters" />
</wsdl:message>
- <wsdl:message name="updatePMRCByKovetzResponse">
<wsdl:part element="intf:updatePMRCByKovetzResponse"
name="parameters" />
</wsdl:message>
- <wsdl:message name="updatePMRCRequest">
<wsdl:part element="intf:updatePMRC" name="parameters" />
</wsdl:message>
- <wsdl:portType name="PMRCUpdate">
- <wsdl:operation name="updatePMRC">
<wsdl:input message="intf:updatePMRCRequest" name="updatePMRCRequest"
/>
<wsdl:output message="intf:updatePMRCResponse"
name="updatePMRCResponse" />
</wsdl:operation>
- <wsdl:operation name="updatePMRCByKovetz">
<wsdl:input message="intf:updatePMRCByKovetzRequest"
name="updatePMRCByKovetzRequest" />
<wsdl:output message="intf:updatePMRCByKovetzResponse"
name="updatePMRCByKovetzResponse" />
</wsdl:operation>
</wsdl:portType>
- <wsdl:binding name="PMRCUpdateSoapBinding" type="intf:PMRCUpdate">
<wsdlsoap:binding style="document"
transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="updatePMRC">
<wsdlsoap:operation soapAction="" />
- <wsdl:input name="updatePMRCRequest">
<wsdlsoap:body use="literal" />
</wsdl:input>
- <wsdl:output name="updatePMRCResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
</wsdl:operation>
- <wsdl:operation name="updatePMRCByKovetz">
<wsdlsoap:operation soapAction="" />
- <wsdl:input name="updatePMRCByKovetzRequest">
<wsdlsoap:body use="literal" />
</wsdl:input>
- <wsdl:output name="updatePMRCByKovetzResponse">
<wsdlsoap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
- <wsdl:service name="PMRCUpdateService">
- <wsdl:port binding="intf:PMRCUpdateSoapBinding" name="PMRCUpdate">
<wsdlsoap:address
location="http://bprdvlp:9080/BPR_WebServices/services/PMRCUpdate" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

Nov 23 '05 #1
0 1660

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

24
by: Generic Usenet Account | last post by:
Does anyone have an opinion on how IDL and WSDL compare to each other? Are they equally powerful in their "expressive power"? Sometimes it appears to me that IDL is a little easier for humans to...
5
by: relaxedrob | last post by:
Hi All! I ran the following w3c example through my WSDL parser (SOA Editor from Cape Clear): http://www.w3.org/TR/wsdl#_rpcexample It told me that there were a bunch of erros about no...
1
by: ffhansix | last post by:
Hi, I am having problems with generating a c# proxy class from a IBM websphere WSDL file, when running the wsdl.exe to create the c# proxy file command i recieve an error: Warning: one or...
0
by: saish | last post by:
Hello I am new to vb.net webservice. My requirement is to design a VB.net web service which will send and receive xml documents. The xml document send and received would be a very complex .xsd...
6
by: Naveed Anwar | last post by:
how a tcp server running on given uri like "soap:tcp://localhost:8080/MyReceiver" will return wsdl. In normal web service case which runs on http returns wsdl by simply appending '?wsdl' in url,...
1
by: Mike Logan | last post by:
I have a schema that defines my messages and objects. I then have a WSDL that defines the web services. I have my sample XSD, sample WSDL, and the code generated from WSDL.exe. In the generated...
0
by: Andreas | last post by:
Hi, Im trying to consume a webservice described by the WSDL below, however When i try to add the WSDL it does not work, tried to run it through WSDL.EXE It validates in XMLSpy, but WSDL.exe...
9
by: Cesar | last post by:
Hello there, A java programmer sent me a wsdl file, which I have to use to consume his web methods. When I run the wsld.exe tool to generate the class' code, I get the following message: ...
0
by: Frank Swarbrick | last post by:
Does anyone have any idea what the following file might be, and why it gets created? C:\Documents and Settings\FJSwarbrick\Application Data\IBM\DB2\db2tools\.databean.jdbclob It appears to be...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.