<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style type="text/css">
<!--

/*
  The original subSilver Theme for phpBB version 2+
  Created by subBlue design
  http://www.subBlue.com

  NOTE: These CSS definitions are stored within the main page body so that you can use the phpBB2
  theme administration centre. When you have finalised your style you could cut the final CSS code
  and place it in an external file, deleting this section to save bandwidth.
*/


 /* General page style. The scroll bar colours only visible in IE5.5+ */
body {
        background-color: #E5E5E5;
        font-family: Verdana, Arial, Helvetica, sans-serif;
        font-size: 11;
        color: #000000;
}

/* General font families for common tags */
font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif }
p, td                { font-size : 11; color : #000000; }
a:link,a:active,a:visited { color : #006699; }
a:hover                { text-decoration: underline; color : #DD6900; }
hr        { height: 0px; border: solid #D1D7DC 0px; border-top-width: 1px;}
h1,h2                { font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; font-size : 22px; font-weight : bold; text-decoration : none; line-height : 120%; color : #000000;}


/* This is the border line & background colour round the entire page */
.bodyline        { background-color: #FFFFFF; border: 1px #98AAB1 solid; }


/* General text */
.gen { font-size : 12px; }
.genmed { font-size : 11px; }
.gensmall { font-size : 10px; line-height: 12px}
.gen,.genmed,.gensmall { color : #000000; }
a.gen,a.genmed,a.gensmall { color: #006699; text-decoration: none; }
a.gen:hover,a.genmed:hover,a.gensmall:hover        { color: #DD6900; text-decoration: underline; }


/* Forum title: Text and link to the forums used in: index.php */
.forumlink                { font-weight: bold; font-size: 12px; color : #006699; }
a.forumlink         { text-decoration: none; color : #006699; }
a.forumlink:hover{ text-decoration: underline; color : #DD6900; }


/* The content of the posts (body of text) */
.postbody { font-size : 12px; line-height: 18px}
a.postlink:link        { text-decoration: none; color : #006699 }
a.postlink:visited { text-decoration: none; color : #5493B4; }
a.postlink:hover { text-decoration: underline; color : #DD6900}


/* Quote & Code blocks */
.code {
        font-family: Courier, 'Courier New', sans-serif; font-size: 11px; color: #006600;
        background-color: #FAFAFA; border: #D1D7DC; border-style: solid;
        border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}

.quote {
        font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #444444; line-height: 125%;
        background-color: #FAFAFA; border: #D1D7DC; border-style: solid;
        border-left-width: 1px; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px
}

-->
</style>
</head>
        <body>

        <div class="postbody">Hi,<br />
<br />
I'm currently tying to create a BPEL process which invokes a webservice based on the Petals FTP component.<br />
<br />
I created my "SA FTP provide" and my "SA SOAP consume" and it works perfectly.<br />
<br />
Now I'm trying to invoke this service through my BPEL process. I copied the <a href="http://ftp.wsdl" target="_blank">ftp.wsdl</a> file from my "SA FTP provide" project to my BPEL project. I added a new Partner Link Type and clicked on "Add WSDL" but when I pick my <a href="http://ftp.wsdl" target="_blank">ftp.wsdl</a> file, I can't see any operations (put, mput, get, mget, dir)... What should I do? Should I use the ftpinterface.wsdl instead?<br />
<br />
Here is my <a href="http://ftp.wsdl" target="_blank">ftp.wsdl</a> code:<br />
<br />
</span><table width="90%" cellspacing="1" cellpadding="3" border="0" align="center"><tr>           <td><span class="genmed"><b>Code:</b></span></td>        </tr>        <tr>          <td class="code"><?xml version="1.0" encoding="UTF-8" standalone="no"?><br />
<wsdl&#58;definitions <br />
&nbsp; &nbsp;name="Ftp"<br />
&nbsp; &nbsp;xmlns&#58;soap="http&#58;//schemas.xmlsoap.org/wsdl/soap/"<br />
&nbsp; &nbsp;xmlns&#58;wsdl="http&#58;//schemas.xmlsoap.org/wsdl/"<br />
&nbsp; &nbsp;xmlns&#58;xsd="http&#58;//www.w3.org/2001/XMLSchema"<br />
&nbsp; &nbsp;xmlns&#58;ftp="http&#58;//petals.ow2.org/components/ftp/version-3"<br />
&nbsp; &nbsp;xmlns&#58;ftpInterface="http&#58;//petals.ow2.org/components/ftp/version-3"<br />
&nbsp; &nbsp;targetNamespace="http&#58;//petals.ow2.org/components/ftp/version-3"><br />
&nbsp; &nbsp;<br />
&nbsp; &nbsp;<wsdl&#58;import <br />
&nbsp; &nbsp;&nbsp; &nbsp;namespace="http&#58;//petals.ow2.org/components/ftp/version-3"<br />
&nbsp; &nbsp;&nbsp; &nbsp;location="ftpInterface.wsdl" /><br />
&nbsp; &nbsp;<br />
&nbsp; &nbsp;<wsdl&#58;binding name="FtpBinding" type="ftpInterface&#58;Ftp"><br />
&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;binding style="document"<br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;transport="http&#58;//schemas.xmlsoap.org/soap/http" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;operation name="get"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;fault name="fault"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;fault use="literal" name="fault" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;fault><br />
&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;operation><br />
&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;operation name="mget"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;fault name="fault"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;fault use="literal" name="fault" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;fault><br />
&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;operation><br />
&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;operation name="put"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;fault name="fault"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;fault use="literal" name="fault" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;fault><br />
&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;operation><br />
&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;operation name="mput"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;fault name="fault"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;fault use="literal" name="fault" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;fault><br />
&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;operation><br />
&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;operation name="dir"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;input><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;body use="literal" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;output><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;fault name="fault"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;fault use="literal" name="fault" /><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;fault><br />
&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;operation><br />
&nbsp; &nbsp;</wsdl&#58;binding><br />
&nbsp; &nbsp;<br />
&nbsp; &nbsp;<wsdl&#58;service name="FTPServiceRBSConverter"><br />
&nbsp; &nbsp;&nbsp; &nbsp;<wsdl&#58;port name="FTPServiceRBSConverterEndpoint" binding="ftp&#58;FtpBinding"><br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<soap&#58;address location="http&#58;//petals.ow2.org/FTPServiceRBSConverter/FTPServiceRBSConverterEndpoint"/><br />
&nbsp; &nbsp;&nbsp; &nbsp;</wsdl&#58;port><br />
&nbsp; &nbsp;</wsdl&#58;service><br />
</wsdl&#58;definitions></td>        </tr></table><span class="postbody"></div>
        <br /><div class="gensmall"><br />
<br />
<br />
-------------------- m2f --------------------<br />
<br />
<a href="http://forum.petalslink.com/m2f_usercp.php">Subscribe/Unsubscribe</a> emails notifications.<br />
<br />
Response to this email will be posted on the Petals forum.<br />
Please delete the existing text before responding :)<br />
<br />
Read the topic online:<br />
<a href="http://forum.petalslink.com/viewtopic.php?p=30547#30547" target="_blank">http://forum.petalslink.com/viewtopic.php?p=30547#30547</a><br />
<br />
-------------------- m2f --------------------</div>
        </body>
</html>