Web Service fails after update

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

  1. #1

    Default Web Service fails after update

    I have a situation in which I have a .cfm page on my server which invokes a CF
    web service on the same server. Everything is fine except that when I make a
    change to the web service's .cfc file, the web service invokation fails until I
    rename the .cfc file and invoke it under the new file name.

    It seems as if the server trys to cache the definition of the web service in
    memory or something rather than recognising the fact that it has changed and
    been saved. It is not until you invoke the new .cfc name that it actually goes
    out and calls the new version. I am not sure if this is because the calling
    page and the web service are on the same machine or not.

    Any thoughts?

    PeteMoss Guest

  2. Similar Questions and Discussions

    1. Update fails on CF 7.0, works on CF 5.0
      I'm not sure what's going on. The UPDATE below works with CF5.0 with MS Access ODBC, but fails with CF 7.0 with MS Access with Unicode. I first...
    2. 7.0.1 Update fails
      I have tried updating to 7.0.1 from 7.0 but the install is not there! When I start the servers and login to CF Admin I am only opening version 7.0...
    3. Yahoo Catalog Update Fails
      :confused; I've got my Yahoo store up and running using Yahoo store tags. I just went to update my local catalog and received a message that the...
    4. Service fails, please help.
      Problem : While invoking the returnAl without the returnMyObject WebMethod enabled, the operation fails with an invalid Operation exception for the...
    5. sql UPDATE fails
      Hi, I've got a page which updates a record, but it fails if the text used contains an apostrophe. I understand I need to replace apostrophes...
  3. #2

    Default Re: Web Service fails after update

    Are you invoking the web service into an object ie via cfobject or the CreateObject() function? If so are you setting it into a SESSION variable? If you are you can have issues like this?
    Stressed_Simon Guest

  4. #3

    Default Re: Web Service fails after update

    I am invoking it using the createobject function, however just into a local variable.
    PeteMoss Guest

  5. #4

    Default Re: Web Service fails after update

    As an update. I have been invoking these webservice by spelling out the full
    path to the wsdl file in the createobject function, rather than creating a web
    service mapping in the cfadmin. I went back and deleted all of the autocreated
    mappings in the admin and set up a permanent one, which I now call from the
    createobject function. This seems to have cleared up the problem

    PeteMoss 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