3
votes
3answers
43 views
How to secure my Account after Logout?
I have a situation- after I logout from a page if Someone click "Go Back" Button in a browser it automatic goes into back page again. In Logout.java (Servlet) I use:
session.invalidate();
...
0
votes
0answers
9 views
Axis2 Webservice Fault - The service cannot be found for the endpoint reference
Hi created a test application to learn Axis2. I packed the axis with my war and afetr deployment the WSDL is also acessible via URL - http://localhost:8081/SajuAxis2/test/service/SajuServices.wsdl
...
0
votes
0answers
9 views
SEAM - unnable to add RESTEasy WS
According to this manual it should be piece of cake to add a web service, but I'm struggling to make it accessible.
Here is the code:
@Name("examineeController")
@Path("/examinee")
public class ...
0
votes
0answers
23 views
How to implement a push architecture in javaee : receiving and displaying an alert in the backoffice server?
I have to process an HTTP POST request, wich sends an alert from a mobile application, that will be displayed in the backoffice after that ( in a growl for example), this must be implemented via the ...
1
vote
0answers
17 views
Reading a file in ssh server via Java
I want to read a file from SSH server and parse the lines into a list. I used Ganymed SSH libraries to connect and fetch the data. I wanted to read and parse the file named jboss-search14
I used the ...
0
votes
0answers
14 views
how to parse IMAP emails using kettle in j ee web application
I am able to read IMAP emails from gmail in my JEE web application and now got big task to parse those emails using pentaho kettle .
I am very new to kettle ETL tool. Please can anyone tell me ...
0
votes
1answer
21 views
configure a server for java 2 ee web application from scratch [closed]
i have developed an application with java 2 EE . i am deploying it on tomcat server ,i also use MySQL database with hibernate framework, and for security measures i am using spring security.
the ...
3
votes
1answer
46 views
Finding .NET specification
Are there a public set of specifications for a given .NET release?
In our product development, we have used large parts of JEE since J2EE 1.3 for some of the products. Even though the platform is ...
0
votes
1answer
22 views
Method for testing whether the Web Service is alive (off or on) - Client-Side Axis
I need a method that returns whether a Web Service is active or inactive. In other words, whether it is on or off. Does anyone know any?
I tried to do a test (code below) to get this method on a Web ...
0
votes
1answer
14 views
Keep object in the view after refreshing when using RedirectAttributes.addFlashAttribute
Thank for Spring 3.1, I can make Post/Redirect/Get happen using RedirectAttributes.addFlashAttribute, But it seem like has small issue
here is the method that persists form object, then redirect to ...
0
votes
1answer
47 views
Java EE “wait” concept
What is the best solution for an ejb that needs to "wait" for data? I have an ejb that goes and checks a database table for some data, if the data is not there it needs to wait x number of seconds and ...
1
vote
0answers
39 views
How can I run a mapreduce job remotely
I have met some issues when I was trying to run a map-reduce job (word-count example) remotely. After I search on google I still can't achieve my goal. And I just saw very few topics about invoking ...
1
vote
1answer
23 views
Auto retry after EJB transaction rollback
Basically, I have a JMS queue and an MDB to collects the messages from the JMS queue, does some processing on them, and then persists the messages into the database via JPA. I marked the method, which ...
4
votes
3answers
47 views
Creating “fake” ids in REST API
I have a list of Post entities, and each post have a list of Comment entities.
The Post entity is a composition object. No comments exists in the system without a post.
Example of URI:
...
0
votes
0answers
33 views
Performance Monitoring for specific Use Cases/Requests. Not for the whole System
I am looking for a monitoring tool which can tell me few simple things:
Metrics of specific requests.
How much time those requests have taken? Not looking advanced monitoring like threads, Heap ...