I have used wsdl2java in order to convert a wsdl file into java files. The java files that are created are using class javax.xml.namespace.QName

However, Android is not recognizing this class. Can anyone tell me how do I add support for javax.xml.namespace.* or javax.xml.namespace.QName in my application in android..

Many Thanks

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

This questions discusses importing other java (non-android) libraries into android.

He basically says:

"You cannot import a JAR implementing java.* classes easily. And, JDBC would need to be ported to Android, since it probably relies upon classes in JavaSE that Android lacks. And, you would need to write your own JDBC driver for SQLite anyway, wrapping the API Android already supplies, since I suspect the existing JDBC driver uses JNI. And, when all of that is done, you will have an application that adds a lot of bloat, making it less likely people will download and retain your application."

Like he says you cannot do it EASILY, so it may be possible, just not easy.

link|improve this answer
While I know he is talking about JDBC, it still applies - unless I'm just way off. – Jack Aug 4 '11 at 18:42
Is there any way around? – Farhan Aug 4 '11 at 18:48
There may be, groups.google.com/group/android-developers/browse_thread/thread/… talks about compiling the result code/stubs ... but this is beyond anything I have done before. – Jack Aug 4 '11 at 18:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.