Webservice client in JIRA Plugin

Szymon Kolorz April 24, 2014

I try to call remote webservice form my JIRA plugin (jira version 6.2). I failed with jax-ws client, couldn't resolve dependency problems.

Which tool should I use: Axis2, CXF or something else? Do you have any positive experiences?

1 answer

1 accepted

1 vote
Answer accepted
Szymon Kolorz May 8, 2014

It works with Axis2, with these dependecies:

<!-- AXIS -->
		<dependency>
		  <groupId>org.apache.axis2</groupId>
		  <artifactId>org.apache.axis2.osgi</artifactId>
		  <version>1.6.2</version>
		</dependency>
	<dependency>
		<groupId>javax.servlet</groupId>
		<artifactId>servlet-api</artifactId>
		<version>2.4</version>
		<scope>provided</scope>
	</dependency>
	<dependency>
		<groupId>xml-apis</groupId>
		<artifactId>xml-apis</artifactId>
		<version>1.0.b2</version>
		<scope>provided</scope>
	</dependency>
[...]
<jira.version>6.2</jira.version>

I also had to configure osgi dependencies manualy in my atlassian-plugin.xml because import of org.w3c.dom was not generated autamitacally.

Dale Miller October 24, 2014

How did you configure the org.w3c.dom dependencies in the atlassian-plugin.xml file? Can you show an example.

Suggest an answer

Log in or Sign up to answer