cancel
Showing results for 
Search instead for 
Did you mean: 

about wsdl

Former Member
0 Kudos

what is there inside of the wsdl after saving the web service ineterface

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

hi

WSDL is nothing but the web service

it gives the complete information about the web serive.

WSDL define the compleete functionality of the web service

wsdl support the SOAP protocol

it contain the 6 element

defination-this is root node

type-contian the one or more element

message-define the xml message

prototype-define the abstract web service

binding

service

these are 6 element of web service

thanks

Regards

vijay

Former Member
0 Kudos

Hi ramakrishna,

WSDL provide the description for your Web Service.

It contains the message structure, data types and formats which is useful for sending and receiving data from Web Services.

WSDL is a standard defined by OASIS and based on that standard , every technology/tool can interpret it.

There are tools available in market with every technology like ABAP JAVA and .Net which can read this WSDL and generate automatically code for complex XML and SOAP conversion like proxies in ABAP. You have to write simple code to communicate to proxies . Proxies will then hides the complexity of complex Conversion of your native language from XML/SOAP and would send / Receive messages from and to web service.

Hope this helps.

Regards,

Piyush

Former Member
0 Kudos

Actually a WSDL document contains the following elements

Types – a container for data type definitions using some type system (such as XSD).

Message – an abstract, typed definition of the data being communicated.

Operation – an abstract description of an action supported by the service.

Port Type –an abstract set of operations supported by one or more endpoints.

Binding – a concrete protocol and data format specification for a particular port type.

Port – a single endpoint defined as a combination of a binding and a network address.

Service – a collection of related endpoints.

Just go thro' this link...and read throughly ..u will understand WSDL structure

http://www.w3.org/TR/wsdl#_service

Former Member
0 Kudos

Hi

The wsdl is web service description language.

The wsdl defines the complete functionality of the web service.

Means the input parametes to the web service and the output parameters of the web service.

Thanks

Rinku

Former Member
0 Kudos

Hi,

The WSDL gives the details of the Web service like the request data structure/response data strcuture, action, Web service link etc

Regards

Vijaya