Calling Siebel CRMOnDemand WebServices

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Calling Siebel CRMOnDemand WebServices

    Hi, we are currently working on a project where we need to call some Siebel
    CRMOnDemand WebServices. When we use the cfinvoke tag to call for a simple
    webservice (time.wsdl), we get the following error : Could not generate stub
    objects for web service invocation. Name:
    [url]https://secure.crmondemand.com/Services/Integration/Time.wsdl;jsessionid=0000WTh[/url]
    zxRJuAAuyxG7SEGHiwYc:v5h9himk. WSDL:
    [url]https://secure.crmondemand.com/Services/Integration/Time.wsdl;jsessionid=0000WTh[/url]
    zxRJuAAuyxG7SEGHiwYc:v5h9himk. org.xml.sax.SAXException: Fatal Error: URI=null
    Line=1: XML declaration may only begin entities. It is recommended that you use
    a web browser to retrieve and examine the requested WSDL document for
    correctness. If the requested WSDL document can't be retrieved or it
    is dynamically generated, it is likely that the target web service has
    programming errors. The fact is that we know CRMOnDemand webservices are
    somewhat weird (since they are not stateless). Some docs we found say that we
    need to instantiate some stub objects on our servers so we can call for the
    siebel webservices. Does anybody know have a clue on how to do that, and more
    generally, on how to call Siebel Webservices from a Coldfusion 6.1 server?
    Thanks a lot Antoine

    Antonin34 Guest

  2. Similar Questions and Discussions

    1. how to access siebel from asp
      how to access siebel from asp ? -- Sivaswami Jeganathan
    2. wse router calling 2 diff webservices
      hi all I am unable to call to different webservices using a router , Router looks like this <?xml version="1.0" ?> <r:referrals...
    3. Calling webservices from a Pocket PC
      I am able to connect from a console test application to a webservice on my local machine. I am unable to connect to the same webservice from a...
    4. Help needed regarding calling webservices
      Hi All, I am facing a problem calling a web service without generating proxy class. I am using vb.net (windows application) with soap toolkit 3.0....
    5. Do .Net Client Applications require MSSoap dlls for calling WebServices?
      Dear All, Do .Net Client Applications require MSSoap dlls for calling WebServices? My clients will have only .Net runtime installed on their...
  3. #2

    Default Re: Calling Siebel CRMOnDemand WebServices

    You have the ";jsessionid=..." on the WSDL URL, which is wrong. This
    session has probably timed out so an error instead of XML is being returned.

    Remove that and make sure you really get WSDL/XML back from the URL.

    --
    Tom Jordahl
    Macromedia Server Development


    Tom Jordahl Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139