• 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

web module of ear is not getting picked up by WL10.3.0.0

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am having a ear of web application.That contains ejb module and war module.In weblogic10.3.0.0, after it is getting deployed sucessfully,I am trying test the application from weblogic console.But while I am expanding the webmodule or clicking on it,it is displaying empty instead of showing the welcomepage link.But the same the problem,I am not getting in WL8 or WL10.3.2.0.
Just to mention,my application.xml is okay and also welcomepage is configured properly in web.xml.

Please help me out of this problem.
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to JR Tamaljit

Do you see exceptions on the console ?
 
Toms Luke
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am not getting any exception in console.
 
Deepak Bala
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, I am not sure where to go from here then.

Try looking at weblogic.log etc and other diagnostic logs. Without an error message or other relevant info, it is difficult to nail this one
 
Toms Luke
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For your information,I am having total 4 application.2 are ear and 2 are war.The wars are running absolutely fine but getting problem in case of those ears.Those ears consist of ejb jars and wars.
 
Toms Luke
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I got the solution.In weblogic10.3.0.0 for ear(consist of war and ejb jar),it wont show the welcomepage link while testing through webadmin cosonle unlike wl8 or wl10.3.2.0.We have to explicitly hit the url from browser.

e.g

Suppose your context root in appliication xml is like

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN" "http://java.sun.com/j2ee/dtds/application_1_2.dtd">
<application id="Application_ID">
<display-name>GMEReportingApp</display-name>
<module id="EjbModule_1050388015234">
<ejb>XYZ.jar</ejb>
</module>
<module id="WebModule_1050388594562">
<web>
<web-uri>ABC.war</web-uri>
<context-root>ABC</context-root> </web>
</module>
</application>

and in web.xml your welcomepage is mnc.html

then you have to hit http://localhost:portno/ABC/mnc

it will work
 
Is this the real life? Is this just fantasy? Is this a tiny ad?
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic