• 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

trouble while deploying Jboss EJB web service on Prodution

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I need urgent help from you people...
I am new to web services . developing one on jbossws native. i want to test echo web service on test server which is in same environment as production server.
EJB web service i have developed is simple echo web service which is running fine on my local machine.
on my test server we having apache and jboss configuration for ip port redirection
when i deployed it on test server(sandbox.testme.com), soap address was like this

IP in soap address was machin's IP where Apache and Jboss is running which is not accessible from outside intranet.
I made some changes in following file

/jboss5/server/XXX/deployers/jbossws.deployer/META-INF/jboss-beans.xml


changes as follows
from this <property name="webServiceHost">${jboss.bind.address}</property>
to this <property name="webServiceHost">sandbox.testme.com</property>

and <property name="webServicePort">80</property>
now its showing proper soap address like this


but while running client i am getting exception as given below.
i have also tried it with myeclipse web service explorer but its giving...


IWAB0135E An unexpected error has occurred.
302
Redirection



Please help. Thanks in advance

 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic