1
vote
1answer
160 views
Java Web Starter AMI
I'm trying to follow the tutorial on http://ttlnews.blogspot.com/2009/01/setting-up-amazon-ami- …
0
votes
3answers
208 views
Implementing Event-Generator Idiom in Java
I'm trying to implement the Event Generator Idiom (http://www.javaworld.com/javaworld/jw-09-1998/jw-09-t …
2
votes
4answers
248 views
Java export .properties file to build folder?
Hello. I have just created a .properties file in Java and got it to work. The problem is where/how to store it. I'm currently developing a "Dynamic Web project" in Eclipse, and have stored the prop …
2
votes
2answers
322 views
Have I implemented a n-tier application with MVC correctly?
Being pretty unfamiliar with design patterns and architecture, I'm having trouble explaining to others exactly how my latest application is designed. I've switched between thinking it's a pure n-ti …
0
votes
2answers
108 views
Display local image (BufferedImage?) inside JTextPane
I'm trying to display a local image in package1/package2/myImage.gif in a JTextPane. I first tried to load the resource into a BufferedImage:
BufferedImage image = ImageIO.read(Clas …
1
vote
1answer
162 views
SoapFault exception: [HTTP] Unsupported Media Type when accessing Java web-service from PHP
I'm trying to connect to a Java web-service using the Zend_Soap_Client from the Zend Framework v1.9.0:
<?php
include( 'Zend/Loader/Autoloader.php');
$autoloader = Ze …
0
votes
0answers
91 views
How to scale markers on Android, and set shadow and onTap correctly
I'm scaling markers on a MapView with the following code
OverlayItem oi = new OverlayItem(point,"Title", "Desc");
oi.setMarker(getCustomMarker(0.5f, 0.5f));
itemizedOverlay.addOverl …
0
votes
1answer
48 views
Exclude filter from certain url’s
I'm using a filter in web.xml to check if a user is logged in or not:
<filter>
<filter-name>LoginFilter</filter-name>
<filter-class>com.mycompany.Log …
0
votes
1answer
39 views
Glassfish hangs when serving multiple blob-images from an imageservlet
In my JSP/HTML files i use the following servlet to get blob-images from the MySQL-database.
<img src="/image?id=1" />
Image servlet
This is mapped …
1
vote
3answers
39 views
JPA and InnoDB, and JSP/JSTL questions
A couple of questions:
If I have mapped a Customer with an i-var List<Order> orders with annotation CascadeType.ALL, should I also set the relation in MySQL Inno …
0
votes
Do I need <class> elements in persistence.xml?
In Java SE enviroment, by specification you have to specify all classes as you have done: "A list of all named managed persistence classes must be specified in Java SE environments to insure portab …
1
vote
Java and Prolog - Interprolog help
Have you tried adding interprolog.jar to the build path (located inside http://www.declarativa.com/in …
3
votes
Java JTextArea - Adding a newline
EDIT: After I see your full code, your keylistener is working. The problem is: outputArea.setText(txt); who overwrites your linebreaks. Try something like this:
…
