• 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

Problem deploying ear file

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

I am faced with the following problem:

I have an rar file which I have packaged with META-INF/application.xml file into an ear file. But when I try to deploy this ear file onto my windows app-server, I get the following error:

[J2EE:160043]Missing deployment descriptor "META-INF/application.xml" at "C:\bea\user_projects\domains\ppbudomain\applications\myfile.ear"

The application.xml file looks like follows:

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN' 'http://java.sun.com/dtd/application_1_3.dtd'>

<application>
<display-name>Application</display-name>
<description>Testing EJB/Connector</description>

<module>
<connector> FileIOFrameworkV1Rar-Wls.rar </connector>
</module>
</application>

I have added the rar file to the weblogic classpath. I have tried changing the encoding schemes of the xml file. I have also tried used DTD 1.2. I am getting the same error everytime.

Please help.

Kunal
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try deploying the ear as exploded. See if then the application gets deployed.
 
The knights of nee want a shrubbery. And 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