• 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

JBOSS on USS (OS/390)

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is anyone running JBOSS under USS?

I've installed it under USS and I get the "Started" message in the log but, there are errors.

This first error is : java.util.MissingResourceException: Can't find bundle for base name org.apache.catalina.startup.LocalStrings, locale en_US

Any input regarding this message or installing/running under USS would be appreciatted.

Thanks,
Jim
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't have experience with JBoss on USS, but I have had some experience with Java on USS. If you haven't done so, you may want to get the JBoss source code from Source Forge and rebuild it on the USS platform. You might have to untar the configuration files on to an ASCII machines and ftp them to USS so that they go through an ASCII to EBCDIC conversion.
The problem I had the most was regarding ASCII and EBCDIC conflict. Java Strings that are created at run time are EBCDIC byte encoded. If your JBoss implementation was built on an ASCII machine, it may contain static String types that were build using ASCII byte encoding. When at run time you try to compare these two Strings, the comparison will fail because the Strings contain different byte encoding.
 
Jim Poinsett
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Terry - I will give it a try.
 
When you have exhausted all possibilities, remember this: you haven't - Edison. Tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic