• 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

Why can't I deploy the application

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I create a example(banking.ear),it conclude banking.jar(a simple ejb),banking.war.I deploy the ear in weblogic.but only ejb and war can deploy successful.The application deploy fail.
In weblogic console,there is no application.
Anybody can tell me what the matter is.Thanks.
 
Ranch Hand
Posts: 140
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Perhaps your application.xml is wrong? Could you provide more details?
 
Sawyer Shillong
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks for reply.
application.xml:
<application>
<display-name>banking</display-name>
<module>
<ejb>banking.jar</ejb>
</module>
<module>
<web>
<web-uri>banking.war</web-uri>
<context-root>banking</context-root>
</web>
</module>
</application>
Now,ejb and web component can deploy successful,but the total application can't,
is the application.xml only file correspond to the application?
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic