0
votes
0answers
11 views

How to call a servlet on Glassfish server in Eclipse

I am trying to call a servlet form my android application in eclipse. I have to use the Glassfish application server(the servlet is in a different Mavan project). I had a few questions: How to start ...
0
votes
0answers
33 views

RESTful Web Service with glassfishv3 --> servlet-declaration in web.xml

i`m working at my seminar paper with the topic "RESTful Web Services with JAX-RS". I`m using glassfishv3 and built a simple dynamic-web application. I was told that with JavaEE6 and glassfish3 there ...
0
votes
0answers
86 views

Loading a file for each petition (servlet-Glassfish)

I`ve a servlet running in Glassfish and I would like to know what is the best way to manage the following situation: I'm gonna receive several petitions in my servlet and for each petition I need to ...
0
votes
2answers
72 views

HTTP method GET is not supported by this URL thoug it executes doGet [duplicate]

one more question about this topic, but all I found so far on SO or the web did not help me. public class RoarHistoryUpdate extends HttpServlet { public void doGet(HttpServletRequest request, ...
0
votes
2answers
81 views

HttpServletRequest#login() method not found in eclipse

I'm trying to get this example to work: http://jugojava.blogspot.de/2011/07/jsf-form-authentication-on-servlet-3.html The Problem occures at: request.login(username, password); Eclipse says: "The ...
0
votes
0answers
94 views

glassfish server ldap authentication works, but resource not granted

web.xml: <?xml version="1.0" encoding="UTF-8"?> <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
0answers
287 views

Performance Tomcat 7 vs Glassfish 3

I have a simple JSP/Servlet maven application which allows a user to upload an archive file. The application will then unzip the archive which contains XML files, and parse them using basic SAX ...
0
votes
0answers
134 views

jax-ws servlet client error while accessing jax-ws web service. Both are on localhost Glassfish 3.1.2.2

I am trying to access jax-ws web service through jax-ws servlet client. Both are on localhost Glassfish. Getting some errors: User [] from host 127.0.0.1 does not have administration access And ...
0
votes
2answers
175 views

Glassfish not closing threads when done request

I have a Java Servlet that has a doPost method and when the doPost finishes, I assumed Glassfish would close the connection, but I was wrong. The Servlet is on a Linux server and after 300 posts the ...
0
votes
0answers
50 views

Glassfish Issue with JDBC Connection

I am kind of new to web programming and I created a web application using servlets, jsp and javascripts. I used glassfish 3.1.2 as a server for my application. I am having a problem whenever I try to ...
0
votes
0answers
40 views

Glassfish how do you handle interrupts while processing files

I have a servlet that creates a thread and that thread has a watcher that watches a directory for created files. When the watcher picks up a created file it reads and modifies the file and then calls ...
0
votes
0answers
49 views

glassfish 3.1.1 using grizzly comet updates all user window

I am using glassfish 3.1.1 and ,in our project we have requirement of using polling mechanism so I have used grizzly that is built in glassfish comet, now the problem is when comet calls ...
0
votes
1answer
216 views

ServletContext initialized two times while deploying

When I deploy a web project into Glassfish 3.1, ServletContextListener->contextInitialized method invoked two times. As far as I know There is only one ServletContext for each web application. ...
0
votes
1answer
118 views

@WebFilter is not processed in my Glassfish

I have a filter in my code with below settings.. I mapped everything in the value request @WebFilter(value="/*", dispatcherTypes={DispatcherType.REQUEST, DispatcherType.FORWARD}) public class ...
1
vote
2answers
933 views

How can I get the request.login method working with a jdbcRealm?

I am trying to use the Servlet 3.0 request.login(username, password) method to work with a jdbcRealm, but something seems to be wrong. There are many articles out there on how to get the jdbcRealm ...
0
votes
1answer
141 views

Creating network listener on glassfish causing to bomb on startup

I have a network listener that i listening to port 8181 for one website www.aaaa.com that is securely accessing a module aaa.war on my glassfish server. I have another website www.bbbb.com that is ...
2
votes
0answers
638 views

Glassfish - uploading images - doing it right

I am on latest glassfish (3.1.2) - so no need for apache FileItem and no bugs with getPart(). I read that the best practice on uploading images is saving them on the file system (see here for ...
2
votes
2answers
223 views

Servlets - use constructor or not?

Constructors in servlets is considered a good/bad practice ? How does it compare to the init() method ? Using servlet-3 and vanilla javaEE (CDI provided by javax.inject package)
1
vote
1answer
453 views

simple Servlet CDI generating NullPointerException

I am working on sample application called bookstore where I have used Dependency Injection. Very simple application. I am using JavaEE 6, GlassFish 3.1.2, Static data in a class (no db), Eclipse Juno. ...
0
votes
1answer
136 views

Servlet and TLS

I'm developing a simple web services using Java EE Servlets. My clients are a simple java apps (no browsers), so I need to secure my communication using TLS (or SSL v3). About Application server, I'm ...
1
vote
4answers
223 views

See source of request when get a system error from glassfish

I get a IllegalArgumentException: Request header is too large from glassfish every now and then. I know how to get arround this - need to switch to POST request. There is enough good articles about ...
0
votes
1answer
2k views

redirecting from a servlet filter to jsf returns the actual jsf code not rendered to html

below is my code; /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package racms; import java.io.IOException; import ...
0
votes
0answers
713 views

Netbeans generated WAR doesn't work in Glassfish Server 3.1

I've tried to deploy a Netbeans WAR webservice into Glassfish several times, but it returns this error: Error occurred during deployment: Exception while loading the app : ...
2
votes
1answer
1k views

Inject the Servlet object in a CDI pojo on glassfish

I'm quiet new in the Java EE6 world (however, JEE5, I know well enough). My environment is Glassfish 3.1.2 I'm trying to inject servlet objects in a CDI bean (a pojo annotated with @Named and ...
4
votes
2answers
959 views

jdbc realm with glassfish v3: Realm properties and configuration error

I have the following database schema (MySQL): My login is a form based authentication system, to which i am trying to create a jdbc realm. My web.xml: <login-config> ...
2
votes
1answer
405 views

Cannot Filter Context Root Servlet Requests

I have a @WebServlet("") and a @WebFilter(urlPatterns = {"", "/", "/*"}, asyncSupported = true) But the filter is not being invoked for the servlet :-( I am using @WebServlet("") instead of ...
2
votes
1answer
190 views

Access files from custom 404 html page in Glassfish 3 (eg. stylesheet or images)

I've created custom 404 html page for Glassfish 3.1 in case of our application is down due to redeploy or some other failures. But my 404.html doesn't want to search stylesheet and images files ...
0
votes
0answers
373 views

How should we avoid this Injection exception?

I am trying to call a Servlet but the following Exceptions occur: The server encountered an internal error () that prevented it from fulfilling this request. javax.servlet.ServletException: ...
0
votes
1answer
91 views

i get a 404 error in a EJB3 project that worked pefectly

i'm trying to see an old EJB3 project that i did at school but the only thing i can see is the index.jsp on the browser. The error i get is: SEVERE: Class [ Lse/ernesto/databaseStuff/DbManagerLocal; ...
0
votes
2answers
3k views

java/jsf strange error: WARNING: StandardWrapperValve PWC1406: Servlet.service() … threw exception java.lang.NullPointerException

I have simple jsf app with servlet for dynamic images and filter setting utf8 encoding. From time to time (1/10 requests) I get very strange error: WARNING: ...
3
votes
1answer
2k views

glassfish 3.1 virtual server nightmare

I m using glassfish 3.1.1 (Edition 3.1 (build 43)) server. I have deployed a web application named "void" Now I have made a virtual server where in the hosts I have written ...
2
votes
1answer
225 views

Correct syntax for javax.servlet.annotation.ServletSecurity

Has anybody got a code sample for javax.servlet.annotation.ServletSecurity annotation. I have had a look around but all I find are javadoc pages which won´t tell you how ...
2
votes
1answer
304 views

@WebServlet with GlassFish server

The @WebServlet annotation has also this keys: displayName, smallIcon, largeIcon, description but after setting these attributes where can I get or see them?
1
vote
2answers
513 views

Glassfish: How does it work?

I'm trying to learn how to create dynamic websites using Glassfish (a Java application server). I'm an advanced PHP programmer and a pretty good Java programmer, but I've never looked into using Java ...
0
votes
1answer
234 views

deploying java web application having huge class file

I have a JSP/Servlet web application deployed in Glassfish which is having a number of Servlets and huge class files. When I make even minor changes in the Servlet or class file, then the whole web ...
0
votes
1answer
435 views

Servlet Mapping: Only when a file or directory doesn't exist?

I'm setting up a web app on GlassFish and I'm wondering if there is a way to configure servlet mapping from the URL root to only apply in cases where a file or directory doesn't exist at the specified ...
2
votes
2answers
672 views

Servlet requests are executed sequentially for no apparent reason in Glassfish v3

I'm using Glassfish 3 Web profile and can't get http workers to execute concurrently requests on a servlet. This is how i observed the problem. I've made a very simple servlet, that writes the ...