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: *

  • Users: sedj
  • Order by date
  1. sedj

    class may be cached; changes are not displayed

    Most servlet containers do not support hot reloading of .class files. -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  2. sedj

    getInputStream

    You are using a readLine() - so unless your incoming data has a CRLF in it ( \r\n ), then you won't see anything till a disconnect. -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  3. sedj

    Help with layout in tabbedpanes HELP HELP java

    I can't see any code ? How can we help without code examples of you problem ? If you post reams of code, I doubt you'll get a response - so you'll need to post a succinct example which demonstrates your problem. -------------------------------------------------- Free Java/J2EE Database...
  4. sedj

    Problem with servlet using SQLite

    Inserts are done using executeUpdate() rather than executeQuery. You never close your statement object either. -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  5. sedj

    OOP basic question

    786snow : as requested before, please post standard Java questions in forum269 -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  6. sedj

    Web 2.0 JSP apps? (Opensource)

    Well yes, I expect there are some java based blogs, video sharing tools and wikis written in Java - but are they "Web 2.0 JSP projects" ? I would argue no ... there is nothing new about posting views on a web page (blog), or transferring data (video sharing), or organising data in a way editable...
  7. sedj

    Web 2.0 JSP apps? (Opensource)

    I'm not sure there really are. The link you posted yourself puts it pretty succinctly : Considering that JSP is just a server-side scripting language that generates dynamic content, I would say you'd be hard pushed to find a "Web 2 JSP project"...
  8. sedj

    deployment of .war files

    Well I guess the same way that you currenlty save files that are uploaded to your site - just alter the path where the files are saved. -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  9. sedj

    deployment of .war files

    You should never have content uploaded into a subdirectory of webapps - its really bad practice. You should load the data into another directory on the server. -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  10. sedj

    why it is not geting compiled

    Please post all Java questions in forum269 This forum is for J2EE, not core Java problems. When you post the question again, you may want to add some more detail (such as the error message !) -------------------------------------------------- Free Java/J2EE Database Connection Pooling...
  11. sedj

    Auto-redirecting a page

    This is a site for technical issues regarding (generally) programming. I can't see any programming in your post - looks more like a user requirement. Have you tried hiring a programmer to fulfill your user requirement ? That might help. Secondly, I'm thinking that you have Java and Javascript...
  12. sedj

    javasevlet basic question

    Before writing out, add : res.setContentType("text/html"); -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  13. sedj

    Security exeception in JAVA

    lots on google : http://www.google.co.uk/search?hl=en&q=JCE+cannot+authenticate+the+provider+IAIK&btnG=Search&meta= -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  14. sedj

    Call Static Method on Class in a jar File

    I did not know about the bug ... but google does :) -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  15. sedj

    Call Static Method on Class in a jar File

    Well it would be : java com.sun.org.apache.xalan.internal.xslt.Process -in in.xml -xsl style.xsl -out out.html But you should probably read this depending on your JDK version : http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=5099865 --------------------------------------------------...
  16. sedj

    need help with JDBC

    It would help if you posted the actual compilation errors, and the runtime stack trace. But certainly, getConnection() takes a url string, a username and a password. -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  17. sedj

    how to get value of html combo box (i.e select) in jsp?

    If its in a form, and you attempting to get the submitted values from another page, then : request.getParameter("combo); -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk
  18. sedj

    Writing to a Stream

    A minor point, but why it your output stream called "inStream" - much better to call it "outStream" or something with "out" rather than "in" - because you are writing data out - not reading it in. -------------------------------------------------- Free Java/J2EE Database Connection Pooling...
  19. sedj

    DB2Jcct2 Failure

    Looks like you are missing the native library (shared object .so) that interfaces to the database. You probably need to set your LD_LIBRARY_PATH variable. Lots on the web ...
  20. sedj

    read integer

    Perhaps this is a learing excerise and the poster may not be ready for GUI's ?! -------------------------------------------------- Free Java/J2EE Database Connection Pooling Software http://www.primrose.org.uk

Part and Inventory Search

Back
Top