Home
Analytics
Integrating ActuateJavaComponent in WebLogic
rang3r
Hi all, i have a problem with running ActuateJavaComponent in WebLogic. I try run this application on local server, its worked. But on other remote server WebLogic i get following strings:
ajclanding.jsp:24:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/struts-bean" prefix="bean" %>
^----^
ajclanding.jsp:24:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/struts-bean" prefix="bean" %>
^----^
ajclanding.jsp:25:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/struts-html" prefix="html" %>
^----^
ajclanding.jsp:25:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/struts-html" prefix="html" %>
^----^
ajclanding.jsp:26:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/struts-logic" prefix="logic" %>
^----^
ajclanding.jsp:26:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/struts-logic" prefix="logic" %>
^----^
ajclanding.jsp:27:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/struts-tiles" prefix="template" %>
^----^
ajclanding.jsp:27:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/struts-tiles" prefix="template" %>
^----^
ajclanding.jsp:28:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/actabpanel" prefix="ap" %>
^----^
ajclanding.jsp:28:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file.
<%@ taglib uri="/actabpanel" prefix="ap" %>
^----^
Its show when index.jsp compile and runnig or runnig my JSP with report.
What is this?
Help me please!
Thank you!
Find more posts tagged with
Comments
JasonW
Are the tld definitions in the web.xml?
<taglib>
<taglib-uri>
/struts-logic
</taglib-uri>
<taglib-location>
/WEB-INF/struts-logic.tld
</taglib-location>
</taglib>
.
.
.
Jason
rang3r
yes, this tags defined in web.xml, also this problem showing in JSP where
<taglib uri="
http://java.sun.com/jstl/">..
. e.t.c.
I think that problem in deploying or running application, but i dont know,why one WebLogic 9.2 working and second WebLogic 9.2 dont work
Chezy
Did you deploy jstl war file before deploying ActuateJavaComponent? The jstl war is distributed with AJC and it needs to be deployed as a library.<br />
<br />
<blockquote class='ipsBlockquote' data-author="'rang3r'" data-cid="68223" data-time="1283929286" data-date="08 September 2010 - 12:01 AM"><p>
yes, this tags defined in web.xml, also this problem showing in JSP where<br />
<taglib uri="<a class='bbc_url' href='
http://java.sun.com/jstl/">...'>http://java.sun.com/jstl/">...</a>
; e.t.c.<br />
I think that problem in deploying or running application, but i dont know,why one WebLogic 9.2 working and second WebLogic 9.2 dont work<br /></p></blockquote>
rang3r
yes, Iam deploying JSTL war as lybrary of first, and deploying as a library, because thsi WebLogic recommended.
I cant understand why on my local WebLogic server this application worked correctly, and on remote server this apllication dont work, i try to edit web.mxl, and try to changed JSP code, example
<%@ taglib uri="/struts-bean" prefix="bean" %> -> <%@ taglib uri="/WEB-inf/struts-bean" prefix="bean" %>
But this changes dont help! I have idea that problem with classloader, i try deploy this war`s as a part of j2ee application but this porblem dont resolved. And what is ssosample.war, and where its use ? Thanks!
rang3r
So, nobody dont know, how to initegrated AJC with app, on WLC 9.2?