473,411 Members | 2,030 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,411 software developers and data experts.

WSDL = SOAP?

When people discuss XML Web Services in the context of .NET, and they talk
about their WSDL file and the like, does this infer SOAP? Or are there other
XML-based web protocols besides SOAP that depend on WSDL files?

WSDL aside, on the .NET platform, when people discuss XML Web Services, is
SOAP typically inferred?

Just asking about everyday industry conversation here. I seem to be on
another page with some people, as I assume SOAP (and not REST or XML-RPC or
anything else) when people put .NET and XML web services in the same
sentence and don't mention their protocol.

Jon
Sep 6 '06 #1
4 1517
"Jon Davis" <jo*@REMOVE.ME.PLEASE.jondavis.netwrote in message
news:O2**************@TK2MSFTNGP03.phx.gbl...
When people discuss XML Web Services in the context of .NET, and they talk
about their WSDL file and the like, does this infer SOAP? Or are there
other XML-based web protocols besides SOAP that depend on WSDL files?

WSDL aside, on the .NET platform, when people discuss XML Web Services, is
SOAP typically inferred?

Just asking about everyday industry conversation here. I seem to be on
another page with some people, as I assume SOAP (and not REST or XML-RPC
or anything else) when people put .NET and XML web services in the same
sentence and don't mention their protocol.
Most XML web services use SOAP, but this is not required. The WSDL file can
specify more than one transport, more than one encoding, etc. One could use
encrypted and compressed binary over SMTP if needed, and you'd still specify
it with a WSDL document.

I don't know of any reason to use XML-RPC in new development. It was a
starting point for SOAP, but SOAP has left it far behind.

John
Sep 6 '06 #2
Most XML web services use SOAP, but this is not required. The WSDL file
can specify more than one transport, more than one encoding, etc. One
could use encrypted and compressed binary over SMTP if needed, and you'd
still specify it with a WSDL document.
SMTP? But then what is the 'W' in WSDL?

I'm familiar with WSDL enough to have my own opinion but would you say that
WSDL is, in function / purpose, akin to a DTD / schema but specifically for
transport / deserialization?

Jon
"John Saunders" <john.saunders at trizetto.comwrote in message
news:u6**************@TK2MSFTNGP04.phx.gbl...
"Jon Davis" <jo*@REMOVE.ME.PLEASE.jondavis.netwrote in message
news:O2**************@TK2MSFTNGP03.phx.gbl...
>When people discuss XML Web Services in the context of .NET, and they
talk about their WSDL file and the like, does this infer SOAP? Or are
there other XML-based web protocols besides SOAP that depend on WSDL
files?

WSDL aside, on the .NET platform, when people discuss XML Web Services,
is SOAP typically inferred?

Just asking about everyday industry conversation here. I seem to be on
another page with some people, as I assume SOAP (and not REST or XML-RPC
or anything else) when people put .NET and XML web services in the same
sentence and don't mention their protocol.

Most XML web services use SOAP, but this is not required. The WSDL file
can specify more than one transport, more than one encoding, etc. One
could use encrypted and compressed binary over SMTP if needed, and you'd
still specify it with a WSDL document.

I don't know of any reason to use XML-RPC in new development. It was a
starting point for SOAP, but SOAP has left it far behind.

John


Sep 6 '06 #3
SMTP? But then what is the 'W' in WSDL?

Still Web.
Well... 'W' cannot be read without 'S'.
So, 'WS'-'D'-'L'... A description language describing a WebService.

If one looks at the bindings section of WSDL, it would be clear that:

1. WSDL can have a SOAP binding.
Other bindings are also possible
2. The WebService location can be an HTTP URL
For SMTP, the location may be an email address.

I'm familiar with WSDL enough to have my own opinion but would you say
that WSDL is, in function / purpose, akin to a DTD / schema but
specifically for transport / deserialization?
Kind of... yes.
Specifying what is the content to be sent and received on the wire and
to/from what location.
--
Happy Hacking,
Gaurav Vaish | http://www.mastergaurav.com
http://articles.edujinionline.com/webservices
-------------------
Sep 6 '06 #4
"Jon Davis" <jo*@REMOVE.ME.PLEASE.jondavis.netwrote in message
news:%2****************@TK2MSFTNGP02.phx.gbl...
>Most XML web services use SOAP, but this is not required. The WSDL file
can specify more than one transport, more than one encoding, etc. One
could use encrypted and compressed binary over SMTP if needed, and you'd
still specify it with a WSDL document.

SMTP? But then what is the 'W' in WSDL?
W == "Web", so what? Were you serious?
I'm familiar with WSDL enough to have my own opinion but would you say
that WSDL is, in function / purpose, akin to a DTD / schema but
specifically for transport / deserialization?
No. It describes one or more web services; it describes the messages they
use to communicate, including the schema(s) which describe the messages; it
describes the operations of the web service, and groups of those operations;
and it describes the bindings between the groups of operations and a
particular transport.

This is not quite a schema for web services, in my opinion. It's more
dynamic than a schema or DTD.

John
Sep 7 '06 #5

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

Similar topics

24
by: Generic Usenet Account | last post by:
Does anyone have an opinion on how IDL and WSDL compare to each other? Are they equally powerful in their "expressive power"? Sometimes it appears to me that IDL is a little easier for humans to...
5
by: relaxedrob | last post by:
Hi All! I ran the following w3c example through my WSDL parser (SOA Editor from Cape Clear): http://www.w3.org/TR/wsdl#_rpcexample It told me that there were a bunch of erros about no...
0
by: Sonna Nach | last post by:
Hi All, I am writing a doc/lit web services, in which the elements under SOAPBody is unknown. That is, these two message are acceptable. 1. <SOAP-ENV:Body><Tag1>It is ok</Tag1></SOAP-ENV:Body>...
1
by: ffhansix | last post by:
Hi, I am having problems with generating a c# proxy class from a IBM websphere WSDL file, when running the wsdl.exe to create the c# proxy file command i recieve an error: Warning: one or...
0
by: Dave | last post by:
Hi, If anyone could help with this, I would greatly appreciate it! I've created my own WSDL file and referenced an XSD file too. I've generated a service side interface using wsdl /server, and...
0
by: Elhanan | last post by:
hi.. i have a small Web Service which is consumed by dotnet application the webservice is located in 2 places. the first is my local tomcat, and the second is in websphere server. problems is...
0
by: Jigar.Patel | last post by:
I have simple remoting server exposing following simple method. When I try to add webreference to this server in another project, it gives me following error: Custom tool error: Unable to import...
0
by: robert | last post by:
Hi all, I'm having a hard time resolving a namespace issue in my wsdl. Here's an element that explains my question, with the full wsdl below: <definitions name="MaragatoService"...
3
by: Siva | last post by:
Hi all, I want to Convert a WSDL to a SOAP message. Is there any way to do this. I am using .NET 2.0 Thanks in Advance Siva
0
by: StephenLiversidge | last post by:
Hi im having a problem with my wsdl, It generates perfectly and I can create the objects needed from the contract perfectly. The problem comes when I try to pass the object back into the...
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
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
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...

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.