| Thread | Last Post | Replies |
|
| servlet problems | 28 Jan 2007 10:12 GMT | 3 |
Hi guys, I'm learning servlet and jsp and when I encoutered this error when i tried to access a servlet: The server encountered an internal error () that prevented it from fulfilling this request.
|
| reference .NET assembly in JAVA assembly | 28 Jan 2007 09:38 GMT | 5 |
I was wondering if I could reference a .NET assembly inside of a JAVA assemble for use. I am using one of the .NET internal assemblies and dont want figure out how to do the same thing in JAVA so i want to just call the .NET assembly and use that method in my java code.
|
| Fastest way to read array of ints off disk? | 28 Jan 2007 07:41 GMT | 5 |
I need to read several large arrays of integers off a disk into int [] variables. I could read them into byte[] arrays and then convert, doing lots of masks and bitshifting. I can't help but believe there's a faster way.
|
| How to move inputStream back to the first line? | 28 Jan 2007 07:09 GMT | 4 |
I have an inputStream to read a text file: BufferedReader inputStream = new BufferedReader(new FileReader(fileName)); String line = inputStream.readLine(); After reading several lines, I hope to bring inputStream back to the
|
| free java, j2ee resources, you can submit. | 28 Jan 2007 06:40 GMT | 4 |
This Programming Links Directory offers links to various programming related Internet resources. Go to link directory http://www.freelinks.co.nr
|
| calling a method with 'throws IOException' from another method in the same class | 28 Jan 2007 06:30 GMT | 1 |
I have a method defined as follows in a class: public static void salary_proj_accept()throws IOException { statements;
|
| SocketImpl.sendUrgentData() & what does "Protected" mean? | 28 Jan 2007 05:51 GMT | 6 |
Does anyone have an example of the SendUrgentData method? Once again I have to appologize for putting my Java and OO ignorance on display, but although I was able to do various setOption() and getOption calls on a SocketImpl I was unable to use the .net.Socket socket(socketImpl)
|
| JBoss 4.0.x with standalone tomcat 5.5.x ? | 28 Jan 2007 03:03 GMT | 2 |
Greetings All, I've been searching high and low for any article or documentation on how to disable the embedded tomcat that comes with JBoss and then make JBoss work with a standalone installation installation of tomcat. I am
|
| session for web service | 28 Jan 2007 03:00 GMT | 1 |
Can i save the session related objects( usually used in servlet and jsp ) in web service? SK
|
| Question regarding software development environment, | 28 Jan 2007 01:48 GMT | 2 |
I have a question regarding what a normal development enviroment would look like. In my current position we had three environments, development, quality assurance, and production. Code is developed in dev, migrated to qas, and eventually migrated to production. We
|
| How to make a scrollable table using Jsp? | 27 Jan 2007 17:57 GMT | 2 |
Helo Friends, I am a novice programmer, I'm working with Jsp + Javascript to develop a web application. I have a floating table in my webpage which I achieved using JS. I
|
| "Unknown source code" | 27 Jan 2007 12:43 GMT | 1 |
I'm not sure under which conditions, when printing a stack trace, the "unknown source code" is shown instead of the line in the source code where the exception was thrown. Not knowing the line make debugging more difficult... I thought it was only with code developed by third
|
| Should equals() and compareTo() be equivalent to test for equality ?? | 27 Jan 2007 10:56 GMT | 12 |
Well, I know equals() and compareTo() could behave different to test for equality, it just depend on the way I implement them, but, Would it be a bad practice to rewrite equals() and compareTo() so they behave in the following way:
|
| How to quickly find if a word exists or not in a text file? | 27 Jan 2007 05:33 GMT | 3 |
My Java needs to check a log file to see if things are correct. If there is a word, "successfully", then it is correct. I hate to read in each line, parse it into tokens, and check each token. Is there a better way to do it?
|
| receive POST in a jps | 27 Jan 2007 05:31 GMT | 3 |
is it possible in a JSP to receive data sent thru POST to that JSP? (without using a servlet) I tried with request.getAttribute("parameter")
|