You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@geronimo.apache.org by Edwin Ansicodd <er...@gmail.com> on 2009/01/29 13:38:01 UTC

Hot deployer notified that an artifact was removed

Created a Dynamic Web Project in Eclipse, deployed it as an EAR to Geronimo
v2.0 from Eclipse server view.  Project appears to deploy on console as
Geronimo starts up, but then URL for project cannot be accessed on localhost
and following message appears in Geronimo log:

[DirectoryMonitor] Hot deployer notified that an artifact was removed:
default/jps_testEAR/1.0/ear

Does this mean the ear was undeployed?  Any possible reasons why it was
undeployed?


-- 
View this message in context: http://www.nabble.com/Hot-deployer-notified-that-an-artifact-was-removed-tp21726155s134p21726155.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.


Re: Hot deployer notified that an artifact was removed

Posted by Edwin Ansicodd <er...@gmail.com>.
I'm deploying the project as a WicketServlet with the following entry in the
web.xml file :

	<servlet>
		<servlet-name>JPSApplication</servlet-name>
	
<servlet-class>org.apache.wicket.protocol.http.WicketServlet</servlet-class>
		<init-param>		
            <param-name>applicationFactoryClassName</param-name>
           
<param-value>org.apache.wicket.spring.SpringWebApplicationFactory</param-value>        
		</init-param>		
		<init-param>
			<param-name>configuration</param-name>
			<!-- <param-value>development</param-value>  -->
			<param-value>deployment</param-value>		 
		</init-param>
		<load-on-startup>1</load-on-startup>
		
	</servlet>
	
	<servlet-mapping>
		<servlet-name>JPSApplication</servlet-name>
		<url-pattern>/jps/*</url-pattern>
	</servlet-mapping>  
  

-- 
View this message in context: http://www.nabble.com/Hot-deployer-notified-that-an-artifact-was-removed-tp21726155s134p21726536.html
Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.