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!

Search results for query: *

  1. jnicho02

    Servlet / Tomcat

    After the first use Tomcat has loaded the servlet into memory so it doesn't refer to your class file until you've reset. When developing, I find it easiest to keep a browser window open in the Tomcat Web Application Manager and click on reload to stop and start my session. Jeremy Nicholson...
  2. jnicho02

    Sophisticated Shopping Cart

    You probably need a customised solution. If it were based on OSCommerce which is Open Source and free then the majority of your spend can go on the development itself. Jeremy Nicholson, System Architect http://www.PionLabs.com/
  3. jnicho02

    How to return a 403 on a directory

    might just need a .htaccess file with 'IndexIgnore *' in the images directory to block file list access Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a UK-based Java and Data Warehousing consultancy
  4. jnicho02

    Xalan and JDK1.4.1

    haven't used the Tomcat endorsed directory yet, but the one way to get xalan jars to be loaded in advance of the jre1.4 versions is to create an endorsed directory under jre/lib I sincerely hope that the Tomcat endorsed directory can do the same. Jeremy Nicholson, Director of...
  5. jnicho02

    Running Servlets using web.xml

    maybe you need to do a servlet-mapping ? Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a UK-based Java and Data Warehousing consultancy
  6. jnicho02

    Multiple date dimensions

    The four differnt fields do all link to the same Time table, so that's how they would be shown in ErWin. However, as you say, when you do a SQL join you must use aliases of the Time table for each join. This is normally something for the programmer to work out an isn't expressed on an entity...
  7. jnicho02

    IMAGE

    as you are using Sun One Studio it is probably looking for the image in the root directory of Sun One. Load images relative to a class resource, this will also allow you to put images into a jar file along with your classes. e.g. ImageIcon icon = new Imageicon(...
  8. jnicho02

    Equals...

    ah, but I think that Hattusas is saying 'how can I compare the contents of two 2D arrays and say whether their contents are equal'....you could create a class containing an array and override the equals() method to check that 1) they are the same dimensions, 2) the contents of each cell are the...
  9. jnicho02

    Connectivity with mysql and postgresql

    The MySql site has a download for Connector/J jdbc driver. Include it in your classpath and you will be able to access MySQL using jdbc. Look on http://jdbc.postgresql.org/ for the former. Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a UK-based Java and Data Warehousing...
  10. jnicho02

    Same value in all objects

    Yes, the static variable will be a single instance. All of the Person classes will refer to the exact same variable. Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a UK-based Java and Data Warehousing consultancy
  11. jnicho02

    Just done first website but seems to be slow

    ....apologies, I take back what I said about going to the Web Designers Forum, the Dreamweaver MX members are alive and well! Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a UK-based Java and Data Warehousing consultancy
  12. jnicho02

    Just done first website but seems to be slow

    Hi Juddy58, The site doesn't look too bad. An excellent place for advice is the Tek-Tips Web Site Designers forum. Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a UK-based Java and Data Warehousing consultancy
  13. jnicho02

    MCSE?

    Melissa, I think that there is a TT forum dedicated to the subject. Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a UK-based Java and Data Warehousing consultancy
  14. jnicho02

    test data

    I'm looking for a large chunk of data to test a system...preferably lots of information about individuals....something like a telephone directory would be ideal, but those CDs you can buy don't give me a database, only search access. Can anybody point me to a source of (free/low cost) test data...
  15. jnicho02

    Dynamic Class Loading?

    a) yes b1) by writing your own ClassLoader b2) could influence startup speed, but I would think creating and destroying instances of classes would affect performance more. Unless you are really expert I would say, "Don't even go there!". this article...
  16. jnicho02

    what is "Serializable"?

    There's no BeanInterface, so to officially become a bean you only have to follow the pattern of accessors and mutators (getters and setters), have a null constructor (so that an IDE could construct one for you) and make the class serializable (so that an IDE could remember the state and bring it...
  17. jnicho02

    Run Servlet with Tomcat

    put your servlet in WEB-INF/classes directory in your Tomcat/conf/web.xml uncomment the bit that says.... <!-- The mapping for the invoker servlet --> <servlet-mapping> <servlet-name>invoker</servlet-name> <url-pattern>/servlet/*</url-pattern> </servlet-mapping> .....as this is not...
  18. jnicho02

    Instant Messenger in Java

    For something fairly advanced, you could look at integrating a Jabber server (www.jabber.org). Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a UK-based Java and Data Warehousing consultancy
  19. jnicho02

    Finding Postcodes

    If you've got lots of data and do this sort of query frequently you may consider adding a column for postcode area and programmatically keeping it populated. You could then index it and ask for customers where postcode_area in ('PE','NR','IP','E',etc.) and get the results back quickly. I...
  20. jnicho02

    DBA's Duties and how to perform it?

    On a personal level, I think that your ultimate aim as a DBA is 'to make everything run so smoothly that people think that you don't do any work'......and 'to keep your head whilst everyone around you is losing theirs'. Jeremy Nicholson, Director of http://www.firstlightassociates.co.uk a...

Part and Inventory Search

Back
Top