surajit khamrai
surajit khamrai

Reputation:

Call WebService using HTTPWebRequest object

i want to consuming a web service with HTTPWebRequest object the web service may be written using java.(doon't want to consume adding web reference)

Upvotes: 2

Views: 6979

Answers (1)

Raymond
Raymond

Reputation: 609

Marcin provides a sample in his blog: Link .

Though it's consuming a .net based web service, but it doesn't make difference from the consumer's point of view.

The basic idea is you need to compose a soap request message and send it to server properly.

Upvotes: 5

Related Questions