[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-12 Thread starkc
Thats really unfortunate, you've been very helpful even if the problem still hasnt been solved. I'm trying a few different oracle drivers now to see if possibly the wrong version of the oracle drivers, but I'm on my last legs here! Perhaps someone else would care to chime in, or does this belon

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-11 Thread starkc
This may very well be correct. On cursory inspection, the database field that this blob corresponds to has been left blank, though the rest of the record has been created properly. It appears that the process does everything EXCEPT create this blob insertion. Now, could there be a problem usin

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-08 Thread starkc
If you want, I can post the jar contents of weblogic.jar. It is rather large, and does contain its own version of oracle.jdbc.driver.OracleDriver, so a ClassNotFoundException might be avoided this way I suppose. ClassLoading Isolation is set up, I can see the different repositories in my jmx-c

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-06 Thread starkc
Removing the classes12.jar did not seem to HURT anything per se, but it did not resolve the ClassCastException View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4127132#4127132 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-06 Thread starkc
The driver class is specified in the -ds.xml file as the following: | oracle.jdbc.driver.OracleDriver | I am connecting to an Oracle 10g database, if that helps. I will remove classes12.jar and try again shortly and repost more info. View the original post : http://www.jboss.com/index.h

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-06 Thread starkc
Forgot to add that there ARE javax.sql.* classes included in weblogic.jar View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126993#4126993 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126993 _

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-05 Thread starkc
Sorry for double post =/ View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126718#4126718 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126718 ___ jboss-user mailing list jboss-

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-05 Thread starkc
The weblogic.jar is placed in /lib Yes, there is a classes12.jar (oracle drivers) in the same directory. This is the error I get now, not entirely unexpected given the file it was trying to load: | 13:47:23,428 ERROR [LogInterceptor] Unexpected Error in method: public abstract com.cyberso

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-05 Thread starkc
The weblogic.jar is placed in /lib Yes, there is a classes12.jar (oracle drivers) in the same directory. This is the error I get now, not entirely unexpected given the file it was trying to load: | 13:47:23,428 ERROR [LogInterceptor] Unexpected Error in method: public abstract com.cyberso

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-05 Thread starkc
End of the post got cut off, but it should be what you are looking for. I know its a ton to look through, thanks for doing that. One line that stands out immediately before the exception is the following: [Loaded weblogic.jdbc.common.OracleBlob] the weblogic.jar file was brought over to prov

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-04 Thread starkc
WAR contents: | META-INF/ | META-INF/MANIFEST.MF | WEB-INF/ | WEB-INF/classes/ | WEB-INF/classes/com/ ...etc... | WEB-INF/lib/ | WEB-INF/tlds/ | WEB-INF/weblogic.xml | WEB-INF/tlds/riskmanagerdecision.tld | decisionCore.jar | WEB-INF/web.xml | WEB-INF/jboss-web.xml | Do

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-04 Thread starkc
So what can I do to try and clarify the situation? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4126202#4126202 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4126202 ___ jbos

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-02-01 Thread starkc
I feel I have to reiterate that the code is closed to be, I do not have source access at this time, which unfortunately may limit us although I hope it does not. StrategyBeanBMPs ejbCreate, as per a decompiler, is as follows: | public StrategyPK ejbCreate(String s, String s1, String s2, Ti

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: EJB JAR inside EAR

2008-01-29 Thread starkc
I was mistaken, you are correct. I read the post incorrectly, where it details exactly what you just said. Under my misunderstanding, I thought I needed to remove the EJB jar from the EAR altogether, which led me to believe that I would need to reference it somehow in my jboss-app.xml or jboss

[jboss-user] [Installation, Configuration & DEPLOYMENT] - EJB JAR inside EAR

2008-01-28 Thread starkc
So after searching for some time, being unable to find a clear answer, I'll try and ask this here in hopes of reaching a quick solution. I am working on porting over a webapp server from WebLogic to JBoss 4.0.4 GA. The app is packaged in an EAR, which contains an EJB jar and a WAR file contain

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: JBoss + custom tags error

2008-01-04 Thread starkc
This appears to be fixed, with a change to the jbossweb-tomcat-55.sar/web.xml file. By setting a jsp param as follows: | | jsp | ... | | enablePooling | false | | ...and then deleting the tmp and work

[jboss-user] [Installation, Configuration & DEPLOYMENT] - JBoss + custom tags error

2008-01-04 Thread starkc
I have a confounding error while doing a migration from WebLogic to JBoss involving custom JSP tags. Tags appear to stop instantiating new tag objects between requests. The first few times I hit a page, it will perform the tag correctly, but later requests result in errors that seem to trace b