Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web Application (JSP, Servlets, Struts) Issue - Java & Tomcat Upgrade

Status
Not open for further replies.

seema165

Programmer
Jul 11, 2005
48
0
0
GB
Hi,

I am wondering if someone could assist me with trying to figure out what's wrong with my web application.
The current live application is on Java 5 with Tomcat 5.5.29. It also uses YUI 2.6.0 and JCIFs for authentication.

I have upgraded on a virtual machine to Java 7 and Tomcat 7.0.50. I have tried to follow the migration documents on Tomcat, though this is not my field of expertise so I may not have fully understood parts of it.
I have removed the JCIFs implementation from the web.xml file and now use JNDI basic authentication against LDAP.

I have managed to get my web app to load and allow me access through the LDAP check it does. I then tell the web app to find an order, which should bring up the order page. This page uses the YUI implementation to display tabs (some tabs have sub tabs on them). On the upgraded web application, when I run it, it doesn't populate the information on the tabs. You can see the tabs, but that's it, it collapses the tabs.

I can't seem to attach a word file to this to show you the screenshots of how it looks and how it should look. Let me know if you want me to directly email you the screenshots.

Is it that something's fundamentally changed between the versions of either/both Java and Tomcat? I have tried to debug using the F12 Developer Tools, but I cannot see what's wrong. Oh btw, this is in IE9. The web app only works with IE, no other browser.

Here's the Javascript that builds the tabs up:

JavaScript:
function YUILoaderSuccess() {
           //when TabView is loaded, instantiate opportunityViewTabs:
           var opportunityViewTabs = new YAHOO.widget.TabView('opportunityViewTabs');
  			
       		tab = new YAHOO.widget.Tab({
		        label: 'Forecast Details'
		        ,dataSrc: 'includes/tab_forecasttabs.jsp'
			    ,cacheData: true			        
 				});
        	opportunityViewTabs.addTab(tab);	     
        	
	  			//when TabView is loaded, instantiate forecastTabs:
				var forecastTabs = new YAHOO.widget.TabView('forecastTabs');
				var forecastSubTabId = ${obTabIndex2};
				if (forecastSubTabId > 2) {
					forecastSubTabId = 0;
				}
	        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Summary'
			        ,dataSrc: 'includes/tab_forecastsummary.jsp'
			        ,cacheData: true
	 				});
	        	forecastTabs.addTab(tab);
	        		        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Progress Notes'
			        ,dataSrc: 'includes/tab_progressnotes.jsp'
			        ,cacheData: true
	 				});
	 			tab.addListener("dataLoadedChange", function() {renderProgressNotes();});
	        	forecastTabs.addTab(tab);
	        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'System Notes'
			        ,dataSrc: 'includes/tab_systemnotes.jsp'
			        ,cacheData: true
	 				});
	 			tab.addListener("dataLoadedChange", function() {renderSystemNotes();});
	        	forecastTabs.addTab(tab);
	        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Supporting Documentation'
			        ,dataSrc: 'includes/tab_supdocs.jsp'
			        ,cacheData: true
	 				});
	        	forecastTabs.addTab(tab);	        	
				forecastTabs.set("activeIndex", forecastSubTabId);	
   			
        	tab = new YAHOO.widget.Tab({
		        label: 'Customer Details'
		        ,dataSrc: 'includes/tab_customertabs.jsp'
		        ,cacheData: true
 				});
        	opportunityViewTabs.addTab(tab);	     
        	
				//when TabView is loaded, instantiate ContactsTabs:
	        	var customerTabs = new YAHOO.widget.TabView('customerTabs');
				var customerSubTabId = ${obTabIndex2};
				if (customerSubTabId > 3) {
					customerSubTabId = 0;
				}
				
	        	tab = new YAHOO.widget.Tab({
			        label: 'Registered Office'
			        ,dataSrc: 'includes/tab_registeredoffice.jsp'
			        ,cacheData: true
	 				});
	        	customerTabs.addTab(tab);
	        		        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Contacts (Commercial)'
			        ,dataSrc: 'includes/tab_contactscom.jsp'
			        ,cacheData: true
	 				});
	        	tab.addListener("dataLoadedChange", function() {renderContactsCom();});
	        	customerTabs.addTab(tab);
	        		        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Contacts (Operational)'
			        ,dataSrc: 'includes/tab_contactsops.jsp'
			        ,cacheData: true
	 				});
	        	tab.addListener("dataLoadedChange", function() {renderContactsOps();});
	        	customerTabs.addTab(tab);
	        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Installations Sites'
			        ,dataSrc: 'includes/tab_installsites.jsp'
			        ,cacheData: true
	 				});
	        	tab.addListener("dataLoadedChange", function() {renderSites();});
	        	customerTabs.addTab(tab);	        	
				customerTabs.set("activeIndex", customerSubTabId);			        	   		
        	
        	<c:if test="${orderBean.enableServices||fn:contains(fn:toLowerCase(orderBean.orderStatus),'short-listed')||fn:contains(fn:toLowerCase(orderBean.orderStatus),'order')}">
	        	tab = new YAHOO.widget.Tab({
			        label: 'Default Settings'
			        ,dataSrc: 'includes/tab_defaultsettings.jsp'
			        ,cacheData: true
			        ,active: true
  				});
	        	opportunityViewTabs.addTab(tab);	
	        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Services'
			        ,dataSrc: 'includes/tab_services.jsp'
			        ,cacheData: true
  				});
  				tab.addListener("dataLoadedChange", function() {renderServicesAddedToOrder();});
	        	opportunityViewTabs.addTab(tab);		
	        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Payment Terms'
			        ,dataSrc: 'includes/tab_paymentterms_order.jsp'
			        ,cacheData: true
  				});
  				tab.addListener("dataLoadedChange", function() {renderRevenueSummary();});
	        	opportunityViewTabs.addTab(tab);	
	        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Special Conditions'
			        ,dataSrc: 'includes/tab_specialconditions.jsp'
			        ,cacheData: true
  				});
	        	opportunityViewTabs.addTab(tab);		
	        	
	        	tab = new YAHOO.widget.Tab({
			        label: 'Declarations'
			        ,dataSrc: 'includes/tab_declarations.jsp'
			        ,cacheData: true
  				});
  				tab.addListener("dataLoadedChange", function() {renderDeclarationsAddedToOrder();});	  				
	        	opportunityViewTabs.addTab(tab);	
	        	
	        	<c:if test="${!empty orderBean.versionsList}">	
		        	tab = new YAHOO.widget.Tab({
				        label: 'Versions'
				        ,dataSrc: 'includes/tab_versions.jsp'
				        ,cacheData: true
	  				});
	  				tab.addListener("dataLoadedChange", function() {renderVersions();});
		        	opportunityViewTabs.addTab(tab);
		        </c:if>
			</c:if>			         	
        	
    	    opportunityViewTabs.set("activeIndex", ${obTabIndex1});		       	
}

Here the html code of where it should go:

HTML:
<div class="yui-skin-xxx">
	<div id="opportunityViewTabs" class="yui-navset">
</div>

Please let me know if there is further information you require.

Thanks
Seema
 
Any error showing up on the server logs? Any way to do a single test, for example on includes/tab_defaultsettings.jsp to try to isolate the problem? Maybe http watch to check the requests are actually being served?

Cheers,
Dian
 
No, nothing showing up in the server logs. This is what's in my localhost_access_log file (sorry it's long):

Code:
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/P1_00.do HTTP/1.1" 200 21053
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/css/main.css HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/js/common.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/css/main.css HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/js/common.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/yuiloader/yuiloader-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/yuiloader-dom-event/yuiloader-dom-event.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/yahoo/yahoo-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/dom/dom-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/event/event-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/element/element-beta-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/dragdrop/dragdrop-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/resize/resize-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/animation/animation-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/layout/layout-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/container/container_core-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/utilities/utilities.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/calendar/calendar-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/menu/menu-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/treeview/treeview-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/paginator/paginator-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/logger/logger-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/connection/connection-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/datasource/datasource-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/datatable/datatable-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/button/button-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/yui/autocomplete/autocomplete-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/images/logo_new_xxxx.jpg HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:53 +0000] "GET /myApp/images/banner7.jpg HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/yui/assets/skins/xxxx/skin.css HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/yui/assets/skins/xxxx/treeview-loading.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/lph.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/lp.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/lmh.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/lm.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/ln.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/tph.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/tp.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/tmh.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/images/folders/tm.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/yui/tabview/tabview-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/yui/selector/selector-beta-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/yui/assets/skins/xxxx/dt-arrow-up.png HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/yui/assets/skins/xxxx/layout_sprite.png HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:54 +0000] "GET /myApp/yui/assets/skins/xxxx/sprite.png HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/P5_0_0.do?submit=findOpportunity HTTP/1.1" 200 21580
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/css/main.css HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/js/common.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/dom/dom-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/yuiloader/yuiloader-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/element/element-beta-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/yahoo/yahoo-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/dragdrop/dragdrop-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/container/container_core-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/utilities/utilities.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/yuiloader-dom-event/yuiloader-dom-event.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:55 +0000] "GET /myApp/yui/paginator/paginator-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/logger/logger-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/connection/connection-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/event/event-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/layout/layout-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/datasource/datasource-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/animation/animation-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/datatable/datatable-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/treeview/treeview-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/button/button-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/autocomplete/autocomplete-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/logo_new_xxxx.jpg HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/banner2.jpg HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/resize/resize-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/calendar/calendar-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/menu/menu-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/assets/skins/xxxx/skin.css HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/assets/skins/xxxx/treeview-loading.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/lph.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/lp.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/lmh.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/lm.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/ln.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/tp.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/tph.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/tmh.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/images/folders/tm.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/tabview/tabview-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/selector/selector-beta-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/assets/skins/xxxx/layout_sprite.png HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:11:56 +0000] "GET /myApp/yui/assets/skins/xxxx/sprite.png HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "POST /myApp/P5_0_1.do HTTP/1.1" 200 56906
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/css/main.css HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/js/common.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/yahoo/yahoo-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/yuiloader/yuiloader-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/yuiloader-dom-event/yuiloader-dom-event.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/yahoo-dom-event/yahoo-dom-event.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/event/event-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/dom/dom-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/element/element-beta-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/dragdrop/dragdrop-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/resize/resize-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/animation/animation-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/layout/layout-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/container/container_core-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/utilities/utilities.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/calendar/calendar-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/menu/menu-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/treeview/treeview-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/paginator/paginator-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/logger/logger-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/connection/connection-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/datatable/datatable-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/datasource/datasource-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/autocomplete/autocomplete-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/button/button-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/logo_new_xxxx.jpg HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/banner7.jpg HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/assets/skins/xxxx/skin.css HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/assets/skins/xxxx/treeview-loading.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/lph.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/lp.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/lmh.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/ln.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/lm.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/tph.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/tp.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/tmh.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/images/folders/tm.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/tabview/tabview-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:00 +0000] "GET /myApp/yui/selector/selector-beta-min.js HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/tab_defaultsettings.jsp HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/tab_forecasttabs.jsp HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/images/wait.gif HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/yui/assets/skins/xxxx/sprite.png HTTP/1.1" 304 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:02 +0000] "GET /myApp/includes/P1_00.do HTTP/1.1" 302 -

I've tried setting Watch on opportunityViewTabs and forecastTabs, but I'm not 100% sure on what I'm doing and/or looking for.


 
Sorry, but I cannot see any reference to a JSP. Are the requests actually being delivered to the Tomcat?

Cheers,
Dian
 
There's 2 references to JSPs in the above log file, which is:

Code:
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/tab_defaultsettings.jsp HTTP/1.1" 302 -
0:0:0:0:0:0:0:1 - user [28/Feb/2014:12:12:01 +0000] "GET /myApp/includes/tab_forecasttabs.jsp HTTP/1.1" 302 -

but neither are showing data on there. I'm not sure if the sub-tabs are being delivered on there (though they should do, as I have not changed any of the code and how it works from the live version (which does work). How would I check to see if it is delivered to Tomcat? Sorry if this is meant to be obvious, but my knowledge of Tomcat is limited.
 
Ok I've made my application go to tab_defaultsetttings.jsp and tab_forecastsummary.jsp. Both those load with the data.
It seems like when they're sub-tabs, they don't work. How can it stop working just from upgrading the Java and Tomcat?
Any ideas on how to debug to find out where's it's falling over (if it is)?

Thanks
 
From my experience, applications can fail without doing anything, so an upgrade is a reasonable source of errors, and that error can or cannnot be in the Tomcat part.

Said that, I get your applicacion involves client and server processing. You said you were familiar with IE debugging tools, so I would recommend use them to check if the page, once load, contains the information of subtabs and just refuse tho show it or not.

If the info is there, the problem will be on the client part. If not, I'd try to identify the JSP calls that are not returning data. You said those two are being correct but, what about the requests that should load the subtabs part? Are they being devilevered? If so, are they returning data?

I get you still have the original app up and running so another option would be to compare both outputs (generated HTML and HTTP requests)



Cheers,
Dian
 
I have been comparing both the live application and my upgraded test application.
In the Developer Tools in IE, on the Network tab I captured what I was doing. I did this on both live and my test to compare the 2.
I don't know how much difference this makes but on my test I noticed under the Response Headers that Cache-Control value was set to Private. On the live output it had 2 values for Cache-Control, which are "no-cache" and "no-store". Then Pragma is set to "no-cache" on live as well, but it doesn't exist on my test version.

So I looked on the internet and found that you can set these values in the web.xml file (as shown at I have now set the init-param to the below:

XML:
<filter>
        <filter-name>NoCacheFilter</filter-name>
        <filter-class>com.myapp.NoCacheFilter</filter-class>
        <!-- Added init paramaters -->
        <init-param>
            <param-name>Cache-Control</param-name>
            <param-value>no-cache</param-value>
        </init-param>
        <init-param>
            <param-name>Cache-Control</param-name>
            <param-value>no-store</param-value>
        </init-param>
        <init-param>
            <param-name>Pragma</param-name>
            <param-value>no-cache</param-value>
        </init-param>
    </filter> 
	
	<filter-mapping>
	    <filter-name>NoCacheFilter</filter-name>
	    <url-pattern>/includes/*</url-pattern>
	</filter-mapping>
	<filter-mapping>
	    <filter-name>NoCacheFilter</filter-name>
	    <url-pattern>/</url-pattern>
	</filter-mapping>

And I also saw on the internet (at to set the valve in the context.xml as:

XML:
<Valve className="org.apache.catalina.authenticator.BasicAuthenticator"  disableProxyCaching="false" />

So going back to the Network output in the Developer Tools, looking at the URL /myapp/includes/tab_defaultsettings.jsp, the Type is blank on test with a http result of 302, but on live it says "text/html" with a http result of 200. Looking at the Detailed View at the Response Headers tab, test says:

Code:
Response:[indent]HTTP/1.1 302 Found[/indent]
Server:[indent]Apache-Coyote/1.1[/indent]
Cache-Control:[indent]no-cache[/indent]
Cache-Control:[indent]no-store[/indent]
Pragma:[indent]no-cache[/indent]
Expires:[indent]Thu, 01 Jan 1970 00:00:00 GMT[/indent]
Location:[indent][URL unfurl="true"]http://localhost:port/myapp/includes/P1_00.do[/URL][/indent]
Content-Length:[indent]0[/indent]

The live Detailed View says:

Code:
Response:[indent]HTTP/1.1 200 OK[/indent]
Server:[indent]Apache-Coyote/1.1[/indent]
Cache-Control:[indent]no-cache[/indent]
Cache-Control:[indent]no-store[/indent]
Pragma:[indent]no-cache[/indent]
Expires:[indent]Thu, 01 Jan 1970 00:00:00 GMT[/indent]
Content-Type:[indent]text/html;charset=UTF-8[/indent]
Transfer-Encoding:[indent]chunked[/indent]
Location:[indent][URL unfurl="true"]http://localhost:port/myapp/includes/P1_00.do[/URL][/indent]
Content-Length:[indent]0[/indent]

Note that the 2 above have slightly different information. Is this anything to do with it? Should I be able to see what's wrong from this?
Please let me know what I'm missing

Thanks
 
I'm not sure that makes any difference. What about the contents of the responses? What I expected to happen was that some test responses would be empty and live responses would contain data. That would be a starting point to isolate the source of error.

Btw, I see a .do that reminds me a Struts application. What is your applicacion using (Spring, Struts, Servel, JSP)? Did you try putting the log level to debug to see if something came up?

Cheers,
Dian
 
The test application didn't contain a response, it was blank, but the live response contained the code for the tab.

It is a struts, servlet, jsp, java application.

In the web.xml file I have:

XML:
<!-- Action Servlet Configuration -->
	<servlet>
		<servlet-name>action</servlet-name>
		<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
		<init-param>
			<param-name>config</param-name>
			<param-value>/WEB-INF/struts-config.xml</param-value>
		</init-param>
		<init-param>
			<param-name>debug</param-name>
			<param-value>1</param-value>
		</init-param>
		<init-param>
			<param-name>detail</param-name>
			<param-value>3</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>

Should I be setting the values differently? I haven't changed any of these values, they are the same as the live application.

Thanks
Seema
 
I have fixed this issue. Looks like the WEB-INF/web.xml file contained a line it shouldn't have done. The code in there is:

XML:
<filter-mapping>
		<filter-name>Auth Filter</filter-name>
		<url-pattern>*.jsp</url-pattern>
		<url-pattern>*.do</url-pattern>
		<dispatcher>REQUEST</dispatcher>
    </filter-mapping>

It shouldn't have contained the *.jsp url pattern. This was causing the request filter (doFilter function) to process .jsp pages.
I have removed this and it all works now. Thanks for your help Dian.

Seema

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top