• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

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?
 
If you send is by car it's a shipment, but if by ship it's cargo. This tiny ad told me:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic