Search code examples
javamavenibm-mobilefirstmobilefirst-adapters

How to add axis web service jar in mobilefirst adapter


I have implemented a Java Adapter in MobileFirst Foundation 8.0. In this adapter I would like to integrate with web Services Client Jax-WS. I had called the services from generated client by eclipse. But when I built the program ( mvn install ), it's showing errors, it seems I cannot get the axis lib.

.... package org.apache.axis.client does not exist

lib:
axis-ant.jar
axis.jar
.......

Anyone can help me for this errors. Do I need to add in pom.xml dependency to get the lib because this jar is generated.


Solution

  • Note: Java adapters are based on the JAX-RS specification and expose a full REST API to the client. In other words, a Java adapter is a JAX-RS service that can be deployed to MobileFirst Server.

    Refer: Java adapters