help with .NET cliet to consume java webservice

  • Thread starter Thread starter Abeslom via .NET 247
  • Start date Start date
A

Abeslom via .NET 247

Hi, I am trying to create a simple .NET http-Get client that willconsume a java webservice on a mainframe. If I type the URL forthe webservice in the Browser, the service works and I get theexpected response back. However, when try to download the pageby creating a simple http-get client, I get server not founderror (404). Please let me know if you have any idea.

Thanks in advance!
 
Hi Abeslom,

Did you already tried the (small) newsgroup

microsoft.public.dotnet.framework.webservices

I know that Jan Tielens is active there a very smart guy, however I assume
there are more there.

I hope this helps?

Cor

Hi, I am trying to create a simple .NET http-Get client that will consume a
java webservice on a mainframe. If I type the URL for the webservice in the
Browser, the service works and I get the expected response back. However,
when try to download the page by creating a simple http-get client, I get
server not found error (404). Please let me know if you have any idea.
 
Have you looked at the obvious things, like making sure a network proxy
isn't getting in the way, or passing neccesary credentials to authenticate
you to the remote web service. If your using IE to check access then it may
be doing authentication passthrough - so turn this off in your browser and
see what you get back. Also, if the service expects to pass cookies then
your browser would take them but you will need to create a cookie cache in
your client to consume the service. Also, the web service may not actually
permit a get request.


Regards

John Timney
Microsoft Regional Director
Microsoft MVP


Hi, I am trying to create a simple .NET http-Get client that will consume a
java webservice on a mainframe. If I type the URL for the webservice in the
Browser, the service works and I get the expected response back. However,
when try to download the page by creating a simple http-get client, I get
server not found error (404). Please let me know if you have any idea.

Thanks in advance!
 
Back
Top