Answered by:
"Server was unable to process request error.

Question
-
hi..
can somebody help me with my error..
i am having the error of "Server was unable to process request." pointing to the line of " BusinessEntityCollection coll = ser.RetrieveMultiple(query);"
hope someone will help me..
:(
Monday, June 6, 2011 10:02 AM
Answers
-
Hello,
You have to add reference to System.Web.Services and add using:
using System.Web.Services.Protocols;
Microsoft CRM Freelancer
My blog (english)
Мой блог (русскоязычный)- Proposed as answer by Andrii ButenkoMVP, Moderator Monday, June 6, 2011 10:40 AM
- Marked as answer by DavidJennawayMVP, Moderator Monday, August 22, 2011 5:43 PM
Monday, June 6, 2011 10:40 AMModerator
All replies
-
Hello,
try to use following approach:
BusinessEntityCollection coll = null;
This will give explanation of error.try { coll = ser.RetrieveMultiple(query); } catch(SoapException e) { throw new Exception(e.Detail.InnerText); }
Microsoft CRM Freelancer
My blog (english)
Мой блог (русскоязычный)- Proposed as answer by Andrii ButenkoMVP, Moderator Monday, June 6, 2011 10:40 AM
Monday, June 6, 2011 10:05 AMModerator -
hi, i'll try it but there is a error in 'catch
(SoapException e)"
the error is Error 1 The type or namespace name 'SoapException' could not be found (are you missing a using directive or an assembly reference?)
thanks a lot hope you can help me..
Monday, June 6, 2011 10:25 AM -
Hello,
You have to add reference to System.Web.Services and add using:
using System.Web.Services.Protocols;
Microsoft CRM Freelancer
My blog (english)
Мой блог (русскоязычный)- Proposed as answer by Andrii ButenkoMVP, Moderator Monday, June 6, 2011 10:40 AM
- Marked as answer by DavidJennawayMVP, Moderator Monday, August 22, 2011 5:43 PM
Monday, June 6, 2011 10:40 AMModerator