| Thread | Last Post | Replies |
|
| looking for asynchronous flow execution framework | 11 May 2005 14:27 GMT | 5 |
I'm looking for a framework that would be able to execute a given code when actions inside the code are asynchronous. For example, imagine a software for managing the activities of an airline company. A code there could look like:
|
| problem in integer field in java servlet | 11 May 2005 13:23 GMT | 4 |
i m making a servlet which stores two field (one is interger type and other is string type) in mysql database. when i do so i call java beans to save into the database. i m comfortable to store any string value into the database by the
|
| printing HTML from Swing app in Windows ... | 11 May 2005 13:18 GMT | 3 |
I have a Swing application that dynamically generates HTML documents, I need to let the user print the document but because of the little support of HTML flavor I could not have
|
| Crash JVM | 11 May 2005 12:56 GMT | 10 |
I was asked by an interviewer as to how to crash a JVM.If any of you know abt it let me know.
|
| name conflict with multiple inheritance | 11 May 2005 12:35 GMT | 11 |
How do I solve name conflict with multiple inheritance. interface I1 { void f1(); } interface I2 { int f2(); } class C1 implements I1, I2 { };
|
| Accessing a privat method? | 11 May 2005 12:28 GMT | 6 |
Is it somehow possible to access a private method of one class from inside another class? by example: I have a class MyEntity with a private method setFoo(int n) and i want to call it from inside the class MyBar. I know this is
|
| kind of newbie question in java applete and sites | 11 May 2005 12:16 GMT | 2 |
well i see you are disscussing very advance things in java here so i feel strange to ask such a simple question here but hope i will get un answer ok here it is my question
|
| Queries regarding Request Object | 11 May 2005 12:09 GMT | 1 |
I have a few queries regarding request object. In a servlet, when we write request.setAttribute(); does it increase the request header size? In other words: what is the default size of request header (if any)?
|
| Encoding of text in HTTP multipart request | 11 May 2005 11:33 GMT | 1 |
I try to make a multipart HTTP request in Java to upload a wav file. I have a problem with the encoding of additional textdata in this request. In my case it is a sessionID that is assigned randomly. If this ID
|
| Can a constructor throw an exception? | 11 May 2005 11:03 GMT | 2 |
What's the best way to notify callee that something went awry during object creation (i.e. in constructor invocation) ? Thanks
|
| Using ICC profiles | 11 May 2005 09:12 GMT | 4 |
I've already posted 2 topic about images and icc profiles but I got no answer so far. My question is the following : Has anybody been able to apply an icc profile to an image using Standard Java API, JAI, or any other library,
|
| Memory leak in SQL Server? | 11 May 2005 08:16 GMT | 1 |
I have a stand alone Java application that uses MS SQL Server 2000 and Microsoft JDBC ODBC drivers to access it. Before I run the application, I open the task Manager to monitor the memory used by the SQL Server. Generally it begins 21 MB and very soon it reaches around 100 MB if I
|
| toArray() of a map values | 11 May 2005 06:39 GMT | 10 |
I have a LinkedHashMap that maps an Object (key) to a JButton (value). Why does "(JButton[]) (map.values()).toArray();" produce a ClassCastException?
|
| somewhat new with java | 11 May 2005 06:11 GMT | 1 |
I'm using netbeans, and when i use a JFileChooser, it doesn't spawn in a new window, like it does in C#. it just kind of sits in the background and does nothing. So i was wondering if someone could point me in the direction of or provide with some example code for creating a
|
| eclipse CVS and intellisense | 11 May 2005 05:49 GMT | 4 |
I am accessing code using Eclipse CVS client from a CVS host. When I checkout the project from CVS repository to my local machine, I am not able to use some of the features of the eclipse IDE like code complition, intellisense, etc.
|