Problem with axis 2 libarary

I wanted to convert a wsdl file to java. I installed the Axis2 plugin in Eclipse to use wsdl2java. I have successfully converted wsdl files to java, but there are certain things that do not get support now and cause errors. I think that I have integrated the axis libraries incorrectly .. for example

org.apache.axis2.databinding.utils.BeanUtil.getUniquePrefix(); is causing error (this can't be resolved to a type) javax.xml.namespace (can't be resolved into a type) org.apache.axis2 (I think I am not correctly importing these libraries) 

Can someone help me here .. I downloaded the file org.apache.axis2.eclipse.codegen.plugin_1.6.0.jar (as instructed) in the eclipse / dropins directory. Can someone help me how can I provide support for axis libraries or how can I enable libraries with my current ANDROID project. thank you very much

+4
source share
1 answer

Javax is not part of Android, you need to import all Axis2 libraries to make it available for Android.

0
source

All Articles