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

"variable contained illegal space"

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am new to Orion app. server. I am trying to deploy a CMP Entity Bean
on 1.5.2. The server
gives the following error:
Auto-deploying LinkGenerator.jar (No previous deployment found)... Error
compiling
D:\orion1.5.2\orion\applications\LinkGenerator/LinkGenerator.jar: Variable
contained
illegal space
But theres no illegal space in the ejb-jar.xml, sure!
There is the xml:
<?xml version="1.0"?>
<!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN" "http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd">
<ejb-jar>
<description>myEJB</description>
<enterprise-beans>
<entity>
<description>myUser</description>
<ejb-name>UserBean</ejb-name>
<home>baumann.linkgenerator.user.UserHome</home>
<remote>baumann.linkgenerator.user.User</remote>
<ejb-class>baumann.linkgenerator.user.UserBean</ejb-class>
<persistence-type>Container</persistence-type>
<prim-key-class>baumann.linkgenerator.user.UserPK</prim-key-class>
<reentrant>False</reentrant>
<cmp-field><field-name>userID</field-name></cmp-field>
<cmp-field><field-name>userLogin</field-name></cmp-field>
<cmp-field><field-name>userPasswort</field-name></cmp-field>
<primkey-field>userID</primkey-field>
<resource-ref>
<description>Maindata</description>
<res-ref-name>jdbc/InterBase</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</entity>
</enterprise-beans>
<assembly-descriptor>
</assembly-descriptor>
</ejb-jar>

Any help would be highly appreciated.
Thanks,
Thomas
[ May 14, 2002: Message edited by: Thomas BaumannStrunzer ]
[ May 14, 2002: Message edited by: Thomas BaumannStrunzer ]
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
thanks for the GREAT help.
 
Ranch Hand
Posts: 133
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Thomas Baumann:
Hi,
thanks for the GREAT help.


You'll notice that this isn't a very active forum. So, it's not unreasonable that no one would have looked at your concern in the 5 hours after your initial post (especially since the initial post was early in the morning in America, when most of the users of JavaRanch were asleep).
Unfortunately, your quick sarcasm reduced the chances you will get the help you requested.
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This entry in the orion mail list might help. I recall having the same problem when I used Orion a few years ago.
http://www.mail-archive.com/[email protected]/msg18990.html
 
Thomas Baumann
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
@Lance Finney
No sarcasm
Look Lance, first post was May 14, 2002
the second was Jul 29, 2002
very long "five hours" ;-)
 
Lance Finney
Ranch Hand
Posts: 133
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Thomas Baumann:
@Lance Finney
No sarcasm
Look Lance, first post was May 14, 2002
the second was Jul 29, 2002
very long "five hours" ;-)


You're right. I'm sorry. I must have been blind that day.
 
Thomas Baumann
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Rick,
thanks a lot, now it works.
Best regards
Thomas
 
reply
    Bookmark Topic Watch Topic
  • New Topic