Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Complete list of layers available in Wildfly

Recently Wildfly project introduced a galleon app, which allows creation of smaller app servers. But I couldn't find a comprehensive list of available layers.

Doc suggests:

galleon.sh install wildfly:current --dir=my-wildfly-server --layers=cdi,jaxrs

operation finished fine, but resulting Wildfly doesn't really start my SOAP war.

13:33:25,243 INFO  [org.jboss.as.repository] (DeploymentScanner-threads - 1) WFLYDR0001: Content added at location /opt/wf/soap/standalone/data/content/01/a5f89d915b85b778b64fcf071d45f0efa84f0b/content
13:33:25,261 INFO  [org.jboss.as.server.deployment] (MSC service thread 1-7) WFLYSRV0027: Starting deployment of "soap01.war" (runtime-name: "soap01.war")
13:33:26,032 INFO  [org.wildfly.extension.undertow] (ServerService Thread Pool -- 4) WFLYUT0021: Registered web context: '/soap01' for server 'default-server'
13:33:26,060 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 1) WFLYSRV0010: Deployed "soap01.war" (runtime-name : "soap01.war")

This war works fine with full Wildfly. WSDL is available, service working.

There is no layer named jaxws, so I guess jaxrs is fine.

SOAP is just an example, it would be great to see full list of layers.

like image 961
Oleg Gritsak Avatar asked Oct 17 '22 06:10

Oleg Gritsak


1 Answers

we don't have a layer for webservices. That is something that we could add. The full list of layers can be found there: http://docs.wildfly.org/16/Admin_Guide.html#Galleon_Provisioning

I just created https://issues.jboss.org/browse/WFLY-11795 to track this requirement.

Updated: Starting WildFly 21 we have a layer for webservices. The list of Galleon layers for WildFly 26 is there: https://docs.wildfly.org/26/Bootable_Guide.html#wildfly_layers JF

like image 196
jean-francois Denise Avatar answered Oct 29 '22 01:10

jean-francois Denise