• 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

Weblogic 6.1 Classes?

 
Ranch Hand
Posts: 247
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm new to weblogic and am using a remote server.

I am working on a large exsisting application.
I am trying to simply just add another class.

An original class util.JspUtil works fine.
I copied the class renamed it to util.JspUtil2 and uploaded it.
Then rebooted the server.

Then in a JSP I have
<%@ page import="rfss.util.JspUtil" %>
<%@ page import="rfss.util.JspUtil2" %>

The first line works but the second doesn't

It says
class file has wrong version 49.0, should be 47.0
Please remove or make sure it appears in the correct subdirectory of the classpath.
import util.JspUtil2; //[ /Test.jsp; Line: 4]

What am I doing wrong? Is there any more info you need?
 
Kris Reid
Ranch Hand
Posts: 247
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I FIXED IT!!!

I was compiling locally with java1.5
The remote weblogic server has java1.3

Why is it that you can work on a problem for hours with no results, then
2 minutes after you post a question you solve it
 
Hoo hoo hoo! Looks like we got a live one! Here, wave this tiny ad at it:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic