You are viewing a plain text version of this content. The canonical link for it is here.
Posted to agila-user@incubator.apache.org by YD...@iba.by on 2005/12/27 10:01:44 UTC

One question

Hello  anybody who could help me.

I am asking you for helping.
I want to deploy to twister 2 wsdl, but it is not possible now.

How correctly can I  join 2 wsdl?

For example I have following 2 wsdl :  and 


Thank beforehand.

Yaheni.

Re: One question

Posted by Davide Ling <li...@libero.it>.
On Tuesday 27 December 2005 11:01, YDrazdou@iba.by wrote:
> Hello  anybody who could help me.
>
> I am asking you for helping.
> I want to deploy to twister 2 wsdl, but it is not possible now.
>
> How correctly can I  join 2 wsdl?

Hi Yaheni.

I suggest you to copy and paste wsdl contents (without related namespaces)
under the same namespace.
Document generated will be your wsdef.

For example, I follow this schema:

<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
        targetNamespace="http://davideling.altervista.org/divisione-wsdl/"
        xmlns:tns="http://davideling.altervista.org/divisione-wsdl/"
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
        xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
        xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">

       <types>
	        <xsd:schema
           targetNamespace="http://davideling.altervista.org/divisione-wsdl/">
                      <!-- All needed type definitions (for all services!) -->
                 </xsd:schema>
	</types>
        
        <!------ Service one -------->
        <message ...>
        </message>
         ....
        
        <portType ....>
              ....
        </portType>
        
        <binding .....>
             .....
        </binding>
     
        <service....>
                 .....
        </service>

         <!-- -------- Service Two ----------->
          <message ...>
        </message>
         ....
        
        <portType ....>
              ....
        </portType>
        
        <binding .....>
             .....
        </binding>
     
        <service....>
                 .....
        </service>

         <!------- ParternLinkType definitions ------------>
         <plnk:partnerLinkTpe .........>
                   ...........
         </plnk:partnerLinkTpe>
         ...........

         <!---------- Property and property alias definitios ------------->
          <bpws:property .........../>
          <bpws:propertyAlias .........../>
           .................
</definitions>

Bye and Happy new Year!

-- 
Davide Ling
Sito Personale - http://davideling.altervista.org
Key fingerprint = 284A 0FB9 F9F6 763C D429  E02B AA5D 483A 7E45 D2A6