I have written a client using Apache AXIS client side API to access a Web Service After running the client, I receive following exception:
java.lang.IllegalAccessException: Class org.apache.axis.providers.java.JavaProvi der can not access a member of class LookupService with modifiers ""
My client side code is
I can see the web service being deployed by targetting the http:\\localhost:8080\axis on the browser.
Any idea what might cause this exception?
Thanks Sandeep
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12265
1
posted
0
Java.lang.IllegalAccessException: Class org.apache.axis.providers.java.JavaProvi der can not access a member of class LookupService with modifiers ""
I think you have an exception generated by the service, not the client side. I suspect that the method you are trying to access does not have the "public" access modifier. Did you write LookupService or get it from somewhere else? Bill