Advertisement

09.22.2008 at 04:39AM PDT, ID: 23751058 | Points: 500
[x]
Attachment Details

Axis2 generating web service client with xmlbeans databinding?

Asked by TorSoftwareDev in SOAP, Java Programming Language, Web Services Description Language

Tags:

Hi,
I'm trying to consume a web service operation using axis2 and xmlbeans databinding.
The wsdl says (I think) that this is a rpc style service (se wsdl below).
1. Do AXIS2 support rpc style web services?
2. If so, why do I get an AxisFault that says: "The document is not a WMLS_GetFromStoreResponse@http://www.witsml.org/message/120: document element local name mismatch expected WMLS_GetFromStoreResponse got Store.WMLS_GetFromStoreResponse"Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://www.witsml.org/schemas/120" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://www.witsml.org/schemas/120" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">WITSML Version 1.2.0 STORE interface WSDL file</wsdl:documentation>
  <wsdl:types />
  <wsdl:message name="Store.WMLS_AddToStoreSoapIn">
    <wsdl:part name="WMLtypeIn" type="s:string" />
    <wsdl:part name="XMLin" type="s:string" />
    <wsdl:part name="OptionsIn" type="s:string" />
    <wsdl:part name="CapabilitiesIn" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_AddToStoreSoapOut">
    <wsdl:part name="Result" type="s:short" />
    <wsdl:part name="SuppMsgOut" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_DeleteFromStoreSoapIn">
    <wsdl:part name="WMLtypeIn" type="s:string" />
    <wsdl:part name="QueryIn" type="s:string" />
    <wsdl:part name="OptionsIn" type="s:string" />
    <wsdl:part name="CapabilitiesIn" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_DeleteFromStoreSoapOut">
    <wsdl:part name="Result" type="s:short" />
    <wsdl:part name="SuppMsgOut" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_GetBaseMsgSoapIn">
    <wsdl:part name="ReturnValueIn" type="s:short" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_GetBaseMsgSoapOut">
    <wsdl:part name="Result" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_GetCapSoapIn">
    <wsdl:part name="OptionsIn" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_GetCapSoapOut">
    <wsdl:part name="Result" type="s:short" />
    <wsdl:part name="CapabilitiesOut" type="s:string" />
    <wsdl:part name="SuppMsgOut" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_GetFromStoreSoapIn">
    <wsdl:part name="WMLtypeIn" type="s:string" />
    <wsdl:part name="QueryIn" type="s:string" />
    <wsdl:part name="OptionsIn" type="s:string" />
    <wsdl:part name="CapabilitiesIn" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_GetFromStoreSoapOut">
    <wsdl:part name="Result" type="s:short" />
    <wsdl:part name="XMLout" type="s:string" />
    <wsdl:part name="SuppMsgOut" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_GetVersionSoapIn" />
  <wsdl:message name="Store.WMLS_GetVersionSoapOut">
    <wsdl:part name="Result" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_UpdateInStoreSoapIn">
    <wsdl:part name="WMLtypeIn" type="s:string" />
    <wsdl:part name="XMLin" type="s:string" />
    <wsdl:part name="OptionsIn" type="s:string" />
    <wsdl:part name="CapabilitiesIn" type="s:string" />
  </wsdl:message>
  <wsdl:message name="Store.WMLS_UpdateInStoreSoapOut">
    <wsdl:part name="Result" type="s:short" />
    <wsdl:part name="SuppMsgOut" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetStatisticsSoapIn" />
  <wsdl:message name="GetStatisticsSoapOut">
    <wsdl:part name="Result" type="s:int" />
    <wsdl:part name="statXml" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetSessionStatisticsSoapIn">
    <wsdl:part name="sessionType" type="s:int" />
  </wsdl:message>
  <wsdl:message name="GetSessionStatisticsSoapOut">
    <wsdl:part name="Result" type="s:int" />
    <wsdl:part name="sessionCount" type="s:int" />
  </wsdl:message>
  <wsdl:portType name="WMLSSoap">
    <wsdl:operation name="WMLS_AddToStore" parameterOrder="WMLtypeIn XMLin OptionsIn CapabilitiesIn SuppMsgOut">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Adds one or more WITSML objects of the same type</wsdl:documentation>
      <wsdl:input name="Store.WMLS_AddToStore" message="tns:Store.WMLS_AddToStoreSoapIn" />
      <wsdl:output name="Store.WMLS_AddToStore" message="tns:Store.WMLS_AddToStoreSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="WMLS_DeleteFromStore" parameterOrder="WMLtypeIn QueryIn OptionsIn CapabilitiesIn SuppMsgOut">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Permanently deletes one or more WITSML objects of the same type</wsdl:documentation>
      <wsdl:input name="Store.WMLS_DeleteFromStore" message="tns:Store.WMLS_DeleteFromStoreSoapIn" />
      <wsdl:output name="Store.WMLS_DeleteFromStore" message="tns:Store.WMLS_DeleteFromStoreSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetBaseMsg">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Returns a string containing the fixed (base) message text associated with a return value</wsdl:documentation>
      <wsdl:input name="Store.WMLS_GetBaseMsg" message="tns:Store.WMLS_GetBaseMsgSoapIn" />
      <wsdl:output name="Store.WMLS_GetBaseMsg" message="tns:Store.WMLS_GetBaseMsgSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetCap" parameterOrder="OptionsIn CapabilitiesOut SuppMsgOut">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Returns the capServer object that describes the capabilities of the Server</wsdl:documentation>
      <wsdl:input name="Store.WMLS_GetCap" message="tns:Store.WMLS_GetCapSoapIn" />
      <wsdl:output name="Store.WMLS_GetCap" message="tns:Store.WMLS_GetCapSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetFromStore" parameterOrder="WMLtypeIn QueryIn OptionsIn CapabilitiesIn XMLout SuppMsgOut">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Returns one or more WITSML objects from the Server</wsdl:documentation>
      <wsdl:input name="Store.WMLS_GetFromStore" message="tns:Store.WMLS_GetFromStoreSoapIn" />
      <wsdl:output name="Store.WMLS_GetFromStore" message="tns:Store.WMLS_GetFromStoreSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetVersion">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Returns a string containing the version and build number of the Servers STORE implementation</wsdl:documentation>
      <wsdl:input name="Store.WMLS_GetVersion" message="tns:Store.WMLS_GetVersionSoapIn" />
      <wsdl:output name="Store.WMLS_GetVersion" message="tns:Store.WMLS_GetVersionSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="WMLS_UpdateInStore" parameterOrder="WMLtypeIn XMLin OptionsIn CapabilitiesIn SuppMsgOut">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Updates one or more existing WITSML objects</wsdl:documentation>
      <wsdl:input name="Store.WMLS_UpdateInStore" message="tns:Store.WMLS_UpdateInStoreSoapIn" />
      <wsdl:output name="Store.WMLS_UpdateInStore" message="tns:Store.WMLS_UpdateInStoreSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetStatistics" parameterOrder="statXml">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Gets statistics from store</wsdl:documentation>
      <wsdl:input message="tns:GetStatisticsSoapIn" />
      <wsdl:output message="tns:GetStatisticsSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetSessionStatistics" parameterOrder="sessionType sessionCount">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Gets session statistics from store</wsdl:documentation>
      <wsdl:input message="tns:GetSessionStatisticsSoapIn" />
      <wsdl:output message="tns:GetSessionStatisticsSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="WMLSSoap" type="tns:WMLSSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
    <wsdl:operation name="WMLS_AddToStore">
      <soap:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_AddToStore" style="rpc" />
      <wsdl:input name="Store.WMLS_AddToStore">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_AddToStore">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_DeleteFromStore">
      <soap:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_DeleteFromStore" style="rpc" />
      <wsdl:input name="Store.WMLS_DeleteFromStore">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_DeleteFromStore">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetBaseMsg">
      <soap:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_GetBaseMsg" style="rpc" />
      <wsdl:input name="Store.WMLS_GetBaseMsg">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_GetBaseMsg">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetCap">
      <soap:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_GetCap" style="rpc" />
      <wsdl:input name="Store.WMLS_GetCap">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_GetCap">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetFromStore">
      <soap:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_GetFromStore" style="rpc" />
      <wsdl:input name="Store.WMLS_GetFromStore">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_GetFromStore">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetVersion">
      <soap:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_GetVersion" style="rpc" />
      <wsdl:input name="Store.WMLS_GetVersion">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_GetVersion">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_UpdateInStore">
      <soap:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_UpdateInStore" style="rpc" />
      <wsdl:input name="Store.WMLS_UpdateInStore">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_UpdateInStore">
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetStatistics">
      <soap:operation soapAction="http://www.witsml.org/action/120/GetStatistics" style="rpc" />
      <wsdl:input>
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetSessionStatistics">
      <soap:operation soapAction="http://www.witsml.org/action/120/GetSessionStatistics" style="rpc" />
      <wsdl:input>
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="WMLSSoap12" type="tns:WMLSSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
    <wsdl:operation name="WMLS_AddToStore">
      <soap12:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_AddToStore" style="rpc" />
      <wsdl:input name="Store.WMLS_AddToStore">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_AddToStore">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_DeleteFromStore">
      <soap12:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_DeleteFromStore" style="rpc" />
      <wsdl:input name="Store.WMLS_DeleteFromStore">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_DeleteFromStore">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetBaseMsg">
      <soap12:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_GetBaseMsg" style="rpc" />
      <wsdl:input name="Store.WMLS_GetBaseMsg">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_GetBaseMsg">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetCap">
      <soap12:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_GetCap" style="rpc" />
      <wsdl:input name="Store.WMLS_GetCap">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_GetCap">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetFromStore">
      <soap12:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_GetFromStore" style="rpc" />
      <wsdl:input name="Store.WMLS_GetFromStore">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_GetFromStore">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_GetVersion">
      <soap12:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_GetVersion" style="rpc" />
      <wsdl:input name="Store.WMLS_GetVersion">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_GetVersion">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="WMLS_UpdateInStore">
      <soap12:operation soapAction="http://www.witsml.org/action/120/Store.WMLS_UpdateInStore" style="rpc" />
      <wsdl:input name="Store.WMLS_UpdateInStore">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output name="Store.WMLS_UpdateInStore">
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetStatistics">
      <soap12:operation soapAction="http://www.witsml.org/action/120/GetStatistics" style="rpc" />
      <wsdl:input>
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetSessionStatistics">
      <soap12:operation soapAction="http://www.witsml.org/action/120/GetSessionStatistics" style="rpc" />
      <wsdl:input>
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="encoded" namespace="http://www.witsml.org/message/120" encodingStyle="http://www.w3.org/2003/05/soap-encoding" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="WMLS">
    <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">WITSML Version 1.2.0 STORE interface WSDL file</wsdl:documentation>
    <wsdl:port name="WMLSSoap" binding="tns:WMLSSoap">
      <soap:address location="http://sitecom.intellifield.no/SIv4/Store/Store.asmx" />
    </wsdl:port>
    <wsdl:port name="WMLSSoap12" binding="tns:WMLSSoap12">
      <soap12:address location="http://sitecom.intellifield.no/SIv4/Store/Store.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>
[+][-]09.22.2008 at 06:26AM PDT, ID: 22539717

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.22.2008 at 06:27AM PDT, ID: 22539722

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.23.2008 at 12:41AM PDT, ID: 22547108

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.23.2008 at 12:48AM PDT, ID: 22547130

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.25.2008 at 07:51AM PDT, ID: 22569815

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628