In my winform application, to access webmethod, we create a webservice
proxy object. For the first time, when winform application is started,
for creating proxy object(e.g. MyWebServiceProxy oProxy = new
MyWebServiceProxy() )it takes a long time(appr. 2 seconds), but for
the next time it happens in 0-10 milli-seconds.
For each proxy object for first time creation it takes looong time.
One reason I know is because of JIT compilation(MSIL is converted into
m/c code each time.)
What can be other reasons? How can I speed-up proxy creation at first
time?
Note: I cannot use NGen bcoz of limitations of NGen(requires admin
login)
Pls help me.
Thanx and regards
Atul