Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Trapping web return errors
Message
De
18/12/2014 12:24:22
 
 
Information générale
Forum:
ASP.NET
Catégorie:
Autre
Versions des environnements
Environment:
C# 5.0
OS:
Windows Server 2008
Network:
Windows 2008 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01612403
Message ID:
01612409
Vues:
33
>>When I call a webservice and it returns an error how can I trap the full error message
>>
>>I've got this code
>>
>>HttpWebResponse response = null;
>> HttpWebRequest request = (HttpWebRequest)WebRequest.Create(profileAPIURL);
>> request.Headers.Add("Authorization", oAuth);
>> try
>> {
>> response = (HttpWebResponse)request.GetResponse();
>> }
>> catch (Exception ex)
>> {
>> Console.WriteLine("Exception Occured:" + ex.Message);
>> }
>>
>>but the catch just gives me a server error like "The remote server returned an error: (400) Bad Request." and I want to know the reason its a bad request.
>>
>>Thanks
>>
>>Nick
>
>Did you check everything for ex, also ex.InnerException?

Thanks Naomi

Innerexcption was null for this

nick
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform