• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Error in Axis

 
Ranch Hand
Posts: 180
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I am new to Web Services.I have downloaded the distribution of Apache
Axis and made a war file of the axis folder under the webapps of the Axis
distribution.

Then i deployed the war file in the Sun one server PE 7.
When i am trying to run through http://localhost:8080/axis
its giving me 'requested resource not found error'.

I got this error in my server log.



Please help.

Thanks in advance,
Saurav

[ UD: added linebreak to preserve formatting ]
[ July 25, 2007: Message edited by: Ulf Dittmer ]
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It seems that the app server runs with a security manager enabled:

Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission createClassLoader)



Either the security manager needs to be relaxed to allow this, or disabled altogether. Check the server documentation to see how its behavior can be finetuned.
 
saurav sarkar
Ranch Hand
Posts: 180
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks a lot Ulf for Posting.

I solved the problem by modifying the server.policy file.
 
reply
    Bookmark Topic Watch Topic
  • New Topic