DEV Community

Discussion on: Webservices using Java 10

 
karytricia profile image
Carla Augusto

Using the javax.xml.soap API directly doesn't work. It only works if I use the --add-modules option.

However, this solution is for Java 9 and Java 10 only. For later versions it won't work as the Java EE related modules will be entirely removed from Java SE.

Thanks for your reply.