Hi, I'm trying to startup an OpenEJB server with JAX-RS enabled. I've got a
rest class (@Path + @Singleton) but when I curl at it I get no response.
My system.properties are as follows:
java.util.logging.manager = java.util.logging.LogManager
openejb.system.apps = true
openejb.embedded.remotable = true
openejb.webservices.enabled = true
I also tries adding this property 'openejb.embedded = true' but still no
response.
When I run tests with @ApplicationComposer and @EnableServices("jaxrs") I
notice that this gets produced in the output:
INFO - Setting the server's publish address to be
http://127.0.0.1:4204/AccountRSTest
INFO - REST Service: http://127.0.0.1:4204/AccountRSTest/account/.* -> EJB
AccountRS
where AccountRS is my rest class. And the test works fine when I call the rest
class.
However when running outside test scope nothing like that gets output.
Am I missing something in my system.properties?