Re: Tomcat and Weblogic Integration

2003-07-22 Thread Will Hartung
Did you ever manage to get this to work? We're having similar issues but
don't find much in terms of resolution to the problems. Any luck??

Regards,

Will Hartung
([EMAIL PROTECTED])

- Original Message -
From: Rodney Leger [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, May 23, 2003 1:21 PM
Subject: Tomcat and Weblogic Integration


 Tomcat Users:
 I am runing into some integration difficulties.  I need to integrate
 Weblogic 8.1 and Tomcat 4.1.  I realize that weblogic has its own JSP
 container but for this particular assignment it would be helpful to
 integrate them.

 I've added weblogic.jar to my tomcat/common/lib directory, however, I
 keep getting hit with the following error message:

 exception

 org.apache.jasper.JasperException: weblogic/rmi/extensions/server/Stub
 at

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:2
48)
 at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at

org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:247)
 at

org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:193)
 at

org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:260)
 at

org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:643)
 at

org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)


 

 javax.servlet.ServletException: weblogic/rmi/extensions/server/Stub
 at

org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:497)
 at org.apache.jsp.UserManage_jsp._jspService(UserManage_jsp.java:152)
 at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:2
04)
 at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)


 I've verified that the /weblogic/rmi/extensions/server/Stub is in the
 weblogic.jar file but it doesn't seem to find it.

 I've also tried to obtain the classpath that tomcat is using with a jsp
 that gets the system properties and prints the classpath.

 Unfortunately, the only thing that was return was:


/usr/java/j2sdk1.4.1_01/lib/tools.jar:/usr/local/tomcat41/bin/bootstrap.jar

 This doesn't seem to be what I am looking for.

 What am i missing?  I've seen a similar configuration work at another
 site, but I can't tell what I am doing wrong.

 Your help is greatly appreciated.

 Thanks-
 Rodney


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Tomcat and Weblogic Integration

2003-07-22 Thread Bodycombe, Andrew
I'm guessing, but I suspect that the classes in weblogic.jar probably have
dependencies on j2ee.jar. You may need to include the complete j2ee.jar in
common/lib (and remove the servlet.jar, because that forms part of j2ee.jar)

Andy

-Original Message-
From: Will Hartung [mailto:[EMAIL PROTECTED] 
Sent: 21 July 2003 19:05
To: Tomcat Users List
Subject: Re: Tomcat and Weblogic Integration


Did you ever manage to get this to work? We're having similar issues but
don't find much in terms of resolution to the problems. Any luck??

Regards,

Will Hartung
([EMAIL PROTECTED])

- Original Message -
From: Rodney Leger [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, May 23, 2003 1:21 PM
Subject: Tomcat and Weblogic Integration


 Tomcat Users:
 I am runing into some integration difficulties.  I need to integrate
 Weblogic 8.1 and Tomcat 4.1.  I realize that weblogic has its own JSP
 container but for this particular assignment it would be helpful to
 integrate them.

 I've added weblogic.jar to my tomcat/common/lib directory, however, I
 keep getting hit with the following error message:

 exception

 org.apache.jasper.JasperException: weblogic/rmi/extensions/server/Stub
 at

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:2
48)
 at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at

org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
FilterChain.java:247)
 at

org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
ain.java:193)
 at

org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
va:260)
 at

org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invok
eNext(StandardPipeline.java:643)
 at

org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)


 

 javax.servlet.ServletException: weblogic/rmi/extensions/server/Stub
 at

org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImp
l.java:497)
 at org.apache.jsp.UserManage_jsp._jspService(UserManage_jsp.java:152)
 at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:136)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:2
04)
 at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:289)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:240)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)


 I've verified that the /weblogic/rmi/extensions/server/Stub is in the
 weblogic.jar file but it doesn't seem to find it.

 I've also tried to obtain the classpath that tomcat is using with a jsp
 that gets the system properties and prints the classpath.

 Unfortunately, the only thing that was return was:


/usr/java/j2sdk1.4.1_01/lib/tools.jar:/usr/local/tomcat41/bin/bootstrap.jar

 This doesn't seem to be what I am looking for.

 What am i missing?  I've seen a similar configuration work at another
 site, but I can't tell what I am doing wrong.

 Your help is greatly appreciated.

 Thanks-
 Rodney


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]





-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [ot] Re: Tomcat and Weblogic Integration

2003-05-27 Thread John Turner
As already pointed out, Weblogic != Tomcat.  Tomcat does not do J2EE.  
Comparing the two gets you nowhere.  People should use what works, and 
making assumptions or judgements about product quality based on whether 
something costs money or not is foolish.  The proof of that is everywhere.

John

On Tue, 27 May 2003 11:34:27 -0400, Kannan Sundararajan 
[EMAIL PROTECTED] wrote:

Tim,

Your experience is application specific. Since each company has specific
experience, and lot of changes in their environment, it is very difficult 
to
say about it. The proper plan in architecture, hardware, OS, code, 
database
and other segments leads to success of a product.

Always some percent of programmers disagrees about their quality of code 
(
it was bad, but not that bad ). I hope future app server will check these
codes :)

Kannan

-Original Message-
From: Tim Funk [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 27, 2003 11:21 AM
To: Tomcat Users List
Subject: [ot] Re: Tomcat and Weblogic Integration
I must disagree with weblogic performance from my own painful experience. 
I ran a site with weblogic which was as stable as a 2 year old running 
with a oversized beach ball on a windy day.

We were told it was our coding (it was bad, but not that bad). They had 
one of their ISVs come in and critique our site and they said they could 
rewrite

it in 4 months and a LOT of money and all would be solved. Meaning we had 
to

freeze all work for 4 months. We were tempted to do so because of the 
stability issues.

Then we switched to tomcat + apache - the speed was measurably faster and 
much more reliable/stable with no code changes (excluding fixing some
servlet api compliance issues). The only real code difference was I 
needed to write
a database pooling library (couldn't use dbcp yet) and bridge to the 
custom weblogic code we were using.

-Tim

Kannan Sundararajan wrote:
I disagree on this Yoav. I have used both WebLogic and Tomcat. You pay
what
you get it. If it is free that is your/our choice. Positively weblogic 
is
much more and better than tomcat. But still price concerns, we are using
tomcat. But if you on quality and the performance, weblogic is always
better.

WebLogic.jar is specific to weblogic and if you are using against other
jar
files, there could be lot of times you may end up getting error. I don't
think legally it is advisable to use the jar files from WebLogic to
tomcat,
unless you pay for the jar file for weblogic.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



--
Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]