Hi all,

I am trying to invoke a spring web service from an Oracle BPEL process and the Oracle BPEL environment requires additional partner link information in the WSDL file.

Here's a sample of this additional information required in the WSDL:


plnk resolves to //schemas.xmlsoap.org/ws/2003/05/partner-link/

Code:
...
    <plnk:partnerLinkType name="pkgSpecResource_PL">
        <plnk:role name="pkgSpecResource_Role">
            <plnk:portType name="tns:pkgSpecResource"/>
        </plnk:role>
    </plnk:partnerLinkType>
...
Is it possible to configure one of the WSDL generator tools to also generate this partnerLink information? If so, can you point me in the right direction and let me know which WSDL generator related class libraries I should be looking at? Is there an example I could look at?

Thanks,

KC