Click here to Skip to main content
15,903,854 members
Home / Discussions / C#
   

C#

 
QuestionRe: Consume a webservice in a WebApplicationnew Pin
AS@1317-Jul-08 23:52
AS@1317-Jul-08 23:52 
AnswerRe: Consume a webservice in a WebApplicationnew Pin
enginço18-Jul-08 0:03
enginço18-Jul-08 0:03 
QuestionRe: Consume a webservice in a WebApplicationnew Pin
AS@1318-Jul-08 0:11
AS@1318-Jul-08 0:11 
AnswerRe: Consume a webservice in a WebApplicationnew Pin
enginço18-Jul-08 0:35
enginço18-Jul-08 0:35 
QuestionRe: Consume a webservice in a WebApplicationnew Pin
AS@1318-Jul-08 0:56
AS@1318-Jul-08 0:56 
QuestionUse NGEN with WebDeployment Pin
Merlin Tintin17-Jul-08 23:06
Merlin Tintin17-Jul-08 23:06 
AnswerRe: Use NGEN with WebDeployment Pin
Scott Dorman18-Jul-08 1:09
professionalScott Dorman18-Jul-08 1:09 
AnswerRe: Use NGEN with WebDeployment Pin
Simon P Stevens18-Jul-08 2:00
Simon P Stevens18-Jul-08 2:00 
I agree with Scott here. I can't think of any good reason to use NGEN on a web app.

All NGEN does is pre-JIT the IL to native assembly. This has lots of implications as it means the CLR can no longer run optimisations as it jits. The CLR is very effcient, it can often optimise things as it goes along because it knows the context it is running in. By using NGEN you remove that optimisation.

The normal performance benifit associated with NGEN is improved cold start up times as the CLR doesn't have to jit compile methods before it can run them. Once the app is started though, the CLR caches jit compiled stuff so it doesn't have to do it again. By the very nature of a web app, cold start up time is irrelevant, it is just continuously running, so only the very first user will experience any slow down related to jitting, after that, the assembly is cached and no more jit compilation is required.

Simon

GeneralRe: Use NGEN with WebDeployment Pin
Merlin Tintin18-Jul-08 4:17
Merlin Tintin18-Jul-08 4:17 
GeneralRe: Use NGEN with WebDeployment Pin
Daniel Grunwald18-Jul-08 6:06
Daniel Grunwald18-Jul-08 6:06 
GeneralRe: Use NGEN with WebDeployment Pin
Simon P Stevens18-Jul-08 7:59
Simon P Stevens18-Jul-08 7:59 
QuestionAbout Event Handlig - KeyDown Pin
selcuks17-Jul-08 23:00
selcuks17-Jul-08 23:00 
AnswerRe: About Event Handlig - KeyDown Pin
enginço17-Jul-08 23:50
enginço17-Jul-08 23:50 
AnswerRe: About Event Handlig - KeyDown Pin
Mbah Dhaim18-Jul-08 0:11
Mbah Dhaim18-Jul-08 0:11 
GeneralRe: About Event Handlig - KeyDown Pin
selcuks18-Jul-08 0:23
selcuks18-Jul-08 0:23 
GeneralRe: About Event Handlig - KeyDown Pin
enginço18-Jul-08 0:50
enginço18-Jul-08 0:50 
GeneralRe: About Event Handlig - KeyDown Pin
selcuks18-Jul-08 1:04
selcuks18-Jul-08 1:04 
GeneralRe: About Event Handlig - KeyDown Pin
enginço18-Jul-08 1:22
enginço18-Jul-08 1:22 
GeneralRe: About Event Handlig - KeyDown Pin
selcuks18-Jul-08 2:00
selcuks18-Jul-08 2:00 
GeneralRe: About Event Handlig - KeyDown Pin
enginço18-Jul-08 2:26
enginço18-Jul-08 2:26 
QuestionHttp 502 and 503 errors Pin
George_George17-Jul-08 21:38
George_George17-Jul-08 21:38 
AnswerRe: Http 502 and 503 errors Pin
N a v a n e e t h17-Jul-08 22:29
N a v a n e e t h17-Jul-08 22:29 
GeneralRe: Http 502 and 503 errors Pin
George_George17-Jul-08 22:36
George_George17-Jul-08 22:36 
GeneralRe: Http 502 and 503 errors Pin
N a v a n e e t h17-Jul-08 23:41
N a v a n e e t h17-Jul-08 23:41 
GeneralRe: Http 502 and 503 errors Pin
George_George17-Jul-08 23:45
George_George17-Jul-08 23:45 

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.