+
\ 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.
@@ -42,9 +42,8 @@ olvasható formában [itt található](wsdl-hu.html).
Figyelem!
- A 2.0.0 verzióban a cím http://www.learnwebservices.com/services/hello?WSDL URL-ről a
- https://apps.learnwebservices.com/services/hello?WSDL URL-re változott.
- A WSDL és az XML struktúrája is egyszerűsítésre került, így a klienseket módosítani kell, vagy újra kell generálni.
+ A server alkalmazás 4.0.0 verziójában a Temperature Converter webservice eltávolításra került. Csak a Hello webservice érhető el.
+
## 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
-
-
@@ -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.
Warning!
- In version 2.0.0 the URL has changed from http://www.learnwebservices.com/services/hello?WSDL to
- https://apps.learnwebservices.com/services/hello?WSDL.
- The WSDL and the SOAP structure has simplified, so the clients must be modified or regenerated.
+ In version 4.0.0 of the server application, the Temperature Converter web service was removed. Only the Hello web service is available.
+
## 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)