| Thread | Last Post | Replies |
|
| Linking to a file in a war | 03 Mar 2005 01:20 GMT | 1 |
If I have a website www.something.com and I have a war file something.war, how can I make my www.something.com point to the index.jsp file inside my war? Right now I just do an http refresh on the index.html page I put in my root directory so that it redirects to
|
| JavaScript redirect and JSP submit | 03 Mar 2005 00:20 GMT | 2 |
I've been trying to get the right way to send parameters to a JSP from a HTML form. The referred JSP must get the values of the selects form, because it executes queries and does stuff with that values. But the only thing I've got it's a Tomcat error report.
|
| Catching Dos console output from within Java Class | 02 Mar 2005 23:51 GMT | 3 |
Is it possible to not just to issue a Dos cmd from a java class but more importantly encapsulate the Dos output back into a buffer that java can use..? Not just pipe the Dos command to a dos file and then reading that file. I am running under Windows XP SP 2. Reason: So I could ...
|
| Fast & Simple Data Extraction From XML | 02 Mar 2005 23:14 GMT | 1 |
I have a substantial xml file, which represents a large chunk of system data. In one part of my application I want to retrieve three or four elements from this xml. At this point, I do not have the XML stored in memory as a DOM. It
|
| Log4J Configuration | 02 Mar 2005 22:39 GMT | 1 |
Talk to me about log4j configuration. I've put log4j statemetns in my code, and they are useful for debugging, but when I distribute my application, or libraries, what sort of interface should I provide? Should I ask users to stick properties file in
|
| Run JSF with Tomcat 5.5 | 02 Mar 2005 22:35 GMT | 3 |
I am new to Java Server Faces. I am having problem deploying JSF application in Tomcat. Can any one please help me with the deployment. Environment:
|
| PNG/Jpeg and Crop smaller images | 02 Mar 2005 20:17 GMT | 2 |
I need a programmatic way to crop large images into smaller images? What are som techniques to do this. I could use the imaging java libraries but I also want to work with PNG, does java support image exports to PNG?
|
| Java reports NoClassDefFoundError: X despite also reporting [Loaded X] ?! | 02 Mar 2005 20:05 GMT | 1 |
Java reports java.lang.NoClassDefFoundError: ie.ucd.ihl.forrest_srv_1_0.Event despite the fact that -verbose:class reports [Loaded ie.ucd.ihl.forrest_srv_1_0.Event]
|
| Using JUnit to test privately contained List? | 02 Mar 2005 19:30 GMT | 14 |
In Java, we have a class MyClass that privately contains an ArrayList as an attribute called myList. We were looking for a way to enable a JUnit test case class to call MyClass methods, then check the state of myList.
|
| JApplet security issue | 02 Mar 2005 18:57 GMT | 2 |
I am trying to find a work-around for a java applet. I am trying to write to a log file using java.util.logging. The problem is, I keep getting a file access violation.
>From what I understand from reading various articles... it isn't an |
| Running an Executable from a JAVA API in LINUX | 02 Mar 2005 17:45 GMT | 16 |
I want to run a C++ executable from my JAVA API in Linux. This is the sample of the code which i have used //////// String[] arguments = new String[5] ;
|
| Checkbox problem - checkboxes submitting that are unchecked | 02 Mar 2005 17:17 GMT | 3 |
I am having a problem in my struts application with the checkboxes in my form. I have an array of checkboxes, some of which may be already selected when the form loads. My problem is when the user then deselects one or more of these checkboxes and submits the form -
|
| JAXB: Nested Type hides an Enclosing Type. | 02 Mar 2005 16:57 GMT | 6 |
I'm having a problem where I'm getting compile errors on files generated by Jaxb. One of my Type Interfaces and TypeImpl classes are generating an error: "Nested Type XXX hides an Enclosing Type."
|
| How do I display pdf doc in browser using jsp - no servelet | 02 Mar 2005 16:33 GMT | 7 |
Please help me. I am a novice at jsp and java. i need to display a pdf file in browser. Even though I set contentType to "application/pdf", i see garbage on the screen.
|
| Sessions to secure JSP pages | 02 Mar 2005 16:31 GMT | 1 |
I have a few webpages in JSP which are freely available if you know the url. But I would like to secure these that only after entering a username/password that the pages can be viewed. I think I would need sessions for this. Are
|