Hi, Can you please properly subscribe to the mailing list so that the community can receive email notifications? Here is the instruction:
anas4120 wrote > I need to access ignite from webapp application (servlet). How can I do > that ? You should start a client node within your application using Ignition.start() method. You can then use Ignite instance it returns to access the cluster. See [1] for information about how to start servers and clients. Another option is to use ServletContextListenerStartup [2] and configure it as a servlet context listener. It will start Ignite instance during the application startup. To acquire this instance in the application code, use Ignition.ignite() method. [1] https://apacheignite.readme.io/docs/clients-vs-servers [2] https://ignite.apache.org/releases/1.5.0.final/javadoc/org/apache/ignite/startup/servlet/ServletContextListenerStartup.html -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/How-to-get-ignite-context-Ignite-in-servlet-web-app-tp4612p4634.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
