diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c57e50..78fb01c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [3.0.0] + +- Remove the Temperature Converter webservice + ## [2.0.0] - Move to GitHub Pages @@ -125,4 +129,3 @@ - Example Node.js client with SOAP library - Python client with Zeep - SoapUI project and gifanim - diff --git a/docs/_config.yml b/docs/_config.yml index 75c0262..e983905 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -4,6 +4,8 @@ url: "https://www.learnwebservices.com" # URL of the backend server api_url: "https://apps.learnwebservices.com" +site_version: "3.0.0" + # Build settings markdown: kramdown diff --git a/docs/_includes/head.html b/docs/_includes/head.html index a73a789..112bf66 100644 --- a/docs/_includes/head.html +++ b/docs/_includes/head.html @@ -22,7 +22,7 @@ - + diff --git a/docs/_includes/hu/nav.html b/docs/_includes/hu/nav.html index 1944472..f94d3bd 100644 --- a/docs/_includes/hu/nav.html +++ b/docs/_includes/hu/nav.html @@ -1,28 +1,27 @@ \ No newline at end of file diff --git a/docs/_includes/nav.html b/docs/_includes/nav.html index 3a43350..675d668 100644 --- a/docs/_includes/nav.html +++ b/docs/_includes/nav.html @@ -1,28 +1,27 @@ + Learn web services + + + \ No newline at end of file diff --git a/docs/_includes/scripts.html b/docs/_includes/scripts.html index e94fb78..44d477b 100644 --- a/docs/_includes/scripts.html +++ b/docs/_includes/scripts.html @@ -1,12 +1,6 @@ - + - - - - - + - + diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 09428db..140a03a 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -1,5 +1,5 @@ - + {% include head.html description="Free, public SOAP web services example." diff --git a/docs/index-curl.txt b/docs/index-curl.txt index 5918984..484703f 100644 --- a/docs/index-curl.txt +++ b/docs/index-curl.txt @@ -11,8 +11,6 @@ If you want a simple, online web service, here are some WSDL: http://www.learnwebservices.com/services/hello?WSDL - http://www.learnwebservices.com/services/tempconverter?wsdl - Use the following command to call the web service with curl: $ curl --request POST --header "Content-Type: text/xml;charset=UTF-8" \ diff --git a/docs/index-hu.md b/docs/index-hu.md index 0d1f571..3098520 100644 --- a/docs/index-hu.md +++ b/docs/index-hu.md @@ -4,12 +4,12 @@ layout: default-hu
Utolsó frissítés dátuma: - 2022. június 12. + 2025. november 21.
Verzió - 2.0.0 + {{site.site_version}}
@@ -42,9 +42,8 @@ olvasható formában [itt található](wsdl-hu.html). ## Az oldal célja {#az-oldal-celja} @@ -132,28 +131,6 @@ Amennyiben hiba történik a webszolgáltatás hívása közben, pl. hibás üze ``` -# További webszolgáltatások {#tovabbi-webszolgaltatasok} - -
- -Celsius to Fahrenheit converter - -
-
-
- -
- -
-
- Ismeretlen -
-
-
-
- # Szerver alkalmazás {#szerver-alkalmazas}
@@ -456,22 +433,27 @@ const request = ` - ## Közreműködők {#kozremukodok} -* Kuti Rita -* Mauro Chojrin ([mchojrin](https://github.com/mchojrin)) -* Rácz János ([rczjns](https://github.com/rczjns)) -* Vörös Bea ([beavoros](https://github.com/beavoros)) +- Kuti Rita +- Mauro Chojrin ([mchojrin](https://github.com/mchojrin)) +- Rácz János ([rczjns](https://github.com/rczjns)) +- Vörös Bea ([beavoros](https://github.com/beavoros)) diff --git a/docs/index.md b/docs/index.md index 5b8296f..055126a 100644 --- a/docs/index.md +++ b/docs/index.md @@ -4,12 +4,12 @@ layout: default
Last update: - June 12, 2022 + November 21, 2025
Version - 2.0.0 + {{site.site_version}}
@@ -35,21 +35,20 @@ If you want a simple, online web service, here is a WSDL for it: -Firefox browser does not show us the WSDL document, just a blank page, so it is better to use the _View Page Source_ menu to view the document. The WSDL document is [available here](wsdl.html) in readable format. +Firefox browser does not show us the WSDL document, just a blank page, so it is better to use the _View Page Source_ menu to view the document. The WSDL document is [available here](wsdl.html) in readable format. ## Purpose of this site Creating this site has two purposes. One is to provide some free, public, SOAP web services examples for learning, prototyping, teaching, testing, demonstrating tools, libraries or technologies. You may use these web services in blog posts, tutorials, videos. I would like to operate this website for reference in the long run. -The second purpose is to present client applications examples in different programming languages, using with different libraries. You can find the source code of the examples on GitHub what I am going to update regularly for the latest versions. +The second purpose is to present client applications examples in different programming languages, using with different libraries. You can find the source code of the examples on GitHub what I am going to update regularly for the latest versions. If you have a question, you can ask it in [this Gitter room](https://gitter.im/learnwebservices/community). @@ -57,11 +56,11 @@ If you have a question, you can ask it in [this Gitter room](https://gitter.im/l SOAP web services may be considered as best practices to exchange data between different applications, based on XML and mostly HTTP(S) protocol. Because of the formats and protocols are text based, they are readable by most of the applications and by humans as well. Web services became very popular, and easy to use on any platform and with any programming language. -SOAP web services are based on OASIS and W3C standards, and the WS-I organization provides some useful profiles to increase interoperability. +SOAP web services are based on OASIS and W3C standards, and the WS-I organization provides some useful profiles to increase interoperability. SOAP is a messaging protocol specifying an XML-based message format. This is called the SOAP envelope, encapsulating the message content. The WSDL format is based on XML as well, and specifies the interface - how to call the service, and what are the input and output formats. -Sometime the SOAP web services are considered legacy solutions today, because the RESTful web services are becoming increasingly popular. Also this is true, but the SOAP web services will be along for a long time. +Sometime the SOAP web services are considered legacy solutions today, because the RESTful web services are becoming increasingly popular. Also this is true, but the SOAP web services will be along for a long time. # Details @@ -111,28 +110,6 @@ In case a web service fails to process the SOAP message, it returns a SOAP fault ``` -# Other services - -
- -Celsius to Fahrenheit converter - -
-
-
- -
- -
-
- Unknown -
-
-
-
- # Server application
@@ -330,7 +307,6 @@ System.out.println(response.getMessage());
- The following source code demonstrates calling the web service using [Spring Web Services](https://spring.io/projects/spring-ws) library and [maven-jaxb2-plugin](https://github.com/highsource/maven-jaxb2-plugin) Maven plugin. @@ -351,7 +327,6 @@ System.out.println(response.getValue().getMessage());
- The following source code demonstrates calling the web service using [Apache Axis2/Java](http://axis.apache.org/axis2/java/core/index.html) library, Axis2 Databinding Framework and @@ -404,7 +379,6 @@ println(response.HelloResponse.Message)

Source code

-
@@ -437,22 +411,27 @@ const request = `