473,408 Members | 1,746 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

What is HTTP SOAP ?

Hi,

This article states the following in relation to ASP.NET default test
harness web pages.

"These test pages can be used to invoke your WebMethods, but the test
harness does this by making HTTP POST requests to the server rather than
HTTP SOAP requests. SoapExtensions only work with SOAP requests, and thus
any requests to your Web service made using the default test page will
result in your extensions not being used."

Is this a typo because I can't seem to find anything out about HTTP SOAP. If
I want my SOAP extensions to alwyas run, do I have to disable HTTP POST
request?
Thanks,
Andy
Aug 30 '06 #1
7 1610
HTTP-Post is when the Content-Type of the data-submitted to the server is:

"application/x-www-form-urlencoded"

Whereas HTTP-SOAP is the popular web-service thing where the Content-Type is
"text/xml" and the content given to the server is a SOAP Message.
Note that for both of these things, the "POST" method of the HTTP protocol
is used.
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://www.edujini.in | http://articles.edujini.in/webservices
-------------------
"Andy Kendall" <no*************@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Hi,

This article states the following in relation to ASP.NET default test
harness web pages.

"These test pages can be used to invoke your WebMethods, but the test
harness does this by making HTTP POST requests to the server rather than
HTTP SOAP requests. SoapExtensions only work with SOAP requests, and thus
any requests to your Web service made using the default test page will
result in your extensions not being used."

Is this a typo because I can't seem to find anything out about HTTP SOAP.
If
I want my SOAP extensions to alwyas run, do I have to disable HTTP POST
request?
Thanks,
Andy


Sep 3 '06 #2
Thanks for that. It kind of makes sense to me but I still don't understand
exactly what Content-Type means. Also, what is defining HTTP-SOAP? As I
understand it SOAP should know nothing of HTTP and HTTP nothing of SOAP. Is
there some kind of extensibility mechanism in HTTP at play here?Can you
recommend a link or book which describes these things because the
information I have found doesn't seem too great.

Regards,

Andy
"Gaurav Vaish (www.EduJini.IN)" <ga*****************@nospam.gmail.comwrote
in message news:Oy**************@TK2MSFTNGP05.phx.gbl...
HTTP-Post is when the Content-Type of the data-submitted to the server is:

"application/x-www-form-urlencoded"

Whereas HTTP-SOAP is the popular web-service thing where the Content-Type
is
"text/xml" and the content given to the server is a SOAP Message.
Note that for both of these things, the "POST" method of the HTTP protocol
is used.
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://www.edujini.in | http://articles.edujini.in/webservices
-------------------
"Andy Kendall" <no*************@hotmail.comwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
Hi,

This article states the following in relation to ASP.NET default test
harness web pages.

"These test pages can be used to invoke your WebMethods, but the test
harness does this by making HTTP POST requests to the server rather than
HTTP SOAP requests. SoapExtensions only work with SOAP requests, and
thus
any requests to your Web service made using the default test page will
result in your extensions not being used."

Is this a typo because I can't seem to find anything out about HTTP
SOAP.
If
I want my SOAP extensions to alwyas run, do I have to disable HTTP POST
request?
Thanks,
Andy


Sep 6 '06 #3
Hi,
Thanks for that. It kind of makes sense to me but I still don't understand
exactly what Content-Type means. Also, what is defining HTTP-SOAP? As I
'd suggest to search on google for "application/x-www-url-encoded" and you
may get a lot more idea.
At the same time, I'll also ensure that I do find some time in next couple
of days to prepare a small introductory article on the same.
You may want to subscribe to the webservices blog given below ;-)

understand it SOAP should know nothing of HTTP and HTTP nothing of SOAP.
Is
there some kind of extensibility mechanism in HTTP at play here?Can you
recommend a link or book which describes these things because the
information I have found doesn't seem too great.
There's no need for any book.
Just a simple understanding of the HTTP protocol would suffice.

Or if you can, have patience till the weekend to the latest... you should
surely get something from me. :-)
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://articles.edujinionline.com/webservices
-------------------
Sep 6 '06 #4
Or if you can, have patience till the weekend to the latest... you should
surely get something from me. :-)
Here it goes...
http://articles.edujinionline.com/we...p-post-vs.html
Hope it helps... :-)
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://articles.edujinionline.com/webservices
-------------------
Sep 6 '06 #5
Thanks Gaurav that was a great help! If only all answers on forums could be
so useful.....

"Gaurav Vaish (www.EduJiniOnline.com)"
<ga*****************@nospam.gmail.comwrote in message
news:ev***************@TK2MSFTNGP06.phx.gbl...
>
Or if you can, have patience till the weekend to the latest... you
should
surely get something from me. :-)

Here it goes...
http://articles.edujinionline.com/we...p-post-vs.html
>

Hope it helps... :-)
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://articles.edujinionline.com/webservices
-------------------


Sep 7 '06 #6
Thanks Gaurav that was a great help! If only all answers on forums could
be
so useful.....
At least 99.999% should be... and then there are MVP's here!
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://articles.edujinionline.com/webservices
-------------------
Sep 7 '06 #7
Hi Andy,

You can disable HTTP Handler in the webservice. You can only alow "SOAP
Handler" which will disable the HTTP Post and HTTP Get. Please open the
webservice project file in a notepad and see the handlers.

For more information please go through the documentation of WSE 2.0 OR WSE
3.0.

Thanks.
Sarbillgates

"Gaurav Vaish (www.EduJiniOnline.com)" wrote:
Thanks Gaurav that was a great help! If only all answers on forums could
be
so useful.....

At least 99.999% should be... and then there are MVP's here!
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://articles.edujinionline.com/webservices
-------------------
Sep 12 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

17
by: Patrick | last post by:
I am almost certain that I could use HTTP Post/Get to submit XML Web Service call (over SSL as well, if using Version 3 of MSXML2) from an ASP Application? However, would I only be able to call...
0
by: jim.long | last post by:
I am trying to write a custom WSDL file to interface with a SOAP::Lite server. I am comming from an IIS server running ASP. I have network snoops if they are needed. Could someone with more...
0
by: ramas | last post by:
Hi, I am new to PHP scripting and i am trying to connect to a soap server (as mentioned below) using the SOAP extension comesup with PHP. Now my requirement is to add my HTTP header fields along...
4
by: Mark | last post by:
i have a very simple web servive Imports System.Web.Services <System.Web.Services.WebService(Namespace:="urn:Example1")> _ Public Class Example1 Inherits System.Web.Services.WebService
8
by: xmail123 | last post by:
Hi, As was pointed out whatever you return from a WebMethod needs to be serializable to SOAP. An ArrayList is not serializable. I will be needing to return other data types from web methods. ...
3
by: GT | last post by:
I have a .NET client that consumes an Axis web service. A change was made recently to the AXIS web service, and ever since then my .NET proxy class has been throwing an InvalidCastException. The...
0
by: tshad | last post by:
I am trying to create a proxy and soap from a sample file and it won't create multiple dimensional arrays for some reason. I am getting the same results if "Line" is not a Multidimensional array. ...
0
by: Philluminati | last post by:
I have a Perl SOAP Server which returns this SOAP Message when invoked: <?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:xsi="http:// www.w3.org/2001/XMLSchema-instance"...
2
by: monsalvo | last post by:
What's so wrong with my code? This line is part of a VBScript soap client part of a DTS wich is functional in a 90 percent. strText = .responseXML.selectSingleNode("//" login "loginReturn") ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.