< 1 2 3 4 5 6 7 > >>   ∑:406  Sort:Date

Introduction to SOAP (Simple Object Access Protocol)
This chapter provides a quick introduction to SOAP (Simple Object Access Protocol).
2023-11-22, 2830🔥, 8💬

💬 2023-11-22 Pat: Hello

💬 2016-09-22 saaaa: good

💬 2016-04-20 abc: good content....

💬 2016-03-08 shilpa: great

💬 2015-08-21 jim: good site

GetCountries - Usage Description
This section describes the free Web service GetCountries provided by WebserviceX.NET. GetCountries allows you to retrieve names of all countries and territories in the world.
2018-10-20, 2706🔥, 4💬

💬 2018-10-20 Herong: Wendy, thanks for information. Looks like webservicex.net has stopped their Web services.

💬 2018-10-06 Wendy: http://www.webservicex.net/ is not working.

💬 2017-01-08 Herong: Bessie, thanks for sharing the information.

💬 2017-01-07 Bessie: For SoapUI 5.3 on Mac OSX, these steps got me the project: - File > Create Empty Project (for me it made Project 3) - right-clic...

"GetStockPrice" Web Service - WSDL 1.1 and SOAP 1.2
"GetStockPrice" is an RPC method based Web service for testing purpose only. High level information about this "GetStockPrice" Web service: WSDL Document: GetStockPrice_WSDL_11_SOAP_12_ RPC.wsdl. WSDL Version: 1.1 WSDL Binding Extension: SOAP 1.2 Transportation: SOAP 1.2 over HTTP Operation Name: Ge...
2021-03-11, 2699🔥, 0💬

"Reservation" Web Service - WSDL 1.1 and SOAP 1.1
"Reservation" is an XML document based Web service for testing purpose only. High level information about this "Reservation" Web service: WSDL Document: Reservation_WSDL_11_SOAP_11_Do cument.wsdl. WSDL Version: 1.1 WSDL Binding Extension: SOAP 1.1 Transportation: SOAP 1.1 over HTTP Operation Name: R...
2021-07-27, 2668🔥, 0💬

SOAPAction - Not Needed, But No Way to Remove It
This section describes why the SOAPAction header line is not needed in SOAP 1.2 - SOAPAction is replaced by the 'action' parameter of the application/soap-xml media type in SOAP 1.2.
2016-12-24, 2608🔥, 2💬

💬 2016-12-24 Herong: Palik, Thanks. I will try it out.

💬 2016-12-21 palik: > No Way to Remove SOAPAction indeed the is a way: Soap::Lite->new()...->on_action( sub {} )... removes SOAPAction header

Loading WADL Documents into SoapUI
This section provides a tutorial example on loading a WADL document for a REST Web service into SoapUI to create a REST project and populated the service, resource, and method from the WADL document.
2017-02-22, 2603🔥, 3💬

💬 2017-02-22 sr: hello

💬 2015-12-08 sinu: thanks

Downloading and Installing SoapUI
This section provides a tutorial example on downloading and installing SoapUI 5.0.0 on Windows system.
2018-08-30, 2574🔥, 5💬

💬 2018-08-30 Tom: thank u

💬 2018-07-11 annie: hello

💬 2016-04-16 Edo: Thank you

Free Web Services - Herong's Tutorial Examples
This tutorial book is a collection of notes and sample codes written by the author while he was testing free Web services available on the Internet. Topics include Introduction of SOAP and REST Web services; Zeep Python library as SOAP client; SoapUI Web Service Testing Tool; Web service examples: M...
2016-03-14, 2368🔥, 0💬

"Reservation" Web Service - WSDL 1.1 and SOAP 1.2
"Reservation" is an XML document based Web service for testing purpose only. High level information about this "Reservation" Web service: WSDL Document: Reservation_WSDL_11_SOAP_12_Do cument.wsdl. WSDL Version: 1.1 WSDL Binding Extension: SOAP 1.2 Transportation: SOAP 1.2 over HTTP Operation Name: R...
2021-03-07, 2268🔥, 0💬

SoapUI Configuration for Username Token
This section provides a tutorial example on how to create a configuration entry to support WS-Security username token with '#PasswordDigest' password type using SoapUI.
2017-07-28, 2246🔥, 8💬

"Hello_REST" - REST Web Service
"Hello_REST" is an REST Web service for test purpose only. High level information about this "Hello_REST" Web service: WADL Document: Hello_REST.wadl . Web service endpoint: http://www.herongyang.com/Serv iceRepresentations of resources: Hello_REST.php Operations: GET and POST Operation parameters: ...
2021-02-18, 2212🔥, 0💬

Introduction to Web Service
This chapter provides a quick introduction on Web services and related technologies: SOAP, UDDI, WSDL, HTTP, and XML.
2018-06-18, 2153🔥, 5💬

💬 2018-06-18 Poonam: Books are necessary.

💬 2017-03-30 ravi: This is to learn web services

💬 2015-12-13 A: Useful

"RefillOrder" Web Service - WSDL 1.1 and SOAP 1.2
"RefillOrder" is an XML document based Web service for testing purpose only. High level information about this "Reservation" Web service: WSDL Document: RefillOrder_WSDL_11_SOAP_12_Do cument.wsdl. WSDL Version: 1.1 WSDL Binding Extension: SOAP 1.2 Transportation: SOAP 1.2 over HTTP Operation Name: R...
2021-03-07, 2124🔥, 0💬

NumberToWords - Convert Number in Digits to Words
This chapter provides a quick introduction of the free Web service, NumberToWords, converting a number in digits to words. Topics include usage description of NumberToWords; request message sample; response message sample.
2023-02-22, 1981🔥, 5💬

💬 2023-02-22 hjyuj: 56

💬 2021-11-23 jay: 4933386359800

💬 2020-05-15 adriana: ola tudo bem

SOAP PHP Implementations
This chapter provides notes and tutorials on SOAP PHP implementations: PEAR SOAP, NuSOAP, and PHP Group SOAP.
2016-01-13, 1666🔥, 1💬

💬 2016-01-13 Jhon: very good tutorials

Using HttpURLConnection to Call SOAP 1.1
This section provides a tutorial example on how to use the java.net.HttpURLConnection class to call a SOAP 1.1 Web service.
2020-02-23, 1518🔥, 2💬

💬 2020-02-23 Herong: Max, are you suggesting to write output as character sequences?

💬 2020-02-17 Max: try (OutputStreamWriter writer = new OutputStreamWriter(con.getOutputStre am(),"UTF-8")){ writer.write(soapXml); writer.flush();...

SoapUI - SOAP Web Service Testing Tool
This chapter provides tutorial notes and example codes on SoapUI 5.0.0. Topics include SoapUI features; downloading and installing SoapUI 5.0.0; validating and importing SOAP based WSDL documents; creating and submitting test requests.
2016-02-20, 1449🔥, 1💬

💬 2016-02-15 arun: hello how are you

SOAP Protocol Binding
This section describes what is SOAP protocol binding.
2021-09-01, 1436🔥, 2💬

💬 2021-09-01 Anka: Agree!

💬 2015-07-20 Frank: Very good and easy to understand

SAAJ - SOAP with Attachments API for Java
This chapter provides notes and tutorials on SAAJ (SOAP with Attachments API for Java). Topics include SAAJ specification and reference implementation; creating a SOAPConnection object; creating a SOAPMessage object; populating SOAP body; adding namespace for SOAP body elements; adding SOAPAction he...
2017-08-05, 1318🔥, 2💬

💬 2017-08-05 Herong: Ashraf, SAAJ (SOAP with Attachments API for Java) is for Java only.

💬 2017-08-03 Ashraf K C: Hello, Is this SAAJ API platform independent? Can i use in other languages like PHP? is this having wsdl?

SOAP Encoding
This chapter provides notes on SOAP Encoding rules and examples.
2015-12-09, 1302🔥, 1💬

💬 2015-12-09 mephtu: Thank you. Very helpful.

SocketRequestResponseServer.java - Socket Server Testing Program
This section provides a tutorial example on how to write a socket level server side testing program to receive and record request received from a client program.
2015-08-01, 1202🔥, 2💬

💬 2015-07-31 Herong: Javier, Please read this tutorial: Capturing the HTTP Request from a Browser . It provides an example on how to run this program...

💬 2015-07-31 javier: sorry my bad english.. please an example, how use this, parameters?

Full Version in PDF/EPUB
Information on how to obtain the full version of this book in PDF, EPUB, or other format.
2022-12-05, 1152🔥, 5💬

💬 2022-12-05 Akanksha: thanks a lot

💬 2018-10-04 basha: very good knowledge

💬 2016-09-20 dev: nice

💬 2015-10-19 peter: no comments

SOAP Communication Example
This section describes an simple example of SOAP communication.
2022-01-04, 1146🔥, 5💬

💬 2022-01-04 sami: none of them

💬 2017-08-20 Ram: Hello

Call WSDL Operation with SoapClient::__soapCall()
This section provides a tutorial example on how to call an operation defined in a WSDL document using the __soapCall(operation_name,...) function.
2021-02-07, 1145🔥, 2💬

< 1 2 3 4 5 6 7 > >>   ∑:406  Sort:Date