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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by seema165

  1. seema165

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

    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: <filter-mapping> <filter-name>Auth Filter</filter-name> <url-pattern>*.jsp</url-pattern> <url-pattern>*.do</url-pattern> <dispatcher>REQUEST</dispatcher>...
  2. seema165

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

    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: <!-- Action Servlet Configuration --> <servlet> <servlet-name>action</servlet-name>...
  3. seema165

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

    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...
  4. seema165

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

    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...
  5. seema165

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

    There's 2 references to JSPs in the above log file, which is: 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...
  6. seema165

    Java Tomcat Application Access Issues on Virtual Machines

    Thanks for Diancecht. I think we've narrowed it down to individual PC/laptop setups.
  7. seema165

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

    No, nothing showing up in the server logs. This is what's in my localhost_access_log file (sorry it's long): 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...
  8. seema165

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

    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...
  9. seema165

    Java Tomcat Application Access Issues on Virtual Machines

    Hi, I know that this is probably not the right forum to post this in, but I've already posted in the "Sun: Servlets and JavaServer Pages (JSP)" forum, with no reply, so I'm not sure if anyone's seen it...yet. If there is another forum you recommend I post in, please let me know. We have a Java...
  10. seema165

    Java Tomcat Application Access Issues on Virtual Machines

    Hi, I don’t know if this is the right place to post this, so please advise if it isn’t. We have a Java struts servlet application which is running through Tomcat and is access through our intranet page. Java version 1.5, Tomcat 5.5.29, Windows Server 2003 R2 SP2 – this is on a virtual box...
  11. seema165

    JInternalFrame

    Hi, Let me give you the scenario of what the problem is: I have a JDesktopPane and a JPanel. I have added both onto a JSplitPane (split HORIZONTAL). The JDesktopPane then has 2 other JPanels (blankPanel and newsPanel) which are added using GridBagLayout, where the top JPanel (blankPanel)...
  12. seema165

    Set table header background

    Ok, I've worked it out, though I'm not sure if it was the best way to do it. I did: table.getTableHeader().setBackground(new Color(0,0,0,0));
  13. seema165

    Set table header background

    I have a TableCellRenderer class which extends default. My code is: public class TennisTableCellRenderer extends DefaultTableCellRenderer { protected boolean isSelected = false; protected Color selectionColor; public TennisTableCellRenderer() { super(); } public...
  14. seema165

    Set table header background

    Hi, I am trying to get my JTable table's header to setOpaque(false) so I can see the background image in the same way I can see it for my table rows and columns. Can someone please tell me how to do this, if it is even possible to do. Thanks in advance :)
  15. seema165

    obdc_connect()

    Try this website: http://www.connectionstrings.com/ or http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=6442&lngWId=4 It gives you the connect strings and examples of how to do them for different databases. Hope this helps

Part and Inventory Search

Back
Top