Click here to Skip to main content
15,898,957 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Windows Application Communicate With Web Application Pin
N a v a n e e t h15-May-07 19:22
N a v a n e e t h15-May-07 19:22 
GeneralRe: Windows Application Communicate With Web Application Pin
Darkman_nofear15-May-07 19:36
Darkman_nofear15-May-07 19:36 
QuestionThe Page cannot be displayed Pin
ChandruIT15-May-07 17:37
ChandruIT15-May-07 17:37 
AnswerRe: The Page cannot be displayed Pin
Sathesh Sakthivel15-May-07 17:54
Sathesh Sakthivel15-May-07 17:54 
GeneralRe: The Page cannot be displayed Pin
ChandruIT15-May-07 20:05
ChandruIT15-May-07 20:05 
GeneralRe: The Page cannot be displayed Pin
Sathesh Sakthivel15-May-07 20:11
Sathesh Sakthivel15-May-07 20:11 
AnswerRe: The Page cannot be displayed Pin
N a v a n e e t h15-May-07 18:31
N a v a n e e t h15-May-07 18:31 
AnswerRe: The Page cannot be displayed Pin
dotnetcdr16-May-07 0:30
dotnetcdr16-May-07 0:30 
Think about calling your Web Service asynchronously and having it return status when it completes. It is EXTREMELY bad practice to tie up your application waiting on a 10~15 minute process to complete.

Think of it this way; You have 100 users that hit your application and run this Web Service method. For every user, a thread is used to the worker process AND another thread is used by another worker process for the Web Service (if the web app and Web Service are using separate Application pools... so, you are using roughly 200+ threads and blocking tons of calls for this long method. Now, if you have other web applications in the same application pool, they are also going to be blocked because the worker process is going to be waiting and waiting on all these calls to complete, meanwhile it is queuing up more calls. See the pattern here?

Call your Web Service method asynchronously and then move on to other things. when it has completed, then you can update your page in some manner.

hth,
~dnc
QuestionDatagrid Update Command Pin
Mkanchha15-May-07 17:25
Mkanchha15-May-07 17:25 
AnswerRe: Datagrid Update Command Pin
Sathesh Sakthivel15-May-07 17:51
Sathesh Sakthivel15-May-07 17:51 
QuestionHow to read the servicemodel client section from the web.config file? Pin
moazzamahmed15-May-07 11:44
moazzamahmed15-May-07 11:44 
QuestionWeb services and SoapExceptions Pin
M.H.1.2.315-May-07 10:58
M.H.1.2.315-May-07 10:58 
AnswerRe: Web services and SoapExceptions Pin
Atif Ali Bhatti16-May-07 21:41
Atif Ali Bhatti16-May-07 21:41 
AnswerRe: Web services and SoapExceptions Pin
M.H.1.2.317-May-07 18:39
M.H.1.2.317-May-07 18:39 
QuestionDatakeynames & GridView Pin
aransiola15-May-07 10:05
aransiola15-May-07 10:05 
AnswerRe: Datakeynames & GridView Pin
dotnetcdr16-May-07 0:22
dotnetcdr16-May-07 0:22 
QuestionLifecycle question Pin
MBursill15-May-07 9:21
MBursill15-May-07 9:21 
AnswerRe: Lifecycle question Pin
Uwe Keim15-May-07 10:02
sitebuilderUwe Keim15-May-07 10:02 
GeneralRe: Lifecycle question Pin
MBursill15-May-07 10:26
MBursill15-May-07 10:26 
GeneralRe: Lifecycle question Pin
Uwe Keim15-May-07 17:56
sitebuilderUwe Keim15-May-07 17:56 
GeneralRe: Lifecycle question Pin
MBursill16-May-07 7:56
MBursill16-May-07 7:56 
QuestionTreeView needs client side code... Pin
just3ala215-May-07 8:45
just3ala215-May-07 8:45 
QuestionAbout Ajax Pin
Aaanand15-May-07 6:44
Aaanand15-May-07 6:44 
AnswerRe: About Ajax Pin
Not Active15-May-07 7:56
mentorNot Active15-May-07 7:56 
AnswerRe: About Ajax Pin
Christian Graus15-May-07 13:18
protectorChristian Graus15-May-07 13:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.