Hi Stoil,

I saw the message archive posted by you. you said its
working after making changes as follows:


         <s:schema elementFormDefault="qualified"
 targetNamespace="
http://www.27seconds.com/Holidays/GBEAW/";
 xmlns:s=" http://www.w3.org/2001/XMLSchema";>
             <!--s:import
 namespace=" http://www.w3.org/2001/XMLSchema"/-->
.....

I did the similer change,But i get the follwoing
exception when i try to parse:

The namespace
xmlns:s="http://www.w3.org/2001/XMLSchema"; could not
be added as content to "s:schema": The namespace
prefix "s" collides with the element namespace prefix
org.jdom.IllegalAddException: The namespace
xmlns:s="http://www.w3.org/2001/XMLSchema"; could not
be added as content to "s:schema": The namespace
prefix "s" collides with the element namespace prefix
        at
org.jdom.Element.addNamespaceDeclaration(Element.java:370)
.......

Complete WSDL file--->:

<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/";
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
xmlns:s="http://www.w3.org/2001/XMLSchema";
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";
xmlns:tns="http://www.27seconds.com/Holidays/US/";
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/";
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/";
targetNamespace="http://www.27seconds.com/Holidays/US/";
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/";>

  <wsdl:types>
  
    <s:schema elementFormDefault="qualified"
targetNamespace="http://www.27seconds.com/Holidays/US/";
    xmlns:s=" http://www.w3.org/2001/XMLSchema";>
    
    <!--s:import namespace="
http://www.w3.org/2001/XMLSchema"/-->
    
    <s:element name="GetHolidaysForDateRange">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1"
name="startDate" type="s:dateTime" />
            <s:element minOccurs="1" maxOccurs="1"
name="endDate" type="s:dateTime" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element
name="GetHolidaysForDateRangeResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1"
name="GetHolidaysForDateRangeResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetHolidaysForMonth">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1"
name="year" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1"
name="month" type="s:int" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetHolidaysForMonthResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1"
name="GetHolidaysForMonthResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetHolidaysForYear">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1"
name="year" type="s:int" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetHolidaysForYearResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1"
name="GetHolidaysForYearResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetHolidayDate">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1"
name="holidayName" type="s:string" />
            <s:element minOccurs="1" maxOccurs="1"
name="year" type="s:int" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetHolidayDateResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1"
name="GetHolidayDateResult" type="s:dateTime" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetHolidaysAvailable">
        <s:complexType />
      </s:element>
      <s:element name="GetHolidaysAvailableResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1"
name="GetHolidaysAvailableResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="DataSet" nillable="true">
        <s:complexType>
          <s:sequence>
            <s:element ref="s:schema" />
            <s:any />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="dateTime" type="s:dateTime" />
    </s:schema>
  </wsdl:types>
  <wsdl:message name="GetHolidaysForDateRangeSoapIn">
    
    <wsdl:part name="parameters"
element="tns:GetHolidaysForDateRange" />
    
  </wsdl:message>
  <wsdl:message name="GetHolidaysForDateRangeSoapOut">
    <wsdl:part name="parameters"
element="tns:GetHolidaysForDateRangeResponse" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForMonthSoapIn">
    <wsdl:part name="parameters"
element="tns:GetHolidaysForMonth" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForMonthSoapOut">
    <wsdl:part name="parameters"
element="tns:GetHolidaysForMonthResponse" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForYearSoapIn">
    <wsdl:part name="parameters"
element="tns:GetHolidaysForYear" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForYearSoapOut">
    <wsdl:part name="parameters"
element="tns:GetHolidaysForYearResponse" />
  </wsdl:message>
  <wsdl:message name="GetHolidayDateSoapIn">
    <wsdl:part name="parameters"
element="tns:GetHolidayDate" />
  </wsdl:message>
  <wsdl:message name="GetHolidayDateSoapOut">
    <wsdl:part name="parameters"
element="tns:GetHolidayDateResponse" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysAvailableSoapIn">
    <wsdl:part name="parameters"
element="tns:GetHolidaysAvailable" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysAvailableSoapOut">
    <wsdl:part name="parameters"
element="tns:GetHolidaysAvailableResponse" />
  </wsdl:message>
  <wsdl:message
name="GetHolidaysForDateRangeHttpGetIn">
    <wsdl:part name="startDate" type="s:string" />
    <wsdl:part name="endDate" type="s:string" />
  </wsdl:message>
  <wsdl:message
name="GetHolidaysForDateRangeHttpGetOut">
    <wsdl:part name="Body" element="tns:DataSet" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForMonthHttpGetIn">
    <wsdl:part name="year" type="s:string" />
    <wsdl:part name="month" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForMonthHttpGetOut">
    <wsdl:part name="Body" element="tns:DataSet" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForYearHttpGetIn">
    <wsdl:part name="year" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForYearHttpGetOut">
    <wsdl:part name="Body" element="tns:DataSet" />
  </wsdl:message>
  <wsdl:message name="GetHolidayDateHttpGetIn">
    <wsdl:part name="holidayName" type="s:string" />
    <wsdl:part name="year" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetHolidayDateHttpGetOut">
    <wsdl:part name="Body" element="tns:dateTime" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysAvailableHttpGetIn"
/>
  <wsdl:message name="GetHolidaysAvailableHttpGetOut">
    <wsdl:part name="Body" element="tns:DataSet" />
  </wsdl:message>
  <wsdl:message
name="GetHolidaysForDateRangeHttpPostIn">
    <wsdl:part name="startDate" type="s:string" />
    <wsdl:part name="endDate" type="s:string" />
  </wsdl:message>
  <wsdl:message
name="GetHolidaysForDateRangeHttpPostOut">
    <wsdl:part name="Body" element="tns:DataSet" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForMonthHttpPostIn">
    <wsdl:part name="year" type="s:string" />
    <wsdl:part name="month" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForMonthHttpPostOut">
    <wsdl:part name="Body" element="tns:DataSet" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForYearHttpPostIn">
    <wsdl:part name="year" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysForYearHttpPostOut">
    <wsdl:part name="Body" element="tns:DataSet" />
  </wsdl:message>
  <wsdl:message name="GetHolidayDateHttpPostIn">
    <wsdl:part name="holidayName" type="s:string" />
    <wsdl:part name="year" type="s:string" />
  </wsdl:message>
  <wsdl:message name="GetHolidayDateHttpPostOut">
    <wsdl:part name="Body" element="tns:dateTime" />
  </wsdl:message>
  <wsdl:message name="GetHolidaysAvailableHttpPostIn"
/>
  <wsdl:message
name="GetHolidaysAvailableHttpPostOut">
    <wsdl:part name="Body" element="tns:DataSet" />
  </wsdl:message>
  <wsdl:portType name="USHolidayServiceSoap">
    <wsdl:operation name="GetHolidaysForDateRange">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for a date range.</documentation>
      <wsdl:input
message="tns:GetHolidaysForDateRangeSoapIn" />
      <wsdl:output
message="tns:GetHolidaysForDateRangeSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForMonth">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for a specific month.</documentation>
      <wsdl:input
message="tns:GetHolidaysForMonthSoapIn" />
      <wsdl:output
message="tns:GetHolidaysForMonthSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForYear">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for an entire year.</documentation>
      <wsdl:input
message="tns:GetHolidaysForYearSoapIn" />
      <wsdl:output
message="tns:GetHolidaysForYearSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidayDate">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the date
of a specific holiday.</documentation>
      <wsdl:input message="tns:GetHolidayDateSoapIn"
/>
      <wsdl:output message="tns:GetHolidayDateSoapOut"
/>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysAvailable">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
available holidays.</documentation>
      <wsdl:input
message="tns:GetHolidaysAvailableSoapIn" />
      <wsdl:output
message="tns:GetHolidaysAvailableSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:portType name="USHolidayServiceHttpGet">
    <wsdl:operation name="GetHolidaysForDateRange">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for a date range.</documentation>
      <wsdl:input
message="tns:GetHolidaysForDateRangeHttpGetIn" />
      <wsdl:output
message="tns:GetHolidaysForDateRangeHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForMonth">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for a specific month.</documentation>
      <wsdl:input
message="tns:GetHolidaysForMonthHttpGetIn" />
      <wsdl:output
message="tns:GetHolidaysForMonthHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForYear">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for an entire year.</documentation>
      <wsdl:input
message="tns:GetHolidaysForYearHttpGetIn" />
      <wsdl:output
message="tns:GetHolidaysForYearHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidayDate">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the date
of a specific holiday.</documentation>
      <wsdl:input
message="tns:GetHolidayDateHttpGetIn" />
      <wsdl:output
message="tns:GetHolidayDateHttpGetOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysAvailable">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
available holidays.</documentation>
      <wsdl:input
message="tns:GetHolidaysAvailableHttpGetIn" />
      <wsdl:output
message="tns:GetHolidaysAvailableHttpGetOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:portType name="USHolidayServiceHttpPost">
    <wsdl:operation name="GetHolidaysForDateRange">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for a date range.</documentation>
      <wsdl:input
message="tns:GetHolidaysForDateRangeHttpPostIn" />
      <wsdl:output
message="tns:GetHolidaysForDateRangeHttpPostOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForMonth">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for a specific month.</documentation>
      <wsdl:input
message="tns:GetHolidaysForMonthHttpPostIn" />
      <wsdl:output
message="tns:GetHolidaysForMonthHttpPostOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForYear">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
holidays for an entire year.</documentation>
      <wsdl:input
message="tns:GetHolidaysForYearHttpPostIn" />
      <wsdl:output
message="tns:GetHolidaysForYearHttpPostOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidayDate">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the date
of a specific holiday.</documentation>
      <wsdl:input
message="tns:GetHolidayDateHttpPostIn" />
      <wsdl:output
message="tns:GetHolidayDateHttpPostOut" />
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysAvailable">
      <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Get the
available holidays.</documentation>
      <wsdl:input
message="tns:GetHolidaysAvailableHttpPostIn" />
      <wsdl:output
message="tns:GetHolidaysAvailableHttpPostOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="USHolidayServiceSoap"
type="tns:USHolidayServiceSoap">
    <soap:binding
transport="http://schemas.xmlsoap.org/soap/http";
style="document" />
    <wsdl:operation name="GetHolidaysForDateRange">
      <soap:operation
soapAction="http://www.27seconds.com/Holidays/US/GetHolidaysForDateRange";
style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForMonth">
      <soap:operation
soapAction="http://www.27seconds.com/Holidays/US/GetHolidaysForMonth";
style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForYear">
      <soap:operation
soapAction="http://www.27seconds.com/Holidays/US/GetHolidaysForYear";
style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidayDate">
      <soap:operation
soapAction="http://www.27seconds.com/Holidays/US/GetHolidayDate";
style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysAvailable">
      <soap:operation
soapAction="http://www.27seconds.com/Holidays/US/GetHolidaysAvailable";
style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  
  <wsdl:binding name="USHolidayServiceHttpGet"
type="tns:USHolidayServiceHttpGet">
    <http:binding verb="GET" />
    <wsdl:operation name="GetHolidaysForDateRange">
      <http:operation
location="/GetHolidaysForDateRange" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForMonth">
      <http:operation location="/GetHolidaysForMonth"
/>
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForYear">
      <http:operation location="/GetHolidaysForYear"
/>
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidayDate">
      <http:operation location="/GetHolidayDate" />
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysAvailable">
      <http:operation location="/GetHolidaysAvailable"
/>
      <wsdl:input>
        <http:urlEncoded />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="USHolidayServiceHttpPost"
type="tns:USHolidayServiceHttpPost">
    <http:binding verb="POST" />
    <wsdl:operation name="GetHolidaysForDateRange">
      <http:operation
location="/GetHolidaysForDateRange" />
      <wsdl:input>
        <mime:content
type="application/x-www-form-urlencoded" />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForMonth">
      <http:operation location="/GetHolidaysForMonth"
/>
      <wsdl:input>
        <mime:content
type="application/x-www-form-urlencoded" />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysForYear">
      <http:operation location="/GetHolidaysForYear"
/>
      <wsdl:input>
        <mime:content
type="application/x-www-form-urlencoded" />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidayDate">
      <http:operation location="/GetHolidayDate" />
      <wsdl:input>
        <mime:content
type="application/x-www-form-urlencoded" />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetHolidaysAvailable">
      <http:operation location="/GetHolidaysAvailable"
/>
      <wsdl:input>
        <mime:content
type="application/x-www-form-urlencoded" />
      </wsdl:input>
      <wsdl:output>
        <mime:mimeXml part="Body" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="USHolidayService">
    <documentation
xmlns="http://schemas.xmlsoap.org/wsdl/";>Web service
that calculates national holidays for the
US.</documentation>
    <wsdl:port name="USHolidayServiceSoap"
binding="tns:USHolidayServiceSoap">
      <soap:address
location="http://www.27seconds.com/Holidays/US/USHolidayService.asmx";
/>
    </wsdl:port>
    <wsdl:port name="USHolidayServiceHttpGet"
binding="tns:USHolidayServiceHttpGet">
      <http:address
location="http://www.27seconds.com/Holidays/US/USHolidayService.asmx";
/>
    </wsdl:port>
    <wsdl:port name="USHolidayServiceHttpPost"
binding="tns:USHolidayServiceHttpPost">
      <http:address
location="http://www.27seconds.com/Holidays/US/USHolidayService.asmx";
/>
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>


Is there any documentation upon what kind of schema
castor can parse? How should be the schema be defined
so castor can parse it? like the way
import/include/schemaLocation should be defined? Any
information will help me...

Thanks a lot,
Deepak

--- stoil valchkov <[EMAIL PROTECTED]> wrote:

> You may have a look at
>
http://archive.codehaus.org/castor/user/msg02596.html
> 
> IMHO there is a bug in castor. I'll try to report &
> bugfix it once I have
> free time for this.
> 
> On 3/18/06, Deepak <[EMAIL PROTECTED]> wrote:
> >
> > I need help as i am using castor-0.9.9-xml.jar to
> > parse the schemas of <Type> section WSDL file.I am
> new
> > to castor and need some help in following:
> >
> > 1) I am using Castor API to create
> > org.exolab.castor.xml.schema.Schema object. I use
> Type
> > section of the WSDL file as input to SchemaReader
> > constructor.
> >
> > org.xml.sax.InputSource inputSource = new
> > InputSource(reader);
> > SchemaReader schemaReader = new
> > SchemaReader(inputSource);
> >       schemaReader.setValidation(false);
> > //read the schema from the source
> > Schema schema = schemaReader.read();
> >
> > Program runs fine
> > with some wsdl files. But i get the follwoing
> error
> > for the below schema:
> >
> > "Unable to resolve Schema corresponding to
> namespace '
> > http://www.w3.org/2001/XMLSchema'"
> >
> >     <s:schema elementFormDefault="qualified"
> >
>
targetNamespace="http://www.27seconds.com/Holidays/US/";>
> >       <s:import
> > namespace="http://www.w3.org/2001/XMLSchema"; />
> >       <s:element name="GetHolidaysForDateRange">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="1" maxOccurs="1"
> > name="startDate" type="s:dateTime" />
> >             <s:element minOccurs="1" maxOccurs="1"
> > name="endDate" type="s:dateTime" />
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element
> > name="GetHolidaysForDateRangeResponse">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="0" maxOccurs="1"
> > name="GetHolidaysForDateRangeResult">
> >               <s:complexType>
> >                 <s:sequence>
> >                   <s:element ref="s:schema" />
> >                   <s:any />
> >                 </s:sequence>
> >               </s:complexType>
> >             </s:element>
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element name="GetHolidaysForMonth">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="1" maxOccurs="1"
> > name="year" type="s:int" />
> >             <s:element minOccurs="1" maxOccurs="1"
> > name="month" type="s:int" />
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element
> name="GetHolidaysForMonthResponse">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="0" maxOccurs="1"
> > name="GetHolidaysForMonthResult">
> >               <s:complexType>
> >                 <s:sequence>
> >                   <s:element ref="s:schema" />
> >                   <s:any />
> >                 </s:sequence>
> >               </s:complexType>
> >             </s:element>
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element name="GetHolidaysForYear">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="1" maxOccurs="1"
> > name="year" type="s:int" />
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element
> name="GetHolidaysForYearResponse">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="0" maxOccurs="1"
> > name="GetHolidaysForYearResult">
> >               <s:complexType>
> >                 <s:sequence>
> >                   <s:element ref="s:schema" />
> >                   <s:any />
> >                 </s:sequence>
> >               </s:complexType>
> >             </s:element>
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element name="GetHolidayDate">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="0" maxOccurs="1"
> > name="holidayName" type="s:string" />
> >             <s:element minOccurs="1" maxOccurs="1"
> > name="year" type="s:int" />
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element name="GetHolidayDateResponse">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="1" maxOccurs="1"
> > name="GetHolidayDateResult" type="s:dateTime" />
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element name="GetHolidaysAvailable">
> >         <s:complexType />
> >       </s:element>
> >       <s:element
> name="GetHolidaysAvailableResponse">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element minOccurs="0" maxOccurs="1"
> > name="GetHolidaysAvailableResult">
> >               <s:complexType>
> >                 <s:sequence>
> >                   <s:element ref="s:schema" />
> >                   <s:any />
> >                 </s:sequence>
> >               </s:complexType>
> >             </s:element>
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element name="DataSet" nillable="true">
> >         <s:complexType>
> >           <s:sequence>
> >             <s:element ref="s:schema" />
> >             <s:any />
> >           </s:sequence>
> >         </s:complexType>
> >       </s:element>
> >       <s:element name="dateTime" type="s:dateTime"
> />
> >     </s:schema>
> >
> > Thanks in advance,
> > Regards,
> > Deepak
> >
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Tired of spam?  Yahoo! Mail has the best spam
> protection around
> > http://mail.yahoo.com
> >
> > -------------------------------------------------
> > If you wish to unsubscribe from this list, please
> > send an empty message to the following address:
> >
> > [EMAIL PROTECTED]
> > -------------------------------------------------
> >
> >
> 


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-------------------------------------------------
If you wish to unsubscribe from this list, please 
send an empty message to the following address:

[EMAIL PROTECTED]
-------------------------------------------------

Reply via email to