Log/Trace SOAP XML message spring boot

A short guide that briefly explain how to trace all inbound/outbound SOAP XML messages produced with java ws library. In this case it’s used the following implementation of java ws. Set into the “jvmArgs” a “true” the option “com.sun.xml.ws.transport.http.client.HttpTransportPipe.dump” Now all the SOAP messages will be logged on the standard Read more…

Remote debug spring boot

A short guide that briefly explain how to remote debug using visual studio code in a spring boot project gradle based. Spring configuration Open your spring project, detect the build.gradle file and edit as follow add to “jvmArgs” the JDWP configuration passing the address properly (it is possible also to Read more…

Redirect traffic index.html to index.php

Simple rule to rewrite the traffic from index.html to index.php. Useful quick fix for wordpress websites. If you’re using apache httpd server You can deploy this rule inside the .htaccess file, the one inside the root folder, or inside the httpd.conf in the proper section More info: https://httpd.apache.org/docs/2.4/rewrite/flags.html Other webserver Read more…