[JBossWS] - jbossws 1.0.4GA + Tomcat standalone fails: KernelRegistryEnt
by bocio
I installed jbossws 1.0.4GA on a standalone tomcat 5.5.20.
I followed instructions and release notes on:
http://labs.jboss.com/portal/jbossws/user-guide/en/html/installation.html...
Tomcat start and successfully install a jbossws context.
Then as explained on istructions I should see a
{tomcat.home}/jbossws-deploy
directory...
This directory is NOT created.
I connect on
http://127.0.0.1:8080/jbossws/
and I can see the Welcome page.
When I try to list the deployed Web Services I get:
| javax.servlet.ServletException: Servlet.init() for servlet ContextServlet threw exception
| org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
| org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
| java.lang.Thread.run(Thread.java:595)
|
| root cause
|
| org.jboss.kernel.spi.registry.KernelRegistryEntryNotFoundException: Entry not found with name: ServiceEndpointManager
| org.jboss.kernel.plugins.registry.AbstractKernelRegistry.getEntry(AbstractKernelRegistry.java:99)
| org.jboss.ws.server.ServiceEndpointManagerFactory.getServiceEndpointManager(ServiceEndpointManagerFactory.java:52)
| org.jboss.ws.integration.tomcat.TomcatContextServlet.initServiceEndpointManager(TomcatContextServlet.java:77)
| org.jboss.ws.common.CommonContextServlet.init(CommonContextServlet.java:54)
| org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
| org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
| org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
| org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
| org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
| org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
| org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
| java.lang.Thread.run(Thread.java:595)
|
Where I'm wrong?
Thank you in advance
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3988141#3988141
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3988141
19Â years, 5Â months
[JBoss Seam] - Re: [booking example]: question regarding the HotelBookingAc
by petemuir
The required attribute on @In/@Out simply says whether the variable can be null or not, by default required=true.
so, lets say we have a variable foo.
If the context variable foo is null
@In Foo foo;
would throw a RequiredException
but
@In(required=true) Foo foo;
wouldn't.
But, if the context variable foo is not null
neither
@In Foo foo;
nor
@In(required=true) Foo foo;
would throw a RequiredException.
If you are using out, its the instance variable, not the context variable that is not null.
If create=true then, if the context variable is null, Seam attempts to create it (@Name or @Factory), if it can't, and required=true, then a RequiredException will be thrown.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3988134#3988134
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3988134
19Â years, 5Â months