Ask a Question related to ASP.NET Web Services, Design and Development.
-
bill #1
How to log the http post message on the client
Is there a way to log the actual outgoing http post message on a Web
Services client? I am calling a Java Web Services. I have to use HTTP POST
in my native C++ code. What I can do is writing a C# client and try to see
what's been sent out. Then, I can then try to do a HTTP POST in my C++ code
following the format I have from the C# client.
I found there is something called SOAPExtension. But, it involves the change
on the server side, and it seems to me that it is .NET specific.
Thanks for your help.
bill Guest
-
Updating db after HTTP POST
On my cart confirm page I have one form that submits to PayPal, taking the customer to the PP site to pay for their order. PayPal will eventually... -
HTTP POST ASP .NET
Could someone PLEASE explain how do I use HTTP POST in ASP .NET to get an xml string from a server that exposes a web service? My IIS server will... -
HTTP POST sample
I need to do the following using vbscript. Using HTTP POST upload a XML-RPC file and DownLoad using same an XML-RPC file Does anyone know of a... -
TimeoutError in Net::HTTP get and post
I'm trying to rescue a TimeoutError in Net::HTTP's get and post methods, but it's not working. I noticed some postings about how the rescue... -
doing an http post
For the benefit of others, I want to show how to do an HTTP POST request using fsockopen(). I banged my head against a wall for two days trying to... -
bill #2
Re: How to log the http post message on the client
Hi Marvin,
I ended up using ProxyTrace for that. It works pretty well for .NET clients.
I have to set the proxy server in web.config ot ProxyTrace. I would like to
use it to intercept HTTP POST from non .NET applications.
Do you know how to set the proxy server for the whole system? I tried to set
it in Internet Explorer. It only affects tracffic from/to Internet Explorer.
Thanks for your help.
"Marvin Smit" <marvin.smit@gmail.com> wrote in message
news:9cche1tdhmk7hqvqhj8l1v3b2nohgr8l21@4ax.com...POST> Hi,
>
> for all your tracing needs ;) :
>
> - [url]www.sysinternals.com[/url] -> TcpTrace
> - Old but usefull -> Microsofts SOAPTrace
> - WSE installed -> Turn on logging in the config file.
>
> Hope this helps,
>
> Marvin Smit.
>
> On Wed, 27 Jul 2005 18:27:49 -0700, "bill" <bill@nospamland.com>
> wrote:
>> >Is there a way to log the actual outgoing http post message on a Web
> >Services client? I am calling a Java Web Services. I have to use HTTPsee> >in my native C++ code. What I can do is writing a C# client and try tocode> >what's been sent out. Then, I can then try to do a HTTP POST in my C++change> >following the format I have from the C# client.
> >
> >I found there is something called SOAPExtension. But, it involves the>> >on the server side, and it seems to me that it is .NET specific.
> >
> >Thanks for your help.
> >
bill Guest
-
cksanjose@gmail.com #3
Re: How to log the http post message on the client
Bill,
Can you do something like this:
IWebProxy mWebProxy;
mWebProxy = New WebProxy("172.20.1.1"); //IP address of the
proxy server
mywebservice.Proxy = mWebProxy;
This will setup you web service to use the proxy server.
I hope this helps.
Cesar
cksanjose@gmail.com Guest



Reply With Quote

