| Thread | Last Post | Replies |
|
| Consuming Web Services | 25 Aug 2005 23:02 GMT | 3 |
Can someone point me to a decent resource about consuming a web service in Java? Or maybe reccomend a book? Thanks, Scott
|
| Cellphone addressing | 25 Aug 2005 21:57 GMT | 5 |
I would like to understand how cellphones are addressed. I was under the impression they each were assigned a number, just like land lines. Therefore all North American phone lines would have a number of the form (999)999-9999.
|
| Destructor in java? | 25 Aug 2005 21:31 GMT | 12 |
I am making a wrapper around an existing C library through JNI. I have two functions Init() and Free() which allocates and deallocates resources. How can I have the wrapper class call Free() when it runs out of scope? The alternative is ofcourse to let users of the wrapper class ...
|
| Is there a function similar to C++'s sprintf | 25 Aug 2005 21:24 GMT | 5 |
I need to create a string from a number of variables taht in C++ I would normally use sprintf something like sprintf(target_string, formatting_string, variable1, variable2, ...) I know that in java 1.5.0 the string class has a formatter but I cannot
|
| j2se ->j2me | 25 Aug 2005 20:05 GMT | 24 |
I have an application written in java 1.4.2 standrad edition using javax.comm. Now my employer wonders how much work it would be to convert it to handheld devices, i.e mobile edition. I understand no-one here can really answer that question, but as I
|
| reading c-generated binary | 25 Aug 2005 16:59 GMT | 3 |
I need to read in Java some binary files created by c-programs. The c-code runs on Linux or Solaris. When I run a test case I get the following bytes patterns for the integer 1 (generated by cat output | od -x).
|
| Setting the parent frame of a JFrame | 25 Aug 2005 16:25 GMT | 7 |
Is it possible to set the parent compenent of a JFrame to another JFrame? Here is a sample of my code: JScrollPane scrollPane = new JScrollPane() JFrame.setDefaultLookAndFeelDecorated(true);
|
| PropertyResourceBundle and packages | 25 Aug 2005 16:17 GMT | 1 |
I've used PropertyResourceBundle to load .properties files before in unpackaged classes, but now I have some in a package and I can't figure out the proper file name and base name to give .getBundle(). I have tried file names such as:
|
| building different test and production versions with ANT | 25 Aug 2005 16:02 GMT | 1 |
I have a java file called ParameterParsing There is some code that needs to be commented or uncommented depending on if you wish to deploy to a production or test environment. Can this be automated using an ANT build script?
|
| JRun deploy a servlet | 25 Aug 2005 14:56 GMT | 5 |
I am running JRun 4.0. and am just trying to deploy a really simple servlet. I have edited web.xml file and
|
| Query a tree | 25 Aug 2005 12:29 GMT | 7 |
I feel a bit stupid to ask this question, but I've been working with this for a while, and I seem to be stuck in a very stupid way of thinking. I would be very heappy if anybody could point me to a way out of it. The problem is this: I have a tree structure containing game
|
| eclipse library path - driving me nuts! | 25 Aug 2005 11:26 GMT | 10 |
I have several *.dll and a couple of classes that I need to use in my java application. I have created a jar that contains the dll's, and have imported the classes as their own library. When I run my tests, I get the error :
|
| JSP Include Issues | 25 Aug 2005 10:32 GMT | 4 |
I have a web page using an include file. I am passing params to the include page using jsp:param but am having some difficulty. Locally (Windows PC/Tomcat Server, JBuilder) I can include ™ in the heading1 param - when I put this live (Linux/Tomcat Server) the
|
| Java waitfor waits for completion of forked child | 25 Aug 2005 09:58 GMT | 2 |
I'm starting a C program from Java via the exec method. The C program forks off a child and execvp another program over the child process. The parent process exits after printing out the process pid. The Java program does a waitFor. However the waitFor waits for both the
|
| Web Start Problem - IE Cache | 25 Aug 2005 09:35 GMT | 3 |
My web start delivered application only works on some client machines. However, when I clear out the internet explorer cache on the problem machines the problem disappears. I heard something about Tomcat's no-cache directive being a problem.
|