How do I access a Java program from Splunk Web? I have created one form which takes user input on click of a submit button, but I need to figure out how to implement the Java code in Splunk Web.
Hi ksolanki88
If you want to start a java program from splunk web , you must install Splunk SDK for Java
for more information follow this link : http://dev.splunk.com/java
If it satisfy you please vote my answer
Note that splunk is code in Python language
Hi ksolanki88
The following is a link between splunk SDK for Java and splunk web
https://github.com/splunk/splunk-sdk-java
Chimell, i have already gone through this link. i think my question was not clear. When i said the link between this two, i meant splunk-to-Java. i want to invoke execution of java code on splunk server which should be done by clicking on a button.
1. i have html and js form, which is client side.
2. on click of a button need to send some parameters to server side.(by hitting some another page)
3. this parameter should be handled and processed by JAVA.
in order to do that a execution must enter into java code.
Thanks Chimell for your response. I know that it can be done using Splunk SDK for Java but the problem is in finding out the link between this two. how to invoke a java code from splunk web side. Like in python we can write in URL dispatcher and start execution of python server side program.