What is the use of trace utility ?

Answers were Sorted based on User's Feedback



What is the use of trace utility ?..

Answer / guest

The Microsoft? Simple Object Access Protocol (SOAP) Toolkit
2.0 includes a TCP/IP trace utility, MSSOAPT.EXE. You use
this trace utility to view the SOAP messages sent by HTTP
between a SOAP client and a service on the server.
Using the Trace Utility on the Server
To see all of a service's messages received from and sent to
all clients, perform the following steps on the server.
0. On the server, open the Web Services Description Language
(WSDL) file.
1. In the WSDL file, locate the <soap:address> element that
corresponds to the service and change the location attribute
for this element to port 8080. For example, if the location
attribute specifies <http://MyServer/VDir/Service.wsdl>
change this attribute to
<http://MyServer:8080/VDir/Service.wsdl>.
2. Run MSSOAPT.exe.
3. On the File menu, point to New, and either click
Formatted Trace (if you don't want to see HTTP headers) or
click Unformatted Trace (if you do want to see HTTP headers).
4. In the Trace Setup dialog box, click OK to accept the
default values.
Using the Trace Utility on the Client
To see all messages sent to and received from a service, do
the following steps on the client.
5. Copy the WSDL file from the server to the client.
6. Modify location attribute of the <soap:address> element
in the local copy of the WSDL document to direct the client
to localhost:8080 and make a note of the current host and
port. For example, if the WSDL contains
<http://MyServer/VDir/Service.wsdl>, change it to
<http://localhost:8080/VDir/Service.wsdl> and make note of
"MyServer".
7. On the client, run MSSOPT.exe.
8. On the File menu, point to New, and either click
Formatted Trace (if you don't want to see HTTP headers) or
click Unformatted Trace (if you do want to see HTTP headers).
9. In the Destination host box, enter the host specified in
Step 2.
10. In the Destination port box, enter the port specified in
Step 2.
11. Click OK.

Is This Answer Correct ?    1 Yes 0 No

What is the use of trace utility ?..

Answer / murali

Tracing is a very important monitoring and debugging tool
for distributed, multitier applications. Such applications
often contain problems that can only be observed when the
application is under a heavy load and the inherent
randomness of a real-life environment. Trace utility allows
developers and administrators to monitor the health of
applications running in real-life settings.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

What is meant by viewdata?

0 Answers  


What is Peek method in Tempdata in ASP.Net MVC?

0 Answers  


What are the levels at which filters can be applied in an asp.net mvc application?

0 Answers   NA,


The order of the filters that get executed, if the multiple filters are implemented?

0 Answers  


Is the lack of deterministic destruction in .NET a problem

1 Answers  






what is explicit loading?

0 Answers   Microsoft,


how do you query in entity model when the result has a join from from different database other than the entity model?

0 Answers   Microsoft,


Is it possible to unit test an mvc application without running the controllers in an asp.net process?

0 Answers  


In razor syntax, what is the escape sequence character for @ symbol?

0 Answers  


what is entity framework advantage?

0 Answers   Microsoft,


Can we free memory explicitly without waiting for garbage collector to free the memory in .net compact framework?

0 Answers  


How to identify the Code which Complies corresponding Compiler in .NET? Means Suppose, i am taking One project A.. in which code is implemented using C# langugge. And Another Project B..in Which Code is implemented using VB.NET. Suppose I am creating Project C. i am adding Reference of Project A and B to Project C. So, in Project C, how to identify Project A is Complied through CSCompliler? And Project B is Compiled VBCompiler at Runtime?

1 Answers  


Categories