Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. System.Web.Services.Protocols.SoapException

System.Web.Services.Protocols.SoapException

Scheduled Pinned Locked Moved C#
helpcsharpsysadminquestion
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Offline
    C Offline
    Code Toad
    wrote on last edited by
    #1

    :omg:Help! I am getting the following error message when trying to retrieve data using a web service in a C# app. At first before getting this error message, I was able to retrieve data at times (not changing any of the code) and then now it is only giving me this error message when trying to retrieve any of the data. Does anyone know why I am now getting this error message? ---------- Error Message ------------- An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in system.web.services.dll Additional information: Server was unable to process request. --> Catastrophic failure

    H 1 Reply Last reply
    0
    • C Code Toad

      :omg:Help! I am getting the following error message when trying to retrieve data using a web service in a C# app. At first before getting this error message, I was able to retrieve data at times (not changing any of the code) and then now it is only giving me this error message when trying to retrieve any of the data. Does anyone know why I am now getting this error message? ---------- Error Message ------------- An unhandled exception of type 'System.Web.Services.Protocols.SoapException' occurred in system.web.services.dll Additional information: Server was unable to process request. --> Catastrophic failure

      H Offline
      H Offline
      Heath Stewart
      wrote on last edited by
      #2

      Check the server trace log, if enabled. If not, enable it by setting <trace enabled="true" /> in your Web.config file. Look for the exact exception that is occuring in /trace.axd (rooted from whatever your web application is). This will give you more details. For one thing, make sure you're disposing any IDisposable implementations when you're done and that your closing connections, files, etc. Your problem may have nothing to do with those scenarios, but they are common. Just because objects are GC'd automatically doesn't mean that all resources (i.e., native resources like file handles) are released.

      Microsoft MVP, Visual C# My Articles

      C 1 Reply Last reply
      0
      • H Heath Stewart

        Check the server trace log, if enabled. If not, enable it by setting <trace enabled="true" /> in your Web.config file. Look for the exact exception that is occuring in /trace.axd (rooted from whatever your web application is). This will give you more details. For one thing, make sure you're disposing any IDisposable implementations when you're done and that your closing connections, files, etc. Your problem may have nothing to do with those scenarios, but they are common. Just because objects are GC'd automatically doesn't mean that all resources (i.e., native resources like file handles) are released.

        Microsoft MVP, Visual C# My Articles

        C Offline
        C Offline
        Code Toad
        wrote on last edited by
        #3

        Thanks :) That definitely helped and now the problem is fixed.

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups