java

GIS / Map display component

For a quick demonstrator I'm looking for a SWT or Swing component which can display geographical data. Unfortunatly I'm disconnected from the internet, so Google Maps won't help. The general idea is to assemble a small eclipse RCP application with just 'map view', connect to a custom web service, that provides geographical data (tracks)...

Jetty HTTP Client with SSL

I am following the Jetty HttpClient Example, but I am unable to get an SSL connection working. When I connect using a proxy, it throws a "Not Implemented" exception. When I don't use a proxy, it doesn't return anything. HttpClient client = new HttpClient(); client.setConnectorType(HttpClient.CONNECTOR_SELECT_CHANNEL); client.setProxy(n...

What technology to use to write systray front-end to webapp?

Hi, we have an internal webapplication running on tomcat, build on Spring. The webapplication front-end is build with Flex. I would like to create a cross-platform systray application that allows to go the home page of the application and displays alerts when certain things happen in the server. What would you think is the best techno...

Encrypt in Java and Decrypt in C# with Rijndael

Using the Rijndael algorithm is it possible to encrypt a config file (or section(s) in a config file) and then decrypt that file in Java? Assumptions can be made such as: Pass in IV (not Autogenerated idea :: GenerateIV(); ) Pass in Key BlockSize is 128 (standard) Assuming this can be done, my next question on this would be: Can th...

Java / Ada Big Endian to Linux Little Endian problems.

I am an intern who has inherited a problem with a testing program at the place where I am working. After searching around on a little bit I can across a person with my exact same problem. After asking around a little bit here, i found out that the guy who posted this does actually still work here, and I am getting his help with this too,...

Replace the property value using RegEx

I have config.properties file containing properties in Java Properties format. I need to replace the value of a property with a known name with a new value. The comments and formatting of the file should be preserved. My current approach is to use RegEx to match the property name and then replace its value. However, Java Properties supp...

Tomcat shuts down automatically

I'm using Apache and Tomcat on a Windows server and since this morning, Tomcat stops working without any logs. It doesn't hang, it just shut down. There's no log in Tomcat, the CPU/Memory are fines, there are no System.Exit in my code. Anybody ever had this problem? It happens at random, after 5-10 minutes. The application responds no...

Servlet spring-servlet is not available (Spring+BlazeDS Integration)

I'm trying to setup a Flex project using the Spring + BlazeDS integration by working through the refcard kindly posted by James Ward on refcards.dzone.com. Some problems/challenges are sticking their heads out. The Tomcat deployment is going well, all the files are on the server and I can summon main.swf through the browser. I get the ...

Displaying a website in a website?

What I need to do is this: <iframe src="http://www.google.com" width="800" height="600"></iframe> But the constraint is, I want my website to fetch a requested website and display it in frame. That is, the clients browser must only have a connection with my web server. My website in turn will fetch requested url's and display them to ...

How to find all naive ("+" based) string concatenations in large Java codebase?

We have a huge code base and we suspect that there are quite a few "+" based string concats in the code that might benefit from the use of StringBuilder/StringBuffer. Is there an effective way or existing tools to search for these, especially in Eclipse? A search by "+" isn't a good idea since there's a lot of math in the code, so this ...

how to return excel in Struts2 result?

I am trying to return an Excel sheet from my struts2 action class. I am not sure what result-type should I be using? Has anyone tried to return an excel from struts2 action class? I would like the user to be presented with open/save/cancel dialog box ...

Can you program Java collections to an interface and use Serializable?

I've gone through and programmed all my domain level logic to interfaces. Now I find that when I want to put data in a bean, the bean doesn't work because the Collection interfaces (Collection, List, Set, etc) do not implement Serializable. Do I need to refactor all my code to use concrete types or is there a better course of action her...

Allow logout while multiple large files are uploaded

I have been asked to implement a file upload program. The program is a Java Web Start application responsible for uploading the contents of a CD to a web application. There are two requirements here: The uploader should operate in the background with minimal interaction (No rich GUI). Users may not want to watch the file being upload...

Java Generic Class - Determine Type

If I am creating a java class to be generic, such as: public class Foo<T> How can one determine internally to that class, what 'T' ended up being? public ???? Bar() { //if its type 1 // do this //if its type 2 // do this //if its type 3 // do this //if its type 4 // do this } I've poke...

App Server Logs

What are some of the techniques / tools you use to analyze your application server logs? My dev environment is Windows and my logs are on prod unix boxes .Some times I need to go thru archived logs(atleast on 4 servers) from many months ago to figure out a root cause of a error or exception. It is kind of a time consuming process and I ...

Obtain id of an insert in the same statement

Hello Is there any way of insert a row in a table and get the new generated ID, in only one statement? I want to use JDBC, and the ID will be generated by a sequence or will be an autoincrement field. Thanks for your help. John Pollancre ...

Why does my Tomcat/Alfresco site become unresponsive every half a day or so?

I'm a developer running a website on a CentOS 5 box with Apache Tomcat 6.x, Alfresco Labs 3 (the standalone .war file) and a couple custom webapps. The server has been up and running without problem for the past several months, but just the other day someone was uploading an image through Alfresco and the site stopped responding. In ad...

JTable TableModel problem in Java

Hi, I can show my data in a JTable without a problem, but when I want to filter while my app is running, the JTable is not showing me data changes. I searched for it and found a class named TableModel but I can't write my AbstractTableModel. Can anyone show me how I can do this? Personelz.Java package deneme.persistence; import java....

Swing tweaks for Mac OS X

I remember having once seen a list of properties that could be set on Swing components to make them look more native on Mac OS X. This included ways to mark "dirty" documents with the "dot" in the window close button, open dialogs as sheets (not sure about that, but sure would be nice) etc. I know Apple has let Java down as a "primary"...

How to read .net xml serialized datetimes from java?

I am porting some of our app from c# to java. Some data objects get xml serialized and stored for later use. The built in .net xml serialization automatically saves DateTime properties in the format below: 2009-05-11T16:47:08.6033346-04:00 How can I get this into a Date object in Java? I read that the date format is ISO 8601 which ...