I am using Ant Script in Jenkins to handle the deployment of my files. What I want to do is to trigger a call to a URL that has the web service. My question is, how can I do that from Ant Script or from within Jenkins?
Thanks in advance, Monte
|
I am using Ant Script in Jenkins to handle the deployment of my files. What I want to do is to trigger a call to a URL that has the web service. My question is, how can I do that from Ant Script or from within Jenkins? Thanks in advance, Monte |
|||
|
|
Option 1: "get" taskAnt's get task can be used to invoke web services, but it restricted to GET operations. Only works for very simple web services Option 2: curlInvoke the unix curl command to call the webservice (See this post for examples)
Note: The curl command could also be invoked as a post build action in Jenkins Option 3: Groovy ANT taskIf you need a cross platform and flexible solution embed groovy script within your build to invoke the web service.
Option 4: Groovy Jenkins post buildUse the Groovy Postbuild plugin to invoke the web service. Option 5: ANT HTTP taskThe ANT HTTP task is an alternative to the groovy task above |
||||
|
|
|
Related to question - how to call WebServices from Ant. In my case, Anteater helped to properly call and receive response from semi-complicated case. http://aft.sourceforge.net/index.html
Is the task you might want to take a look at. |
|||
|
|
|
Take a look at Groovy-wslite. The project page can be found here. Works like a charm, easy to integrate and intuitive to use. I've had a similar problem today and put some example code in my question / answer: Axis2 with complexTypes in Groovy |
|||
|
|
|
You can:
<target name="run">
<java jar="ws_client/WSClient.jar"/>
</target>
|
|||||
|