How would I define String[][]?
Is the following correct?

    <complexType name="2DArrayOfString"> 
      <complexContent> 
          <restriction base="SOAP-ENC:Array"> 
              <attribute ref="SOAP-ENC:arrayType"
wsdl:arrayType="xsd:string[][]" /> 
          </restriction> 
      </complexContent> 
    </complexType> 



-----Original Message-----
From: Hansen, Richard [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 05, 2001 1:26 PM
To: '[EMAIL PROTECTED]'
Subject: RE: WSDL


Here are a couple examples of arrays. Don't know if you can directly
specify
vectors or hashtables as I don't believe they are SOAP defined types. 

    <complexType name="ArrayOfString"> 
      <complexContent> 
          <restriction base="SOAP-ENC:Array"> 
              <attribute ref="SOAP-ENC:arrayType"
wsdl:arrayType="xsd:string[]" /> 
          </restriction> 
      </complexContent> 
    </complexType> 

    <complexType name="ArrayOfPromoRegistrationStruct"> 
      <complexContent> 
          <restriction base="SOAP-ENC:Array"> 
              <attribute ref="SOAP-ENC:arrayType"
wsdl:arrayType="tns:PromoRegistrationStruct[]" /> 
          </restriction> 
      </complexContent> 
    </complexType> 

> -----Original Message-----
> From: Daniel Kruler [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, June 05, 2001 12:17 PM
> To: [EMAIL PROTECTED]
> Subject: RE: WSDL
> 
> 
> How do I specify arrays, vectors and hashtables in WSDL <types>?
> 
> -----Original Message-----
> From: Nirmal Mukhi [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, June 05, 2001 1:09 PM
> To: [EMAIL PROTECTED]
> Subject: RE: WSDL
> 
> 
> 
> Hi,
> 
> Yes, that is the URI for a SOAP server with a SOAP service 
> that supports
> the port type that this port refers to. The location of the 
> SOAP server
> is
> thus hardcoded in the port definition. But you could separate the
> service
> definition (which includes such port definitions) and keep it 
> in a WSDL
> separate from the one that provides the rest of the information, then
> import the latter into the former. (I think tool support for import is
> quite weak though).
> 
> Nirmal.
> 
> 
>  
> 
>                     "Daniel
> 
>                     Kruler"              To:
> <[EMAIL PROTECTED]>                        
>                     <dkruler@giant       cc:
> 
>                     bear.com>            Subject:     RE: WSDL
> 
>  
> 
>                     06/05/2001
> 
>                     12:52 PM
> 
>                     Please respond
> 
>                     to soap-user
> 
>  
> 
>  
> 
> 
> 
> 
> What location should be specified in  <soap:address
> location="http://localhost:4040/soap/servlet/rpcrouter"/> in the
> <service>?
> 
> Is the URL of the SOAP server hardcoded in WSDL?
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
> 
> 
> 
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
> 

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to