• Manoj.t
  • NEWBIE
  • 0 Points
  • Member since 2010

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 5
    Questions
  • 7
    Replies

 

<?xml version="1.0" encoding="utf-8"?>
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://force.com/">
      <s:element name="HelloWorld">
        <s:complexType />
      </s:element>
      <s:element name="HelloWorldResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="HelloWorldSoapIn">
    <wsdl:part name="parameters" element="tns:HelloWorld" />
  </wsdl:message>
  <wsdl:message name="HelloWorldSoapOut">
    <wsdl:part name="parameters" element="tns:HelloWorldResponse" />
  </wsdl:message>
  <wsdl:portType name="ServiceSoap">
    <wsdl:operation name="HelloWorld">
      <wsdl:input message="tns:HelloWorldSoapIn" />
      <wsdl:output message="tns:HelloWorldSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="ServiceSoap" type="tns:ServiceSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="HelloWorld">
      <soap:operation soapAction="http://force.com/HelloWorld" 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="ServiceSoap12" type="tns:ServiceSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="HelloWorld">
      <soap12:operation soapAction="http://force.com/HelloWorld" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="Service">
    <wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">
      <soap:address location="http://localhost:50402/webs/Service.asmx" />
    </wsdl:port>
    <wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">
      <soap12:address location="http://localhost:50402/webs/Service.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

<?xml version="1.0" encoding="utf-8"?><wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://force.com/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://force.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">  <wsdl:types>    <s:schema elementFormDefault="qualified" targetNamespace="http://force.com/">      <s:element name="HelloWorld">        <s:complexType />      </s:element>      <s:element name="HelloWorldResponse">        <s:complexType>          <s:sequence>            <s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />          </s:sequence>        </s:complexType>      </s:element>    </s:schema>  </wsdl:types>  <wsdl:message name="HelloWorldSoapIn">    <wsdl:part name="parameters" element="tns:HelloWorld" />  </wsdl:message>  <wsdl:message name="HelloWorldSoapOut">    <wsdl:part name="parameters" element="tns:HelloWorldResponse" />  </wsdl:message>  <wsdl:portType name="ServiceSoap">    <wsdl:operation name="HelloWorld">      <wsdl:input message="tns:HelloWorldSoapIn" />      <wsdl:output message="tns:HelloWorldSoapOut" />    </wsdl:operation>  </wsdl:portType>  <wsdl:binding name="ServiceSoap" type="tns:ServiceSoap">    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />    <wsdl:operation name="HelloWorld">      <soap:operation soapAction="http://force.com/HelloWorld" 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="ServiceSoap12" type="tns:ServiceSoap">    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />    <wsdl:operation name="HelloWorld">      <soap12:operation soapAction="http://force.com/HelloWorld" style="document" />      <wsdl:input>        <soap12:body use="literal" />      </wsdl:input>      <wsdl:output>        <soap12:body use="literal" />      </wsdl:output>    </wsdl:operation>  </wsdl:binding>  <wsdl:service name="Service">    <wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">      <soap:address location="http://localhost:50402/webs/Service.asmx" />    </wsdl:port>    <wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">      <soap12:address location="http://localhost:50402/webs/Service.asmx" />    </wsdl:port>  </wsdl:service></wsdl:definitions>

 

  • September 06, 2010
  • Like
  • 0

I am trying to import my .net wsdl file into apex class and useing gererate from WSDL but it gives me Error Failed to parse wsdl: Unable to find schema for element; {http://www.w3.org/2001/XMLSchema}schema So Please help me how can i remove this error .

  • September 02, 2010
  • Like
  • 0

I am trying  to import my .net wsdl file into apex class and useing gererate from WSDL but it gives me Error Failed to parse wsdl: Unable to find schema for element; {http://www.w3.org/2001/XMLSchema}schema

So Please help me  how can i remove this error .

  • September 02, 2010
  • Like
  • 0

Hi,

         could some one help me in currency format like 00,00,00,000.00 format in outputText value?

i tried this but not working....

<apex:outputText value="{0,number,#,##,##0=}00">

thanking you.

I am trying to show currency like 1,00,000.00 but it shows like 100,000.00

how can I do this.?

i used this code "<apex:outputText value="Rs{0,number,#,##,##,##0}=00">" but it is not working.

 

I was trying to consume an apache axis 1.4  WSDL, that interops great with many other toolkits.

 

Now, when I try and import it to generate an Apex class, I get an error :- Failed to parse wsdl: attribute name can not be null at: xxx:xx

 

Instead of posting the WSDL, what I would like to know, is what kinds of WSDL's are supported ?

 

   Eg, are there any standars in the WSDL that I should be looking for ?

          (My knowledge of terms like WS-I etc is limited.)

 

         Are WSDL's that are generated from only certain toolkits /versions supported ? (Eg.Axis 1.x etc)

 

Thanks

 

 

<?xml version="1.0" encoding="utf-8"?>
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://force.com/">
      <s:element name="HelloWorld">
        <s:complexType />
      </s:element>
      <s:element name="HelloWorldResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="HelloWorldSoapIn">
    <wsdl:part name="parameters" element="tns:HelloWorld" />
  </wsdl:message>
  <wsdl:message name="HelloWorldSoapOut">
    <wsdl:part name="parameters" element="tns:HelloWorldResponse" />
  </wsdl:message>
  <wsdl:portType name="ServiceSoap">
    <wsdl:operation name="HelloWorld">
      <wsdl:input message="tns:HelloWorldSoapIn" />
      <wsdl:output message="tns:HelloWorldSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="ServiceSoap" type="tns:ServiceSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="HelloWorld">
      <soap:operation soapAction="http://force.com/HelloWorld" 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="ServiceSoap12" type="tns:ServiceSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="HelloWorld">
      <soap12:operation soapAction="http://force.com/HelloWorld" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="Service">
    <wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">
      <soap:address location="http://localhost:50402/webs/Service.asmx" />
    </wsdl:port>
    <wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">
      <soap12:address location="http://localhost:50402/webs/Service.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

<?xml version="1.0" encoding="utf-8"?><wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://force.com/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://force.com/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">  <wsdl:types>    <s:schema elementFormDefault="qualified" targetNamespace="http://force.com/">      <s:element name="HelloWorld">        <s:complexType />      </s:element>      <s:element name="HelloWorldResponse">        <s:complexType>          <s:sequence>            <s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />          </s:sequence>        </s:complexType>      </s:element>    </s:schema>  </wsdl:types>  <wsdl:message name="HelloWorldSoapIn">    <wsdl:part name="parameters" element="tns:HelloWorld" />  </wsdl:message>  <wsdl:message name="HelloWorldSoapOut">    <wsdl:part name="parameters" element="tns:HelloWorldResponse" />  </wsdl:message>  <wsdl:portType name="ServiceSoap">    <wsdl:operation name="HelloWorld">      <wsdl:input message="tns:HelloWorldSoapIn" />      <wsdl:output message="tns:HelloWorldSoapOut" />    </wsdl:operation>  </wsdl:portType>  <wsdl:binding name="ServiceSoap" type="tns:ServiceSoap">    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />    <wsdl:operation name="HelloWorld">      <soap:operation soapAction="http://force.com/HelloWorld" 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="ServiceSoap12" type="tns:ServiceSoap">    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />    <wsdl:operation name="HelloWorld">      <soap12:operation soapAction="http://force.com/HelloWorld" style="document" />      <wsdl:input>        <soap12:body use="literal" />      </wsdl:input>      <wsdl:output>        <soap12:body use="literal" />      </wsdl:output>    </wsdl:operation>  </wsdl:binding>  <wsdl:service name="Service">    <wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">      <soap:address location="http://localhost:50402/webs/Service.asmx" />    </wsdl:port>    <wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">      <soap12:address location="http://localhost:50402/webs/Service.asmx" />    </wsdl:port>  </wsdl:service></wsdl:definitions>

 

  • September 06, 2010
  • Like
  • 0

I am trying to import my .net wsdl file into apex class and useing gererate from WSDL but it gives me Error Failed to parse wsdl: Unable to find schema for element; {http://www.w3.org/2001/XMLSchema}schema So Please help me how can i remove this error .

  • September 02, 2010
  • Like
  • 0

Hi,

         could some one help me in currency format like 00,00,00,000.00 format in outputText value?

i tried this but not working....

<apex:outputText value="{0,number,#,##,##0=}00">

thanking you.

I am trying to show currency like 1,00,000.00 but it shows like 100,000.00

how can I do this.?

i used this code "<apex:outputText value="Rs{0,number,#,##,##,##0}=00">" but it is not working.