RGupta

Greenhorn
+ Follow
since Jun 05, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
1
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by RGupta

I have installed Weblogic 8.1 and 9.1 both. However while trying to run 9.1 with 8.1 already running , the server doesnt starts up and automatically shuts down and throws the error that the port 7001 is already being used by other process.
Is there a way through which I can change the port number in 9.1 so that both 8.1 and 9.1 can run in parallel?
17 years ago
Hi,

I am trying to run my application using Weblogic 8 on Linux.
I am using

<%@ taglib prefix="c" uri="/core" %>
<%@ taglib prefix="fmt" uri="/fmt" %>
<%@ taglib prefix="spring" uri="/spring" %>
<%@ taglib prefix="emars" uri="/app %>
<%@ taglib prefix="authz" uri="/authz" %>

in my jsp page. Corresponding paths to the tlds are mentioned in web.xml.
I guess "/" here is causing problem. Its not being resolved in Linux.

Thanks in advance
17 years ago
Hi,

I am trying to run my application using weblogic 8 under Redhat. While trying to run it, I get JSP compile error on the browser.
I guess the uri path is not being resolved correctly in Linux for the tld files. Otherwise it works fine in tomcat.

<%@ taglib prefix="c" uri="core" %>
<%@ taglib prefix="fmt" uri="fmt" %>
<%@ taglib prefix="spring" uri="spring" %>
<%@ taglib prefix="emars" uri="app" %>
<%@ taglib prefix="authz" uri="authz" %>

Can anyone help me out please?
slight correction the taglib defined here are

<%@ taglib prefix="c" uri="/core" %>
<%@ taglib prefix="fmt" uri="/fmt" %>
<%@ taglib prefix="spring" uri="/spring" %>
<%@ taglib prefix="emars" uri="/app" %>
<%@ taglib prefix="authz" uri="/authz" %>

I believe here "/" causing problem On Linux.
Any help will be highly appreciated.

[ June 26, 2006: Message edited by: RahulGupta ]
[ June 26, 2006: Message edited by: RahulGupta ]
17 years ago
JSP
Hi,

I am trying to deploy my application in Weblogic8.1 . I have configured the DB connection and also configured the web application successfully through the console.
But when I run it through the browser it gives me JSP Compile Error.
I am using RedHat Linux ES3 server and Mozilla browser.

Can anyone please let me know as to why this is happening?
17 years ago
Hello I am running my application on weblogic 8.1 . While performing one operation I am getting the error

java.math.BigDecimal.<int>(I)V

Not sure why? Because I am not getting this error on tomcat 5.5.17.

I am using jdk1.4-2.04 for weblogic but using 1.5 for tomcat.

Can any one help me on this?

Rahul
17 years ago
Hi,

When i deploy my application I get this error in the log file

org.xml.sax.SAXParseException: cvc-elt.1: Cannot find the declaration of element 'Rahul'.
at weblogic.apache.xerces.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:232)
at weblogic.apache.xerces.util.ErrorHandlerWrapper.error(ErrorHandlerWrapper.java:173)
at weblogic.apache.xerces.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:371)
at weblogic.apache.xerces.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:305)


Can anyone tell me as why its giving me such an error.
17 years ago
That works perfectly fine. Space was creating the problem. But how can it be that the same code was working fine with tomcat?
17 years ago
JSP
The actual line that is creating the error is like:-

<input type="checkbox" name="<rahul:out value='${status.expression}'/>" value='true'id='userac' < c:if test="${status.value == 'true'}" > checked </c:if>/>
17 years ago
JSP
I have declared all the taglibs in one jsp and included that jsp on each page.
Description goes like this
<%@ taglib prefix="c" uri="/core" %>
<%@ taglib prefix="fmt" uri="/fmt" %>
<%@ taglib prefix="spring" uri="/spring" %>
<%@ taglib prefix="emars" uri="/emars" %>
<%@ taglib prefix="authz" uri="/authz" %>

The tag is properly closed.
17 years ago
JSP
I am using <c:if> tag inside <option> html tag. It gives me the error
weblogic.servlet.jsp.JspException: (line 27): Non-matching extension tags

thats probably because i am nsting c:if inside <option> tag.
But that problem only comes when i use weblogic otherwise it works very fine with tomcat.
Can anyone please help me on this?

Thanks
Rahul
17 years ago
JSP
I am using <c:if> tag inside <option> html tag. It gives me the error
weblogic.servlet.jsp.JspException: (line 27): Non-matching extension tags

thats probably because i am nsting c:if inside <option> tag.
But that problem only comes when i use weblogic otherwise it works very fine with tomcat.
Can anyone please help me on this?

Thanks
Rahul
17 years ago
JSP