| Thread | Last Post | Replies |
|
| Calling Stored procedure within the Orcale Server or outside client | 05 Apr 2007 02:10 GMT | 1 |
I have liitle confusion about the stored procedures. I am doing the Database purging using stored procedures in Oracle 9g. can you tell is it better to call stored procedures from outside client which i will take care of the flow in which stored procedues are called or call it
|
| java http default timeout | 05 Apr 2007 01:53 GMT | 5 |
Can someone tell me what is the http default timeout value implemented in Java? What is the java property for setting the http timeout? Thanks,
|
| Java + MSAccess + access function | 05 Apr 2007 01:50 GMT | 1 |
I need to make queries on Ms Access database (which is on a server) from a java applet (which is on the same server). The connection works and i can make some queries without problem :) BUT some of these queries are made thanks to Access functions in VBA
|
| Potential embarrassment, Joudres and alternate Streams | 05 Apr 2007 01:49 GMT | 2 |
I have discovered a potential embarrassment to Java developers. Microsoft Windows has a rarely used feature called alternate streams, something like Mac file forks, that allows you to attach little descriptive files of metadata to your files.
|
| How to use Cactus ServletTestCase for Servlets having service methods | 05 Apr 2007 01:46 GMT | 1 |
I have servlets in a web app having just synchronized service() method having all the functionality to deal with Request. I want to know if it is possible (or relevant) to write Cactus ServletTestCases for this and if yes then how ?
|
| Crypting the webservice responses in AXIS | 05 Apr 2007 01:43 GMT | 2 |
I have a webservice in tomcat/axis with a method that send back a byte[] response. I have seen that to send back the array of bytes, AXIS trasform it in a BASE64 String (i think only to trasport it); the client retreive the
|
| Axis web service client hanging on calls | 05 Apr 2007 01:38 GMT | 1 |
I'm writing an WS client using Axis, and having a problem with the calls hanging until they time out. I have a VB app here (written by someone else) which uses the MSSOAP.SOAPClient30 object to connect to the web service, make a call, and get some results. It works fine. I
|
| Where can I find a list of Exceptions that I am allowed to throw? | 05 Apr 2007 01:37 GMT | 7 |
For example, IllegalArgumentException, etc. I am relatively new to Java...I browsed through the docs, but couldn't quite find what I'm looking for, which is, simply put, the built-in Java exceptions that I, as a programmer, am allowed to throw...
|
| Generic singletons | 05 Apr 2007 01:27 GMT | 2 |
Is there a way to make a singleton out of a generic type? Consider this as an example: public interface Delegate<Ret, T> { public Ret transform(T t);
|
| Force JSP page to output CR+LF | 04 Apr 2007 23:56 GMT | 2 |
We have a JSP page that needs the line breaks to be \r\n instead of just \n. Pages created in Eclipse on Windows, but when they are moved into production, IE7 is having a problem with the \n not being a \r\n. These are being used in a browser based application.
|
| C or Algorithm's | 04 Apr 2007 23:45 GMT | 3 |
hello news group Member's, I am Newbies in this group. i just start my career in C & C++ as a newbies at this initial stage of my career i just start it first with the C++ and confused at the "Vectors" and leave .now that i started
|
| Viewing browser cache | 04 Apr 2007 23:41 GMT | 4 |
I am writing a Java application that needs to view the browser cache. Does anyone know of any existing java classes to read Firefox, Internet Explorer and/or Opera caches? Failing that, are there any documents that describe the respective
|
| Setting an environment variable from another environment variable | 04 Apr 2007 23:39 GMT | 5 |
Dear group, In the java executable startup, can I do something like: -Dresin.home=$RESIN_HOME or -Dresin.home=%RESIN_HOME%
|
| Problem writing object from applet to server in Firefox (Linux) | 04 Apr 2007 22:46 GMT | 3 |
I'm trying to write an Java applet that will send an object, via a TCP socket, to a Java application running on the same machine. It works in Opera and Mozilla, but it doesn't work in Firefox - the Java application appears to receive an incoming connection, but never
|
| Swing Table problem | 04 Apr 2007 22:33 GMT | 1 |
I am using Sun's Swing Tutorial, and the page about the JTable seems to indicate that if I define a class that extends AbstractTableModel, I can then just write "JTable table = new JTable(new myTableModel());" and the table should be displayed when I add it to a panel or frame.
|