Message from discussion
Where shall I put my XSDs on a SCA service?
Received: by 10.114.135.1 with SMTP id i1mr528182wad.27.1227104299090;
Wed, 19 Nov 2008 06:18:19 -0800 (PST)
Return-Path: <bruno.p.r...@gmail.com>
Received: from yx-out-1718.google.com (yx-out-1718.google.com [74.125.44.154])
by mx.google.com with ESMTP id k32si4164885wah.1.2008.11.19.06.18.17;
Wed, 19 Nov 2008 06:18:18 -0800 (PST)
Received-SPF: pass (google.com: domain of bruno.p.r...@gmail.com designates 74.125.44.154 as permitted sender) client-ip=74.125.44.154;
Authentication-Results: mx.google.com; spf=pass (google.com: domain of bruno.p.r...@gmail.com designates 74.125.44.154 as permitted sender) smtp.mail=bruno.p.r...@gmail.com; dkim=pass (test mode) header...@gmail.com
Received: by yx-out-1718.google.com with SMTP id 36so1361616yxh.20
for <phpsoa@googlegroups.com>; Wed, 19 Nov 2008 06:18:17 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=gamma;
h=domainkey-signature:received:received:message-id:date:from:to
:subject:mime-version:content-type;
bh=thGCjk3+Pe1O5OMjBCWIl+WVgQQmLkEJAQU56eZtISw=;
b=Wy4e5iXjWUKOQiy3qQef4PWtixSqRrdX8Ajok9Qm3+2ahcxtaVQ1tU++hd2AR/0lGH
+tgRmbDTS1IJ1gkGFTYWt7FUGr9Q0KbhrvPE1fwLkqcna4Qqtmo8NrOT+gEW+foT0mRT
Orwm+h04taMMQSPWo21qfWkUNi5xJW0BPBCvg=
DomainKey-Signature: a=rsa-sha1; c=nofws;
d=gmail.com; s=gamma;
h=message-id:date:from:to:subject:mime-version:content-type;
b=kpnlCqrh1OXNlG9GblbsxvCjnyyPGw8SJhlXV3hNfJb7tEiX51USiu8ZnncddYdFxp
5jyz8p/WNsNltATXCpdAUrAf6EmKniBjO+TcgG9Ekedpg6dN1Erik+XRV7QYrWxbdB2/
ZsNpcxEDUy6I3LTky9vTkjMsHxpnqnnC5xnt0=
Received: by 10.100.110.16 with SMTP id i16mr573626anc.133.1227104297286;
Wed, 19 Nov 2008 06:18:17 -0800 (PST)
Received: by 10.100.3.5 with HTTP; Wed, 19 Nov 2008 06:18:17 -0800 (PST)
Message-ID: <58c5ffd40811190618q51155cd7wa3cc778fe98396b3@mail.gmail.com>
Date: Wed, 19 Nov 2008 12:18:17 -0200
From: "Bruno Reis" <bruno.p.r...@gmail.com>
To: phpsoa@googlegroups.com
Subject: Where shall I put my XSDs on a SCA service?
MIME-Version: 1.0
Content-Type: multipart/alternative;
boundary="----=_Part_98783_33157106.1227104297277"
------=_Part_98783_33157106.1227104297277
Content-Type: text/plain; charset=ISO-2022-JP
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Hi there, I followed the IBM tutotial on:
http://www.ibm.com/developerworks/web/library/ws-soa-scasdo/index.html
I downloaded the sources and it run ok, but on my wsdl I do not get the
param and return types as shown on the tutorial.
on the tutorial:
<binding name="WeatherServiceBinding"
type="tns2:WeatherServicePortType">
<operation name="getTemperature">
<input>
*<tns3:body xsi:type="tns3:tBody" use="literal"/>*
</input>
<output>
*<tns3:body xsi:type="tns3:tBody" use="literal"/>*
</output>
<tns3:operation xsi:type="tns3:tOperation" soapAction=""/>
</operation>
<tns3:binding xsi:type="tns3:tBinding"
transport="http://schemas.xmlsoap.org/soap/http"
style="document"/>
</binding>
I get:
<wsdl:binding name="WeatherServiceBinding"
type="tns2:WeatherServicePortType">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"
style="document"/>
$B!] (B
<wsdl:operation name="getTemperature">
<soap:operation soapAction=""/>
$B!] (B
*<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
$B!] (B
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>*
</wsdl:operation>
</wsdl:binding>
What is wrong with this?
Shall I define another namespace or put the xsd on another place?
Thanks,
Bruno
------=_Part_98783_33157106.1227104297277
Content-Type: text/html; charset=ISO-2022-JP
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Hi there, I followed the IBM tutotial on:<br><br><a href="http://www.ibm.com/developerworks/web/library/ws-soa-scasdo/index.html">http://www.ibm.com/developerworks/web/library/ws-soa-scasdo/index.html</a><br><br>I downloaded the sources and it run ok, but on my wsdl I do not get the param and return types as shown on the tutorial.<br>
<br>on the tutorial:<br><br><pre class="displaycode"><binding name="WeatherServiceBinding" <br> type="tns2:WeatherServicePortType"><br> <operation name="getTemperature"><br>
<input><br> <b><tns3:body xsi:type="tns3:tBody" use="literal"/></b><br> </input><br> <output><br> <b><tns3:body xsi:type="tns3:tBody" use="literal"/></b><br>
</output><br> <tns3:operation xsi:type="tns3:tOperation" soapAction=""/><br> </operation><br> <tns3:binding xsi:type="tns3:tBinding" <br> transport="<a href="http://schemas.xmlsoap.org/soap/http">http://schemas.xmlsoap.org/soap/http</a>" <br>
style="document"/><br> </binding><br></pre><br><br>I get:<br><br><br><wsdl:binding name="WeatherServiceBinding" type="tns2:WeatherServicePortType"><br><soap:binding transport="<a href="http://schemas.xmlsoap.org/soap/http">http://schemas.xmlsoap.org/soap/http</a>" style="document"/><br>
$B!] (B<br><wsdl:operation name="getTemperature"><br><soap:operation soapAction=""/><br> $B!] (B<br><b><wsdl:input><br><soap:body use="literal"/><br></wsdl:input><br> $B!] (B<br><wsdl:output><br>
<soap:body use="literal"/><br></wsdl:output></b><br></wsdl:operation><br></wsdl:binding><br><br><br>What is wrong with this? <br>Shall I define another namespace or put the xsd on another place?<br>
<br>Thanks,<br>Bruno<br>
------=_Part_98783_33157106.1227104297277--