473,386 Members | 1,668 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Runtime Performance Configuration Settings

In Microsoft Knowledgebase article 821268 (http://
support.microsoft.com/?id=821268 ) there are some configuration
settings for .net v1.1

Are these the same in v2 or are their additional options?

For an application which has a .Net v2 windows form application on
client pc's and connects to .Net v2 web services. Which level (web
server of client) would these changes need to be made at and in what
config file?

Feb 6 '07 #1
6 1544
Better article at:

http://msdn2.microsoft.com/en-us/lib...hapt17_topic16

See the Web Services Tuning section for some answers to your question.

Eugen

"ro*******@hotmail.com" wrote:
In Microsoft Knowledgebase article 821268 (http://
support.microsoft.com/?id=821268 ) there are some configuration
settings for .net v1.1

Are these the same in v2 or are their additional options?

For an application which has a .Net v2 windows form application on
client pc's and connects to .Net v2 web services. Which level (web
server of client) would these changes need to be made at and in what
config file?

Feb 6 '07 #2
Am I correct in thinking that these changes to the machine.config
should be made only on the computer (client pc) that is requesting the
web services?
On Feb 6, 1:22 pm, Eugen <E...@discussions.microsoft.comwrote:
Better article at:

http://msdn2.microsoft.com/en-us/lib...scalenetchapt1...

See the Web Services Tuning section for some answers to your question.

Eugen

"robin9...@hotmail.com" wrote:
In Microsoft Knowledgebase article 821268 (http://
support.microsoft.com/?id=821268 ) there are some configuration
settings for .net v1.1
Are these the same in v2 or are their additional options?
For an application which has a .Net v2 windows form application on
client pc's and connects to .Net v2 web services. Which level (web
server of client) would these changes need to be made at and in what
config file?

Feb 6 '07 #3
Robin,

This is my understanding too.

ASP.NET Web services use the same ASP.NET runtime as ASP.NET applications.
But the bottleneck is happening in the web pages calling the web service, and
this is what is trying to get optimized, in my opinion.

Eugen

"ro*******@hotmail.com" wrote:
Am I correct in thinking that these changes to the machine.config
should be made only on the computer (client pc) that is requesting the
web services?
On Feb 6, 1:22 pm, Eugen <E...@discussions.microsoft.comwrote:
Better article at:

http://msdn2.microsoft.com/en-us/lib...scalenetchapt1...

See the Web Services Tuning section for some answers to your question.

Eugen

"robin9...@hotmail.com" wrote:
In Microsoft Knowledgebase article 821268 (http://
support.microsoft.com/?id=821268 ) there are some configuration
settings for .net v1.1
Are these the same in v2 or are their additional options?
For an application which has a .Net v2 windows form application on
client pc's and connects to .Net v2 web services. Which level (web
server of client) would these changes need to be made at and in what
config file?


Feb 6 '07 #4
I mean, the optimization should be implemented on the server where the
ASP.NET web pages are running. Most likely, this is not the client pc but a
corporate server where the ASP.NET pages resides, right?

Eugen

"Eugen" wrote:
Robin,

This is my understanding too.

ASP.NET Web services use the same ASP.NET runtime as ASP.NET applications.
But the bottleneck is happening in the web pages calling the web service, and
this is what is trying to get optimized, in my opinion.

Eugen

"ro*******@hotmail.com" wrote:
Am I correct in thinking that these changes to the machine.config
should be made only on the computer (client pc) that is requesting the
web services?
On Feb 6, 1:22 pm, Eugen <E...@discussions.microsoft.comwrote:
Better article at:
>
http://msdn2.microsoft.com/en-us/lib...scalenetchapt1...
>
See the Web Services Tuning section for some answers to your question.
>
Eugen
>
"robin9...@hotmail.com" wrote:
In Microsoft Knowledgebase article 821268 (http://
support.microsoft.com/?id=821268 ) there are some configuration
settings for .net v1.1
>
Are these the same in v2 or are their additional options?
>
For an application which has a .Net v2 windows form application on
client pc's and connects to .Net v2 web services. Which level (web
server of client) would these changes need to be made at and in what
config file?
Feb 6 '07 #5
To clarify the 3 tier system has a .Net Windows application which
calls a .Net web service (on web server) which connects to a SQL
Server on another server.
>From this you are saying that the changes should be made on the Web
Service layer and not the client pc?
On Feb 6, 3:29 pm, Eugen <E...@discussions.microsoft.comwrote:
I mean, the optimization should be implemented on the server where the
ASP.NET web pages are running. Most likely, this is not the client pc but a
corporate server where the ASP.NET pages resides, right?

Eugen

"Eugen" wrote:
Robin,
This is my understanding too.
ASP.NET Web services use the same ASP.NET runtime as ASP.NET applications.
But the bottleneck is happening in the web pages calling the web service, and
this is what is trying to get optimized, in my opinion.
Eugen
"robin9...@hotmail.com" wrote:
Am I correct in thinking that these changes to the machine.config
should be made only on the computer (client pc) that is requesting the
web services?
On Feb 6, 1:22 pm, Eugen <E...@discussions.microsoft.comwrote:
Better article at:
http://msdn2.microsoft.com/en-us/lib...scalenetchapt1...
See the Web Services Tuning section for some answers to your question.
Eugen
"robin9...@hotmail.com" wrote:
In Microsoft Knowledgebase article 821268 (http://
support.microsoft.com/?id=821268 ) there are some configuration
settings for .net v1.1
Are these the same in v2 or are their additional options?
For an application which has a .Net v2 windows form application on
client pc's and connects to .Net v2 web services. Which level (web
server of client) would these changes need to be made at and in what
config file?

Feb 7 '07 #6
Robin,

The settings from the article you've indicated are trying to solve
performance problems when calling a web service from an ASP.NET application,
trying to optimize the performance of the ASP.NET processes. This is my
understanding. Are you sure that your performance issues does not resides in
the way your client application is written, threads locking, etc.?

Eugen

"ro*******@hotmail.com" wrote:
To clarify the 3 tier system has a .Net Windows application which
calls a .Net web service (on web server) which connects to a SQL
Server on another server.
From this you are saying that the changes should be made on the Web
Service layer and not the client pc?
On Feb 6, 3:29 pm, Eugen <E...@discussions.microsoft.comwrote:
I mean, the optimization should be implemented on the server where the
ASP.NET web pages are running. Most likely, this is not the client pc but a
corporate server where the ASP.NET pages resides, right?

Eugen

"Eugen" wrote:
Robin,
This is my understanding too.
ASP.NET Web services use the same ASP.NET runtime as ASP.NET applications.
But the bottleneck is happening in the web pages calling the web service, and
this is what is trying to get optimized, in my opinion.
Eugen
"robin9...@hotmail.com" wrote:
Am I correct in thinking that these changes to the machine.config
should be made only on the computer (client pc) that is requesting the
web services?
On Feb 6, 1:22 pm, Eugen <E...@discussions.microsoft.comwrote:
Better article at:
>http://msdn2.microsoft.com/en-us/lib...scalenetchapt1...
See the Web Services Tuning section for some answers to your question.
Eugen
"robin9...@hotmail.com" wrote:
In Microsoft Knowledgebase article 821268 (http://
support.microsoft.com/?id=821268 ) there are some configuration
settings for .net v1.1
Are these the same in v2 or are their additional options?
For an application which has a .Net v2 windows form application on
client pc's and connects to .Net v2 web services. Which level (web
server of client) would these changes need to be made at and in what
config file?


Feb 7 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Ajay Pal Singh | last post by:
Hi, I am creating a web service, which needs to take some actions based on the config file. I need a way to listen the changes as they occur in the config file so that the service can take...
7
by: Yongsub Eric Shin | last post by:
Hi. I'm just a beginner in ASP.Net. I started writing codes and I keep on getting this Runtime Error page, where it says "Description: An application error occurred on the server. The current...
12
by: Kevin Farless | last post by:
Hi all, I'm having trouble viewing any .aspx pages on my hosting company's server. The server is a new box running Windows Server 2003 default installation. I'm the first client to try using...
1
by: Sankalp | last post by:
Hi, I am using VB 2005. My application has many data bound controls. The connection is stored in the app.config file. I want the application to start with a default connection string and while...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.