Help on calling a webservice - wsdl

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

  1. #1

    Default Help on calling a webservice - wsdl

    I created a sample webservice that can be seen by going to this link:
    [url]http://www.oakvilleschool.com/service/helloworld.cfc?wsdl[/url]

    I then created the ColdFusion Code to call this webservice from another server
    using CFInvoke and this code worked fine:
    -------------------------------------------------------------
    <cfinvoke
    webservice="http://www.oakvilleschool.com/service/helloworld.cfc?wsdl"
    method="HelloWorld" returnvariable="result">

    </cfinvoke>

    <cfoutput>#result#</cfoutput>
    -------------------------------------------------------------

    The result of this webservice is that it just displays: "Hello World!"

    Now if someone has a website and does not have coldfusion on their server, how
    do they call this webservice on their site since they can't use cfinvoke? Is
    there a javascript call or html call?

    Thanks in advance for your help.
    Tom

    ProWebService Guest

  2. Similar Questions and Discussions

    1. WebService WSDL downloading...
      I've been slowly building up my web serivce and Flex UI. Over time i noted that sometimes it takes a while for the WebService object to finish...
    2. Pragmatically Reload WSDL for WebService
      Still looking for a response on this. So far we've implemented a webservice call to check if the webservice is active. But i'd be interested if...
    3. WSDL Webservice Problem - Urgent Help!!!
      I have setup a Flash form to use the WebServiceConnector to do credit card authorizations. The connector works when running inside Flash but when I...
    4. creating ASP .NET webservice from WSDL file
      hello dear Group! I need very much to create an ASP .NET webservice out of a WSDL file - it is enough if I would have just empty skeleton...
    5. Webservice calling a webservice.....Error
      Hi Ihave a strange problem .....or?? On one machine 1 i have a webservice A calling an other webservice B on a other machine 2 . the B service are...
  3. #2

    Default Re: Help on calling a webservice - wsdl

    GOOGLE

    [url]http://www.codeproject.com/useritems/marcelo888RemoteScript01.asp[/url]
    pflynn02 Guest

  4. #3

    Default Re: Help on calling a webservice - wsdl

    Thanks for the response but I am having a hard time following this link since it is mostly written in Spanish.
    Any other suggestions?

    Thanks,
    Tom
    ProWebService Guest

  5. #4

    Default Re: Help on calling a webservice - wsdl

    Each server side language (ASP, .NET, PHP, ColdFusion) is going to have a
    specific way to consume a webservice, but there is no javascript/html way to
    do this.

    You would need to give the person that will consume the webservice the WSDL
    URL and they should know what to do with it.

    Dean

    "ProWebService" <support@daybreakengineering.com> wrote in message
    news:d11uc7$69c$1@forums.macromedia.com...
    > Thanks for the response but I am having a hard time following this link
    since it is mostly written in Spanish.
    > Any other suggestions?
    >
    > Thanks,
    > Tom

    Dean Harmon Guest

  6. #5

    Default Re: Help on calling a webservice - wsdl

    Thanks Dean, but that is just the problem - most people that are using this
    data will not have a clue as to how to consume a webservice or even know what
    that means. That is why I wanted to provide them a solution in mutiple ways or
    atleast one way that I know would work on most sites and just tell them to pur
    this code on their site and it will display the information.

    So to have the code to consume a webservice in ASP, .NET, and PHP would be
    very useful. I can provide the ColdFusion code but I don't think most sites
    will have ColdFusion installed.

    Thanks,
    Tom

    ProWebService 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