} //from the client I call this class as such::: DataClient instanceget = null; try{ instanceget = new DataClientLocal("db.db"); } .......etc etc
Here is the error::::: Exception in thread "main" java.lang.VerifyError: (class: suncertify/db/FlyTable Model, method: <init> signature: ([[Ljava/lang/Object;Lsuncertify/db/DataClientL ocal V) Bad type in putfield/putstatic at fbn.main(fbn.java:992) thanks Lisa in my DataClient that is my Interface which is public and in the same package I just declare all the Data Class methods and extends Remote Thanks Lisa
What if you changed the code //from the client I call this class as such::: DataClient instanceget = null; try{ instanceget = new DataClientLocal("db.db"); } to the following: //from the client I call this class as such::: DataClientLocal instanceget = null; try{ instanceget = new DataClientLocal("db.db"); } (I am guessing that the error occurred on the assignment of the new DataClientLocal object ref to the DataClient reference.)
--glenn
Lisa Foster
Ranch Hand
Joined: Feb 28, 2001
Posts: 116
posted
0
thanks Sir I tried same error great guess.. Thanks Lisa
Glenn Opdycke-Hansen
Ranch Hand
Joined: Feb 16, 2001
Posts: 40
posted
0
Sorry, I took a guess based on the information at hand. Is there additional information in the stack trace from the exception? I have a debug mode where lots of printlns are written for such situations. --glenn
Lisa Foster
Ranch Hand
Joined: Feb 28, 2001
Posts: 116
posted
0
Thanks for your response glen and others I have gooten rid of the previous error see my new post for new error. Thanks Lisa
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.