Ludicrous performance drop with JAR-packaged tag files.

I have a number of tag files which work just fine as long as they are in the WEB-INF/tags folder in the web application. Each page is loaded in a blink. I havent meassured response times exactly but they are well below half a second.
But as soon as I move them to a JAR and put it in the WEB-INF/lib folder, every page that uses the tags becomes painfully slow. Typical response time is 30+ seconds.
I have tried swapping back and forth between the JAR package and putting-everything-in-the-WEB-INF-folder. And the result is consistent.
I have only run tests in the NB4.0 IDE.
I use NetBeans 4.0, Windows 2000.
My unqualified guess is that each JSP that uses the tags is somehow forced to be recompiled at each request.
Anybody had the same experience?

My application is running under JBoss 4.0.4, which uses Tomcat 5.5 as the web container.
I ran FileMon on the server while loading one of my pages that uses tag files that are packaged into a jar file. During a single page load, the JAR file was hundreds of times - I would guess, once per tag.
Does anyone know if Tomcat does caching or exploding of tag files that are stored in a JAR? It appears that it is reloading the tag file from the JAR every time, which is adding seconds onto every page load! Does anyone know any more information about this?

Similar Messages

  • WLS 9.2.2: JSP recompile for every page load with JAR'ed tag files

    I have a small custom tag library of three tag files. With the server running in development mode and the tag files in a JAR (included in WEB-INF/lib), the server appears to be doing a JSP recompile on every page load. However, it only compiles on the first page load if the tag files are included in WEB-INF/tags (no JAR). Also, running the server in production mode with the JAR'ed tag files avoids the recompile for every page load.
              Is that how the server should behave?
              For whatever it's worth, I'm also using Eclipse 3.3.2 with WTP and WebLogic Server Tools 1.1.2. The server is running the Sun JVM (1.5_10).

    Vikram,
              I went back and created a simple example to test. Below I'm posting the Java source code generated from the two relevant files: index.jsp, and hello.tag.
              __index.java:
              package jsp_servlet;
              import java.io.*;
              import java.util.*;
              import javax.servlet.*;
              import javax.servlet.http.*;
              import javax.servlet.jsp.*;
              import javax.servlet.jsp.tagext.*;
              public final class __index extends weblogic.servlet.jsp.JspBase implements weblogic.servlet.jsp.StaleIndicator {
              private static void _releaseTags(javax.servlet.jsp.tagext.JspTag t) {
              while (t != null) {
              if(t instanceof javax.servlet.jsp.tagext.Tag) {
              javax.servlet.jsp.tagext.Tag tmp = (javax.servlet.jsp.tagext.Tag)t;
              t = ((javax.servlet.jsp.tagext.Tag) t).getParent();
              try {
              tmp.release();
              } catch(Exception ignore) {}
              else {
              t = ((javax.servlet.jsp.tagext.SimpleTag)t).getParent();
              public boolean _isStale(){
              boolean stale = staticIsStale((weblogic.servlet.jsp.StaleChecker) getServletConfig().getServletContext());
              return _stale;
              public static boolean _staticIsStale(weblogic.servlet.jsp.StaleChecker sci) {
              if (sci.isResourceStale("/index.jsp", 1207926672370L ,"9.2.2.0","America/Denver")) return true;
              if (sci.isResourceStale("/null", 1207926783245L ,"9.2.2.0","America/Denver")) return true;
              return false;
              private static void _writeText(javax.servlet.ServletResponse rsp, javax.servlet.jsp.JspWriter out, String block, byte[] blockBytes)
              throws java.io.IOException {
              if (!_WL_ENCODED_BYTES_OK || _hasEncodingChanged(rsp)){
              out.print(block);
              } else {
              ((weblogic.servlet.jsp.ByteWriter)out).write(blockBytes, block);
              private static boolean _hasEncodingChanged(javax.servlet.ServletResponse rsp){
              String encoding = rsp.getCharacterEncoding();
              if ( "ISO-8859-1".equals(encoding) || "Cp1252".equals(encoding) || "ISO8859_1".equals(encoding) || "ASCII".equals(encoding) ){
              return false;
              if (_WL_ORIGINAL_ENCODING.equals(encoding)) {
              return false;
              return true;
              private static boolean WLENCODED_BYTES_OK = true;
              private static final String WLORIGINAL_ENCODING = "ISO-8859-1";
              private static byte[] _getBytes(String block){
              try {
              return block.getBytes(_WL_ORIGINAL_ENCODING);
              } catch (java.io.UnsupportedEncodingException u){
              WLENCODED_BYTES_OK = false;
              return null;
              private final static String wlblock0 ="<!--\n * $Id$\n-->\n \n<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \n\t\t\"http://www.w3.org/TR/html4/loose.dtd\">\n \n";
              private final static byte[] wlblock0Bytes = getBytes( wl_block0 );
              private final static String wlblock1 =" \n \n\t";
              private final static byte[] wlblock1Bytes = getBytes( wl_block1 );
              private final static String wlblock2 ="\n";
              private final static byte[] wlblock2Bytes = getBytes( wl_block2 );
              private final static String wlblock3 ="\n\n<html>\n<head>\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\" />\n\n\t<title>Tag File Test</title>\n</head>\n<body> \n\t";
              private final static byte[] wlblock3Bytes = getBytes( wl_block3 );
              private final static String wlblock4 ="\n</body>\n</html>";
              private final static byte[] wlblock4Bytes = getBytes( wl_block4 );
              static private javelin.jsp.JspFunctionMapper jspxfnmap = javelin.jsp.JspFunctionMapper.getInstance();
              public void _jspService(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
              throws javax.servlet.ServletException, java.io.IOException {
              javax.servlet.ServletConfig config = getServletConfig();
              javax.servlet.ServletContext application = config.getServletContext();
              javax.servlet.jsp.tagext.JspTag _activeTag = null;
              Object page = this;
              javax.servlet.jsp.JspWriter out;
              javax.servlet.jsp.PageContext pageContext = javax.servlet.jsp.JspFactory.getDefaultFactory().getPageContext(this, request, response, null, true , 8192 , true );
              response.setHeader("Content-Type", "text/html; charset=ISO-8859-1");
              out = pageContext.getOut();
              javax.servlet.jsp.JspWriter _originalOut = out;
              javax.servlet.http.HttpSession session = request.getSession( true );
              try {;
              response.setContentType("text/html; charset=ISO-8859-1");
              {_writeText(response, out, _wl_block0, _wl_block0Bytes);}
              {_writeText(response, out, _wl_block1, _wl_block1Bytes);}
              {_writeText(response, out, _wl_block2, _wl_block2Bytes);}
              {_writeText(response, out, _wl_block3, _wl_block3Bytes);}
              jsp_servlet._tags.__hello_tag __tag0 = null ;
              int __result__tag0 = 0 ;
              if (__tag0== null )__tag0 = new jsp_servlet._tags.__hello_tag ();
              __tag0.setJspContext(pageContext);
              __tag0.setParent(null);
              activeTag=_tag0;
              __tag0.doTag();
              {_writeText(response, out, _wl_block4, _wl_block4Bytes);}
              } catch (Throwable __ee){
              if(!(__ee instanceof javax.servlet.jsp.SkipPageException)) {
              while ((out != null) && (out != _originalOut)) out = pageContext.popBody();
              releaseTags(activeTag);
              pageContext.handlePageException(__ee);
              __hello_tag.java:
              package jsp_servlet . _tags ;
              import java.io.*;
              import java.util.*;
              import javax.servlet.*;
              import javax.servlet.http.*;
              import javax.servlet.jsp.*;
              import javax.servlet.jsp.tagext.*;
              public final class __hello_tag extends javax.servlet.jsp.tagext.SimpleTagSupport {
              private static void _releaseTags(javax.servlet.jsp.tagext.JspTag t) {
              while (t != null) {
              if(t instanceof javax.servlet.jsp.tagext.Tag) {
              javax.servlet.jsp.tagext.Tag tmp = (javax.servlet.jsp.tagext.Tag)t;
              t = ((javax.servlet.jsp.tagext.Tag) t).getParent();
              try {
              tmp.release();
              } catch(Exception ignore) {}
              else {
              t = ((javax.servlet.jsp.tagext.SimpleTag)t).getParent();
              public static boolean _staticIsStale(weblogic.servlet.jsp.StaleChecker sci) {
              if (sci.isResourceStale("/META-INF/tags/hello.tag", 1207926783175L ,"9.2.2.0","America/Denver")) return true;
              return false;
              protected static final String tagxTagInfo = "-84,-19,0,5,116,0,5,104,101,108,108,111,116,0,29,106,115,112,95,115,101,114,118,108,101,116,46,95,116,97,103,115,46,95,95,104,101,108,108,111,95,116,97,103,116,0,5,101,109,112,116,121,112,112,112,112,119,5,0,0,0,0,3,116,0,10,106,115,112,67,111,110,116,101,120,116,119,1,0,116,0,28,106,97,118,97,120,46,115,101,114,118,108,101,116,46,106,115,112,46,74,115,112,67,111,110,116,101,120,116,113,0,126,0,4,119,1,1,112,119,2,1,0,112,112,116,0,7,106,115,112,66,111,100,121,119,1,0,116,0,36,106,97,118,97,120,46,115,101,114,118,108,101,116,46,106,115,112,46,116,97,103,101,120,116,46,74,115,112,70,114,97,103,109,101,110,116,113,0,126,0,6,119,1,1,112,119,2,1,0,112,112,116,0,6,112,97,114,101,110,116,119,1,0,116,0,31,106,97,118,97,120,46,115,101,114,118,108,101,116,46,106,115,112,46,116,97,103,101,120,116,46,74,115,112,84,97,103,113,0,126,0,8,119,1,1,112,119,2,1,0,112,112,119,4,0,0,0,0,112,112,";
              protected JspContext jspContext ;
              public void setJspContext ( JspContext ctx ){
              super . setJspContext ( ctx );
              java.util.List nested = null ;
              java.util.List atBegin = null ;
              java.util.List atEnd = null ;
              this.jspContext = new javelin.jsp.JspContextWrapper(ctx, nested, atBegin, atEnd, null);
              }public JspContext getJspContext() {
              return this.jspContext;
              private java.io.Writer jspxsout;
              private javax.servlet.jsp.tagext.JspTag _activeTag;
              private static void _writeText(javax.servlet.ServletResponse rsp, javax.servlet.jsp.JspWriter out, String block, byte[] blockBytes)
              throws java.io.IOException {
              if (!_WL_ENCODED_BYTES_OK || _hasEncodingChanged(rsp)){
              out.print(block);
              } else {
              ((weblogic.servlet.jsp.ByteWriter)out).write(blockBytes, block);
              private static boolean _hasEncodingChanged(javax.servlet.ServletResponse rsp){
              String encoding = rsp.getCharacterEncoding();
              if ( "ISO-8859-1".equals(encoding) || "Cp1252".equals(encoding) || "ISO8859_1".equals(encoding) || "ASCII".equals(encoding) ){
              return false;
              if (_WL_ORIGINAL_ENCODING.equals(encoding)) {
              return false;
              return true;
              private static boolean WLENCODED_BYTES_OK = true;
              private static final String WLORIGINAL_ENCODING = "ISO-8859-1";
              private static byte[] _getBytes(String block){
              try {
              return block.getBytes(_WL_ORIGINAL_ENCODING);
              } catch (java.io.UnsupportedEncodingException u){
              WLENCODED_BYTES_OK = false;
              return null;
              private final static String wlblock0 ="\n<center><h1>Hello World</h1></center>";
              private final static byte[] wlblock0Bytes = getBytes( wl_block0 );
              static private javelin.jsp.JspFunctionMapper jspxfnmap = javelin.jsp.JspFunctionMapper.getInstance();
              public void doTag() throws JspException, java.io.IOException {
              javax.servlet.jsp.PageContext pageContext = (javax.servlet.jsp.PageContext) getJspContext();
              javax.servlet.http.HttpServletRequest request = (javax.servlet.http.HttpServletRequest) pageContext.getRequest ();
              javax.servlet.http.HttpServletResponse response = (javax.servlet.http.HttpServletResponse) pageContext.getResponse();
              javax.servlet.http.HttpSession session = pageContext.getSession();
              javax.servlet.ServletContext application = pageContext.getServletContext();
              javax.servlet.ServletConfig config = pageContext.getServletConfig();
              javax.servlet.jsp.JspWriter out = jspContext.getOut();
              javax.servlet.jsp.tagext.JspTag _activeTag = null;
              try {
              {_writeText(response, out, _wl_block0, _wl_block0Bytes);}
              } catch ( Throwable t ){
              if( t instanceof javax.servlet.jsp.SkipPageException )
              {throw (javax.servlet.jsp.SkipPageException)t;}
              if( t instanceof java.io.IOException )
              {throw (java.io.IOException)t;}
              if( t instanceof IllegalStateException )
              {throw (IllegalStateException)t;}
              if( t instanceof javax.servlet.jsp.JspException )
              {throw (javax.servlet.jsp.JspException)t;}
              throw new javax.servlet.jsp.JspException(t);
              finally {
              ((javelin.jsp.JspContextWrapper)jspContext).syncEndTagFile();
              Edited by Stephen Davison at 04/11/2008 9:02 AM

  • Packaged Tag Files

    I have wrote a few Tag Files using jsp 2.0,
    You know these tags you can write in jsp code in a .tag file?
    I have a directory in my taglib webapp named "/WEB-INF/tags" which contains a bunch of .tags files.
    I have some test jsps using the <@ taglib prefix="tags" tagdir="/WEB-INF/tags"> to test the tags
    well so far everything is just fine.
    by the way I m using tomcat 5.0.9
    Now the problem is when I try to package them into a .jar file, according to the j2ee1.4 spec, you can.
    here's a excerpt from j2ee 1.4 spec
    << Tag files can be placed in one of two locations: in the /WEB-INF/tags/ directory or subdirectory of a Web application or in a JAR file (see Packaged Tag Files) in the /WEB-INF/lib/ directory of a Web application. Packaged tag files require a tag library descriptor (TLD), an XML document that contains information about a library as a whole and about each tag contained in the library. (See Tag Library Descriptors). Tag files that appear in any other location are not considered tag extensions and are ignored by the Web container. >>
    << Packaged Tag Files
    Tag files can be packaged in the /META-INF/tags/ directory in a JAR file installed in the /WEB-INF/lib/ directory of the Web application. Tags placed here are typically part of a reusable library of tags that can be easily used in any Web application. Tag files bundled in a JAR require a tag library descriptor. Tag files that appear in a JAR but are not defined in a TLD are ignored by the Web container. When used in a JAR file, the path subelement of the tag-file element specifies the full path of the tag file from the root of the JAR. Therefore, it must always begin with /META-INF/tags/. Tag files can also be compiled into Java classes and bundled as a tag library. This is useful when you wish to distribute a binary version of the tag library without the original source. If you choose this form of packaging you must use a tool that produces portable JSP code that uses only standard APIs. >>
    So I have done the following to make a jar that i could deploy with other webapps
    I have packaged my /WEB-INF/tags into a jar but renamed the "/WEB-INF" to "/META-INF" before exporting to the jar.
    I wrote a file named "speedweb-taglib.tld" and dropped it in the /META-INF dir in the jar, the file looked like this
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
    <taglib>
    <tlib-version>1.0.0</tlib-version>
    <short-name>tags</short-name>
    <uri>/WEB-INF/speedweb-taglib</uri>
    <tag-file>
    <name>border</name>
    <path>/META-INF/tags/border.tag</path>
    </tag-file>
    </taglib>
    I took the jar copied it to some-other-webapp/WEB-INF/lib
    I have a file some-other-webapp/WEB-INF/web.xml that instanciate the tagib like this
    <taglib>
    <taglib-uri>/WEB-INF/speedweb-taglib.tld</taglib-uri>
    <taglib-location>/WEB-INF/speedweb-taglib.tld</taglib-location>
    </taglib>
    I also triied this instead (the spec says it sould be there)
    <taglib>
    <taglib-uri>/WEB-INF/speedweb-taglib.tld</taglib-uri>
    <taglib-location>/META-INF/speedweb-taglib.tld</taglib-location>
    </taglib>
    So if the .tld must be in /META-INF in the jar, do I need another WEB-INF/speedweb-taglib.tld !?? or can
    I just remove it?? (I think so)
    I have some test jsps using the <%@ taglib prefix="tags" uri="/WEB-INF/speedweb-taglib.tld" %> to
    test the tags (note here i used the uri attribute instead of the tagdir attribute)
    But still not working
    Is it just tomcat that is buggy??
    What a mess!!
    I about to give up..
    Can someone help?
    Can someone point me to some sample code?

    Download the jstl tag libs from SUN and install them. Once you have them up and working look at how they are packaged and do the same for you files.

  • Issue with project having Tag File containing definition of other Tag File

    Hi Everyone,
    I have a small problem which you experts are able to help with.
    As the subject of this Post has suggested, I have a project which was originally built in NetBean 6.0 and I'm trying to migrate it across to JDeveloper 10.1.3. So far, I've managed to compiled all jsps and java source files successfully but I'm now stuck with the following error messages during building of the project in JDeveloper:
    --- START OF ERROR ---
    Error(6): Unable to instantiate tag: menu:tab (class: oracle.jsp._tag._tabmenu._tab_tag) Make sure that the tag class is available and that the tag library containing the class is not excluded from this application.
    Error(6): Unable to find class for bean: null defined by tag with class: oracle.jsp._tag._tabmenu._tab_tag
    --- END OF ERROR ---
    I believe the reason was that I have this Tag file (menu.tag) that contains definitions and references to another Tag file and here is its content:
    --- START OF TAG FILE ---
    <%@ taglib prefix="menu" tagdir="/WEB-INF/tags/tabmenu" %>
    <%@ attribute name="tab" required="true" type="java.lang.String" %>
    <jsp:useBean id="login" class="au.wa.apa.webbeans.WrsLogin" scope="session" />
    <div id="menu">
    <ul>
    <menu:tab tab="NEW" currentTab="<%=tab%>" label="New Query" tooltip="Create New Query" url="aq/adv_new_query.wrs?formMode=new"/>
    <menu:tab tab="OPEN" currentTab="<%=tab%>" label="Open Queries" tooltip="View Open/Active Queries" url="aq/adv_queries_list.wrs?view=OPEN"/>
    <menu:tab tab="CLOSED" currentTab="<%=tab%>" label="Closed Queries" tooltip="View Closed Queries" url="aq/adv_queries_list.wrs?view=CLOSED"/>
    <menu:tab tab="SEARCH" currentTab="<%=tab%>" label="Search" tooltip="Search Query" url="aq/adv_queries_search.wrs?view=OPEN"/>
    <% if (!"STAFF".equals(login.getUserType())) { %>           
    <menu:tab tab="ATTN" currentTab="<%=tab%>" label="Attention Of" tooltip="Attention Of Administration" url="aq/adv_query_attention_of_list.wrs"/>
    <% } else { %>
    <menu:tab tab="TEMP" currentTab="<%=tab%>" label="Templates" tooltip="Template Management" url="aq/adv_query_template_list.wrs"/>
    <% } %>
    </ul>
    <div class="clear"></div>
    </div>
    --- END OF TAG FILE ---
    I've this problem for several days now and have not been able to solve it and I hope you are able to help me with this problem. Thank you for time and assistance and have a nice day.
    Kind Regards,
    John

    Hi Guys,
    Do we have any workaround to this problem? Any feedback will be welcomed.
    Thanks and Regards,
    John

  • Any performance drop with a retina display?

    Hi!
    I'd love to buy a Macbook Pro 15" Retina Display but knowing that retina renders a very higher resolution, is there any performance drop in comparison with a normal Macbook Pro?
    I'm a developer and I wonder if a Retina display would be a good idea? Is it softer for the eyes?
    Thanks!

    I use my 4-month old, 2012 Retina Macbook Pro for music applications, presentations, and graphic design.
    This computer is leaps & bounds above the competition in performance and convenience.  I expect it to last me a very long time!
    On that note, keep in mind some of the new Oct. 2013 15" rMBP's do not have an NVIDIA Graphics Card.  In my opinion, having this component in the computer is crucial as a developer!
    If I were you, I'd shop for a refurbished 15" rMBP, as I did.  As I see it, I saved $500+ getting a brand new state-of-the-art computer in a different type of box.

  • Problems with JAR and manifest files

    Hi
    I have a simple class MyClass.class (not in a package) which contains:
         public static void main( String[] args ) {
              javax.swing.SwingUtilities.invokeLater(new Runnable() {
                               public void run() {
                                   new MyClass();
         }and a manifest file Manifest.mf which contains:
    Manifest-Version: 1.0
    Created-By: 1.4.2_08 (Sun Microsystems Inc.)
    Main-Class: MyClassand i am using the following line to create a JAR file:
    jar -cvmf Manifest.mf  MyClass.jar MyClass.classHowever when I try to run the file I get the following error:
    Could not find the Main file. Program will exit

    And another one
    although this one has an answer it doens't solve mine (I have a line at the end of my manifest)

  • Need Help With Jar Packages

    Can somebody please help me find the jar files for the following packages?  I'm new to both Crystal Reports as well as Java so please forgive me if I'm asking for the obvious   
    com.crystaldecisions.report.web.viewer.*
    com.crystaldecisions.sdk.occa.report.application.*
    com.crystaldecisions.report.reportengineinterface.*
    Thanks,
    V

    Thanks, that did the trick!
    Edited by: vinnyd on Jun 10, 2010 7:21 PM

  • Audio drops with the 2 gig file limit size between clips

    Videoing with a Sony HXR-NX5U, the camera creates a 2 gig file size limit then importing the clips into Premiere Pro CS6. There is a few frames between clips where the audio drops and there is also s very slight drop in the video, this happens only between longer clips. I saw some reference to this in the forum a while back but no answer. Any indeas!!

    Simple fix - copy entire contents of SD card to new folder on hard drive, all folder intact. Then in Premiere, import using "Media Browser" rather than "File > Import". With Media Browser, the spanned clips will be properly handled, importing as a single, long clip with no glitches.
    Thanks
    Jeff Pulera
    Safe Harbor Computers

  • Problem with jar including resource files.

    Have working project (classes + resources (video files)).
    After making executable jar file project still working, but without resource files.
    What can i do?
    Edited by: user13653211 on 08.01.2011 7:33

    Thanks a lot, but my browser redirects me from that link
    "http://docs.sun.com/source/819-0913/author/jar.html"
    to "http://www.oracle.com/technetwork/indexes/documentation/index.html" where I can't find material about discussed subject.
    Edited by: KaryuzinRoman on 19.01.2011 10:44

  • Horrible performance drop with mixed ports 100 & 1000 on the LAN side.

    I have horrible performance with newly bought lrt224.
    WAN side is a 150 Mb/s Cable connection.
    LAN has 3 ports at 1Gb/s and 1 port at 100 Mb/s
    Test:
    On any of the lan ports at 1 Gb/s I do a test via speedtest.net and get 150 Mb/s
    On the Lan port at 100 Mb/s I do a test via speedtest.net and get 10 Mb/s (same server)
    Weird part, I do a LAN (1Gb/s) to LAN (100Mb/s) test I get around 99Mb/s.
    Second weird part, I replace WAN side cable modem with a VDSL+ line and I get max VDSL+ performance of 75 Mb/s.
    Any hints?

    CABLE modem stats (bad perf):
    Ping statistics for 46.228.47.115:
    Packets: Sent = 83, Received = 83, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 24ms, Maximum = 106ms, Average = 32ms
    Tracing route to fd-fp3.wg1.b.yahoo.com [46.228.47.114]
    over a maximum of 30 hops:
    1 <1 ms <1 ms <1 ms 20.20.20.1
    2 1 ms <1 ms <1 ms 192.168.0.1
    3 27 ms 17 ms 9 ms d51a50801.access.telenet.be [81.165.8.1]
    4 14 ms 17 ms 11 ms dD5E0CC79.access.telenet.be [213.224.204.121]
    5 * 15 ms 20 ms dD5E0FA01.access.telenet.be [213.224.250.1]
    6 * * * Request timed out.
    7 19 ms 14 ms 24 ms nl-ams05a-rd1-te-6-0-0.aorta.net [213.46.183.101]
    8 20 ms 16 ms 13 ms pat2.ams.yahoo.com [80.249.209.163]
    9 35 ms 34 ms 30 ms ae-5.pat2.iry.yahoo.com [66.196.65.154]
    10 33 ms 33 ms 35 ms ae-3.msr1.ir2.yahoo.com [66.196.67.243]
    11 28 ms 29 ms 34 ms et-18-10.bas2-2-prd.ir2.yahoo.com [77.238.186.47]
    12 33 ms 26 ms 32 ms ir2.fp.vip.ir2.yahoo.com [46.228.47.114]
    VDSL modem stats (good one):
    Ping statistics for 46.228.47.114:
    Packets: Sent = 68, Received = 68, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 44ms, Maximum = 110ms, Average = 46ms
    Tracing route to fd-fp3.wg1.b.yahoo.com [46.228.47.115]
    over a maximum of 30 hops:
    1 <1 ms <1 ms <1 ms 20.20.20.1
    2 1 ms 1 ms 1 ms 192.168.1.1
    3 19 ms 19 ms 19 ms 109.131.160.1
    4 21 ms 20 ms 21 ms ae-62-100.iarstr4.isp.belgacom.be [91.183.241.240]
    5 * 21 ms 21 ms ae-13-1000.ibrstr3.isp.belgacom.be [91.183.246.112]
    6 * * * Request timed out.
    7 22 ms 21 ms 21 ms 94.102.162.147
    8 * * * Request timed out.
    9 * * * Request timed out.
    10 25 ms 25 ms 25 ms ge-1-3-0.pat1.ams.yahoo.com [80.249.209.110]
    11 74 ms 44 ms 44 ms ae-5.pat1.iry.yahoo.com [216.115.104.64]
    12 43 ms 43 ms 43 ms ae-2.msr2.ir2.yahoo.com [66.196.65.159]
    13 47 ms 43 ms 44 ms et-17-17.bas2-2-prd.ir2.yahoo.com [217.146.185.188]
    14 43 ms 48 ms 43 ms ir1.fp.vip.ir2.yahoo.com [46.228.47.115]

  • Error in jsp tag files with jdev 101310 and oc4j standalone10130

    Hello,
    I'm creating a simple jsp tag file that show "it´s test" and a jsp with the jsp tag file,
    the problem is:
    java.lang.NoSuchMethodError: oracle.jsp.runtime.OracleJspRuntime.releaseTagHandlers(Ljavax/servlet/jsp/PageContext;)V     at oracle.jsp._tag._tagMeta_tag.doTag(_tagMeta_tag.java:71)     at admin.applicationproperties._jspService(_applicationproperties.java:56)     [SRC:/admin/applicationproperties.jsp:10]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:270)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:42)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:204)     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)     at com.gtsCol.bonPen.servlets.ApplicationPropertiesServlet.doGet(ApplicationPropertiesServlet.java:51)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    my mail is [email protected]
    thansk for your help.

    Hola a todos,
    Estoy creando un jsp tag file que solo muestra un mensaje "Esto es una prueba" y la incluyo en una jsp normal, el problema es que no parece soportar este tipo de tags.
    El error que muestra es el siguiente.
    java.lang.NoSuchMethodError: oracle.jsp.runtime.OracleJspRuntime.releaseTagHandlers(Ljavax/servlet/jsp/PageContext;)V     at oracle.jsp._tag._tagMeta_tag.doTag(_tagMeta_tag.java:71)     at admin.applicationproperties._jspService(_applicationproperties.java:56)     [SRC:/admin/applicationproperties.jsp:10]     at com.orionserver[Oracle Containers for J2EE 10g (10.1.3.0.0) ].http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:270)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:42)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:204)     at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:209)     at com.gtsCol.bonPen.servlets.ApplicationPropertiesServlet.doGet(ApplicationPropertiesServlet.java:51)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:719)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:299)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:187)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.0.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    mi correo electronico es [email protected]
    De antemano gracias por la ayuda que me puedan brindar.

  • Packaging InDesign files

    I have an InDesign file that has a bleed. When I packaged the file, the Report text file listed Bleed as being zero. ln Document Setup the bleed is 1/4 inch on all 4 sides. The only way I was able to get the correct bleed setting to show in the report file was to go to File > Print, take the check off of Use Document Bleed Settings, and type in the bleed.
    Why would the correct bleed not be listed in the Report file if the document set up has a bleed setting?

    I think what happens when Use Document Bleed Settings is selected at print time, InDesign looks at the Document Setup "on the fly." It doesn't actually enter any values in the bleed boxes, so there's nothing there that gets saved with the document. When you enter the values yourself, the settings become a fixed part of the print output dialog and are saved with the document.
    If it helps: in all the years I've received packaged InDesign files from clients, I have never once paid attention to the "Print Settings" section of the report; there's nothing there that's relevant to the printer (that's me!).
    Maybe a good feature request would be to eliminate the Print Settings in the report and list the Document Setup values instead.
    One last thing: there may be a good reason for you to send the packaged native files to your printer, but the best workflow (if possible) would be to export a PDF for the printer and not bother with the packaged InDesign files at all.
    -Bill
    Edit: Mr. Spier beat me to it!
    Message was edited by: Bill Byers

  • Solaris package 'compver' file

    Hi,
    I have built a non-multiple-instance package, which is versioned
    "4.0.0-12", and more recently an update package, versioned "4.0.0-12-
    sp1". In the update package's 'pkginfo' file, I have added the compver
    file, in which I have a version entry for the original package,
    "4.0.0-12". I have verified that the compver file is indeed included
    in the update package.
    I pkgadd the original package, then pkgadd the update package, all
    loads fine. I rebuilt the update package and changed the compver entry
    to "5.0.0-12" in order to test compver functionality, and reloading
    the packages still works, as if the compver file were being ignored.
    Has anyone seen anything like this, or had any success working with
    the package 'compver' file?
    My package admin file:
    mail=
    instance=overwrite
    partial=ask
    runlevel=ask
    idepend=quit
    rdepend=quit
    space=ask
    setuid=nocheck
    conflict=nocheck
    action=nocheck
    basedir=default
    TIA!

    Hi icurtain,
    Flash Player version 9.0.115.0 for Solaris is now live.
    File size: 2,793 K
    Download Time Estimate: 4 minutes @ 56K modem
    Version: 9.0.115.0
    Browser: Mozilla or Mozilla-compatible
    Date Posted: 1/28/2008
    Language: English
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&P2_Pla tform=Intel
    Thanks for your patience.

  • Sudden MBP Retina 15" gaming performance drop

    Hi there,
    I've owned my Macbook Pro Retina since a few weeks after it came out last year, and have generally loved using it. However, I'm starting to worry now as I've noticed a severe performance drop lately in games.
    I've not booted into Bootcamp (Windows 8 x64) for about two months now, but today I loaded up Skyrim, and the performance was atrocious. The game was unplayable at 1920x1200 on high, unmodded. It lags horribly - 10FPS at most. I used to be able to play this game heavily modded and achieve a high FPS. I've noticed a performance drop with other games as well, much lower than what I'd expect from this machine.
    I've checked out GPU-Z and the 650M GT clocks up to 900MHz when the game launches.
    I'm not sure what has caused this but I've done some reading and people have suggested an "SMC Reset" - I've tried this to no avail. If anyone could lend any advice I'd greatly appreciate it.

    Well one problem is that bootcamp hasn't been updated to support Windows 8 yet, so there may be driver issues there. I have experienced this problems and so have others in this forum and an smc reset has fixed the majority. Are you sure you are performing the SMC reset correctly? Also, try a PRAM reset and see if that helps resolve the issue.

  • WLS does not handle reusable jar with tag-files?

    I want to encapsulate some tag-files in a re-usable jar that can be included in multiple applications. According to all the documentation that I've found what I need to do is create a jar file containing:
    META-INF/taglib.tld
    META-INF/tags/myTag.tag
    where the taglib.tld contains (among other things):
    <uri>myTag</uri>
    <tag-file>
    <name>someName</name>
    <path>META-INF/tags/myTag.tag</path>
    </tag-file>
    Then I am supposed to take that jar file and put it in my web application under WEB-INF/lib,
    and in my index.jsp I can refer to <%@taglib prefix="myt" uri="myTag">
    However when I do this (on wls 12c) the application seems to deploy ok but when I try to access index.jsp I get:
    weblogic.servlet.jsp.CompilationException: Failed to compile JSP /index.jsp
    index.jsp:14:4: 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 prefix="tags" uri="myt" %>
    Related facts:
    1. When I deploy these projects in Glassfish it works . as I expected based on the documentation with no errors.
    2. If I copy the tag files and tld with no modification directly into the web application as:
    <my web app>/WEB-INF/taglib.tld
    and <my web app>/META-INF/tags/myTag.tag
    then it does work. However, that prevents me from packaging the tag-files as a re-usable jar.
    (Facts 1 & 2 seem to imply that the files are correct and that WebLogic is not handling the jar correctly?)
    3. I've seen suggestions that there needs to be a <taglib> entry in web.xml. I have tried this and...
    - the text I've seen on the web generates an error. It seems to need to be within a <jsp-config> entry in web.xml.
    - even with this I still get the same error.
    Does anyone have a suggestion for how to get Weblogic to handle tag-files inside a re-usable jar?
    Do you have an example jar you can point me to just to see that it works on my system?
    Is there some special configuration needed by Weblogic to tell it to handle this construct?
    And finally, the error message is saying that one of two things is wrong:
    Either:
    A) it cannot find the referenced taglib file, or
    B) the tld file failed to compile.
    Is there any way for me to find out which of these is happening? The error messages in WLS do not seem to give any more info, so I cannot easily distinguish between these possibilities.
    Thanks for your assistance.

    After 3 days of seeing this error, immediately after posting this request the problem disappeared. Sigh.
    So for now this problem is closed. If it comes back I'll re-post.

Maybe you are looking for

  • I can no longer send using SMTP

    I had 4 pop email boxes (godaddy email boxes), 4 gmail and 1 yahoo pro account in my MAC mail. I did not have a problem receiving any of them. Then one day I had to change all my passwords. I reset all the passwords, and tested them all on web based

  • How to create a Date field with specific date limitations

    Hello, im new to creating forms in Acrobat. My question is, how do i create a date field and at the same time have a restriction on which dates to put. ie; i want the date field to only enter dates from Jan 01 2015 - Dec 31 2015. Thanks for your help

  • Generate Old PCA line items

    Dears, Can you please let me know how to generate Profit Center Old line items. I have activated line item indicators in 1) Profit Center Accounting - Basic Settings - Controlling Area Settings - Maintain Controlling Area Settings 2) Profit Center Ac

  • Flash Timeline help

    I set up a file with 147 frames that was supposed to be 7s at 21 fps. When I exported it the swf file ran over 7s. And when you played it in flash and watch it count the seconds it counted to 4 then dropped back to 2 before continuing to count up to

  • Rogue alert log in $ORACLE_HOME/dbs

    Hi there, have looked all over and not yet found the answer to my query. I have a database instance running at 10.2.0.4.0. There is a rougue alert-{ORACLE_SID}.log created in $ORACLE_HOME/dbs directory when an instance is started. Show parameter back