Also here is one more
http://searchsoa.techtarge
Main Topics
Browse All TopicsI need my web service to log the SOAP/XML information into a flat file. Since the web service can be consumed by a third party, I cannot put the soap extension on the client.
How can I make the web service log the SOAP Request/Response? Do I use Application_BeginRequest in the Global.asax?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Also here is one more
http://searchsoa.techtarge
On your first link, I tried that code. The Ebay thing did not work. Darn. I will try the other link. So far, I only got one example where the Soap Extension worked...but it was reference through a client exe calling the web service.
I tried with the second link and it did not work. Should I upload the code? Right now, I have a project named TraceExtension. It has all the code to do the soap extension. I then have a SoapTestWeb that is the web service. It does have a reference to TraceExtension.
Here is the web service:
[WebMethod, TraceExtension.TraceExtens
public Address HelloWorld()
{
Address address = new Address();
address.Street = "123 Main St.";
address.City = "Klamath Falls";
address.State = "Oregon";
address.ZipCode = "97600";
return address;
}
}
public class Address
{
public String Street;
public String City;
public String State;
public String ZipCode;
}
I also have this in the web.config file:
<webServices>
<soapExtensionTypes>
<add type="TraceExtension, TraceExtension" priority="1" group="High" />
</soapExtensionTypes>
</webServices>
Yet, when I go into debug, it does not hit the TraceExtension. It is suppose to write to a log file...no such luck.
Business Accounts
Answer for Membership
by: shivaspkPosted on 2008-05-28 at 17:31:24ID: 21665382
Here is a link which may help you
gi-bin/eba y.cfg/php/ enduser/ st d_adp.php? p_faqid=35 0
http://ebay.custhelp.com/c
I am a java guy, it really simpler to achieve in java as we have something called handlers :)