Hi

i have implemented very simple serviceImple i.e RPC class as shown below:


@SuppressWarnings("serial")
*

public* *class* SlimLookUpImpl *extends* RemoteServiceServlet {

*public* *void* *SlimLookUpImpl()
*

{

System.*out*.println("console output while startup ");

}

 }



I have added this servelt entry in web.xml

<servlet>

<servlet-name>slimServlet</servlet-name>

<servlet-class>com.application.server.SlimLookUpImpl</servlet-class>

<load-on-startup>1</load-on-startup>

</servlet>

<servlet-mapping>

<servlet-name>slimServlet</servlet-name>

<url-pattern>/application/slimService</url-pattern>

</servlet-mapping>



my question here is can we do load-on-startup for this servlet.

currently servlet is not loading on startup.



Thanks

karun

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to