• 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

Testing an ear deployment on Weblogic 9.2 MP2

 
Ranch Hand
Posts: 45
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Merry christmas to all.

I have a quick question. I have created an ear application say A.

Inside the ear, i have a web module B. This web module is a servlet based application. (So i can access: http://hostname:port/B if it is deployed as a standalone war file to test the application).

Since it is deployed as a ear file, how can i test the deployment ?. I have deployed as exploded ear A.

Would i be able to test this http://hostname:port/A/B ?

My application.xml in META-INF looks like below

<application>

<module>
<web>
<web-uri>B.war</web-uri>
<context-root>/B</context-root>
</web>
</module>

</application>


Please let me know.

TIA





 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

from WLS Admin console In deployment menu - > select your deployment - > select testing tab ->select webmodule -> you will get the page
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic