S
Siobhan
Hi
In our web service we cath and throw exceptions to the class as follows:
Catch ex As Exception
Throw New
System.Web.Services.Protocols.SoapException("Unable to login: " & ex.Message,
System.Web.Services.Protocols.SoapException.ServerFaultCode)
Then in our class we catch the Soap exception, howbere the message of this
exception always starts with System.Web.Services.Protocols.Exception:
Is there anyway to remove this information, especially if we are passing
back a filaed login we don't want to confuse the user, but even with other
exceptions this information is not needed for the user
Thanks
In our web service we cath and throw exceptions to the class as follows:
Catch ex As Exception
Throw New
System.Web.Services.Protocols.SoapException("Unable to login: " & ex.Message,
System.Web.Services.Protocols.SoapException.ServerFaultCode)
Then in our class we catch the Soap exception, howbere the message of this
exception always starts with System.Web.Services.Protocols.Exception:
Is there anyway to remove this information, especially if we are passing
back a filaed login we don't want to confuse the user, but even with other
exceptions this information is not needed for the user
Thanks