Java Servlets 3.0 is a new API that supports extensibility/pluggability, Ease of Development (EoD) using the newer language features, Async and Comet support, Security, and other features being as part of the revision for Java EE 6.
0
votes
1answer
31 views
Compare specific row or column of xls sheet using java and Apache POI
My jsp file is (to upload the excel file) :
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
0
votes
1answer
44 views
HTML: How to design profile page that is used for different users
I want to make a website for my Android social networking app and need some assistance with a basic concept regarding user profile pages. So right now I have a native Android app where users have ...
1
vote
1answer
34 views
Spring 3, AbstractAnnotationConfigDispatcherServletInitializer, multiple servlets
With Servlet 2.5 it was possible to use multiple servlets configured in the web.xml file by simple duplicating and editing the following xml tags.
<servlet>
...
0
votes
0answers
16 views
Can embedded Tomcat to load Servlet 3.0 annotaitons from Eclipse classpath?
I have an app that's entirely configured by annotation - no web.xml - that I want to run in embedded Tomcat from Eclipse.
I can find lots of examples that rely on specifying a WEB-INF/classes dir, ...
1
vote
1answer
57 views
Async context not timing out
I have been trying to use the timeout feature of the async context. But the behavior is highly intermittent. Sometimes the timeout happens, and many a times it doesn't. I am pasting my code here.
...
0
votes
0answers
23 views
Send data from Flex to servlet
I want to send value(_sectionName in examples) from flex end to servlet but I can't send data from flex end to servlet. What is the solution?
var ...
-4
votes
1answer
59 views
Servlet initialization as “welcome” page for STRUTS2
Please find the folder structure image as below: ( PROJECT & FILE STRUCTURE + web.xml in screen shot)
http://tinypic.com/r/28bgvw8/5
I'm using:
STRUTS 2
Servlet 3
Glassfish server 3.1.2
...
0
votes
1answer
32 views
Why is there no asyncContext.cancel()
While the Servlet 3.0 spec has request.startAsync() and asyncContext.start(),
why has it not provided a asyncContext.stop() or asyncContext.cancel() to initiate necessary clean-up on the server-side ?
...
1
vote
1answer
56 views
Any problems with this approach to cancel/abort Async servlet processing
In an Async servlet processing scenario, I want to achieve cancellation of requests.
(Am also hoping to keep this RESTful)
Say, I have a code like this:
@RequestMapping("/quotes")
@ResponseBody
...
1
vote
1answer
58 views
What is an 'error dispatch' in servlet processing?
The javadoc of the javax.servlet.AsyncContext interface says:
In the event that an asynchronous operation has timed out, the container must run through these steps:
Invoke, at their onTimeout ...
0
votes
1answer
15 views
Apache Velocity + Servlet 3.0
I'm upgrading from servlet 2.5 to 3.0, and I'm using Apache Velocity for templating, after a mvn dependency:tree I see velocity-tools depends on servlet-api:jar:2.3, there's a way to use servlet 3.0 ...
0
votes
1answer
45 views
Can I skip HttpServletRequest.login() and just put authed User in the Session?
Assuming i dont have any 'password protected' pages, but sometimes need to know which user clicked some jsf-button, is the below okay, or should I also use HttpServletRequest.login()
some managed ...
0
votes
1answer
74 views
Get parameters returned from web-site using servlet
Hi,
1. I send such form to the testing Sandbox Paypal server
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
...
0
votes
1answer
60 views
Spring @Scope(“request”) does not work with Servlet 3.0
I am trying to use a request scoped been inside my servlet 3.0 application.
I am not using the web.xml but an implementation of WebApplicationInitializer. The onStartup method looks like this:
...
0
votes
0answers
100 views
Should I use AsyncContext or DeferredResult?
If I have a single-async-request-and-single-async-response scenario, which is the preferred construct to use ? Servlet 3.0's AsyncContext or Spring's DeferredResult ? and why ?
(i.e other than the ...
1
vote
1answer
76 views
uploading file with a form from Flex Air to Java Servlet 3.0
I have been searching for days... I have a a Flex Air application that needs to upload a form to a java servlet. The form is extremely basic:
First name:
Last name:
Picture:
It is the most ...
1
vote
0answers
60 views
Java Servlet security annotation @ServletSecurity (value=@HttpConstraint)
I'm preparing to Java EE 6 Web Component Developer exam and came accross the following question.
Given the annotation for MyServlet:
@WebServlet{"/abc")
@ServletSecurity (value=@HttpConstraint)
...
0
votes
0answers
67 views
The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path
I get this error while run the servlet program i tried all what are given the answers for this question previously but still i didn't resolve this problem.even i comment the AprLifecycleListener in ...
3
votes
0answers
52 views
Exception doesn't get redirected to error-page when myfaces.ERROR_HANDLING is set to false
I have implemented an error JSF page which gives basic information to users. It is triggered by the <error-page> tag in my web.xml
<error-page>
<location>/error</location>
...
0
votes
1answer
64 views
Intercept HTTP Connect in Jetty
I am writing a HTTPS proxy server using servlet 3.0 and Jetty.
How can I process HTTPS Connect in jetty?
Currently I am using jetty-maven-plugin and my plugin configuration looks like this-
...
0
votes
2answers
55 views
ServletRequestListener - Getting the userprincipal returns null
I'm having a web-application that is secured with HTTP-Basic auth.
I also implemented a filter using the ServletRequestListener interface. Now when the filter calls the requestInitialized method, the ...
0
votes
1answer
66 views
Missing async methods in servlet api 3.0 jar?
I'm developing a servlet 3.0 application that has to process requests asynchronously.
Compilation fails with a
cannot find symbol
symbol : method ...
1
vote
1answer
88 views
error-page configuration in web.xml transforms the HTTP code returned in case of 404
I work on a JSF application powered by Tomcat 7.0.35. I would like to create a custom error page and have therefore played with the <error-page> tag in the web.xml configuration file.
...
0
votes
1answer
29 views
Redirect to setup if config is missing
I'm trying to create a basic java web app using servlet 3.0.
Now, my application needs to run through a basic setup page/form so it knows where to store config files etc. What would be a good way to ...
-1
votes
1answer
65 views
How to solve the “String or binary data would be truncate” in java? [duplicate]
I created a table for file I put the datatype for file varbinary(MAX) and when I am trying to upload the file it show me:
String or binary data would be truncated
When I wrote insert query like ...
0
votes
0answers
13 views
Forwarding HTTPrequest to other Servlet
I want to implement a proxy servlet that can process or forward HTTPrequest to other servlet server. How can I config web.xml file. Thanks so much!
0
votes
0answers
28 views
Unable to retrieve servlet attribute
Follow-up to this question- NullPointerException when processing asyncServlet
I am following this tutorial and is getting value of request.getServletContext().getAttribute("executor"); as Null in ...
0
votes
2answers
76 views
NullPointerException when processing asyncServlet
I am following this tutorial -
When I send request like this-
http://localhost:9090/AsyncServlet?id=99&dispatch=true&timeout=false
I am getting following-
Apr 09, 2013 4:01:09 PM ...
0
votes
1answer
28 views
Tomcat returns 400 without running a servlet
My device has UBlox (hardware component) to send POST HTTP/1.0 requests.
Headers that I receiving in Tomcat are following:
POST sc2-http-connector-3.0.0/report HTTP/1.0
Content-Type: ...
0
votes
3answers
113 views
Servlet 3.0 without a WAR file?
Is it possible to launch a webapp altogether with:
1) No war file:
http://stephenh.github.io/2009/01/10/war-less-dev-with-jetty.html
http://www.jamesward.com/2011/08/23/war-less-java-web-apps
2) No ...
0
votes
1answer
34 views
jetty hangs on when accessing ServletRequest methods in async context
I am running the code given in answer to this question-
Servlet-3 Async Context, how to do asynchronous writes?
Instead of response.getWriter().write(some_big_data); I've changed that line to
...
0
votes
0answers
47 views
WebServlet urlPatterns giving 404 Error
I was trying to use servlet Annotation .
This is my servlet as shown below and the context name is Teste
I dont have any web.xml in my project .
package com;
import java.io.IOException;
import ...
0
votes
0answers
14 views
Is there a way to create a taglib without declaring it in web.xml?
I'm using Servlet 3.0 and Java EE 6 in my project and there is no web.xml file - I would like to keep it that way (using annotations everytime I can).
The old way to do it is editing web.xml file ...
2
votes
0answers
105 views
Websphere 8.5 and SpringServletContainerInitializer
We have recently converted our app from servlet 2.5 to servlet 3.0 so that we can use dynamic servlet configuration.
We are using Spring's SpringServletContainerInitializer to initialize our ...
1
vote
0answers
48 views
Configurable App Modules - Servlet 3 - Enabling/Disabling servlets programmatically
I have a number of Servlet modules that I would like to be able to enable/disable based on some external property. I'm using Servlet 3.0, currently all the servlets are setup in web.xml.
I know I ...
0
votes
1answer
30 views
How to make LogbackValve async supported?
I'm using logback-access in my web app.
But when I'm using <Valve className="ch.qos.logback.access.tomcat.LogbackValve"/> in server.xml.My servlet using request.startAsync() will fail.
...
0
votes
1answer
93 views
how to integrate AJAX and Java EE servlet 3 async response
I am thinking of how to make AJAX take use of servlet 3 async response. in the request-response synchronize processing model, when the response comes back, the callback of XmlHttpRequest can get the ...
-4
votes
2answers
82 views
Application server with servlet 3.0 support..?
I need an Application server with Servlet 3.0 support..
Currently I am working on Tomcat but I need to know some other application servers which support Servlet 3.0..
Please help me if known
Thanks
...
1
vote
3answers
70 views
Open a jsp page when path is dynamic
I have a jsp page(with corresponding servlet) that needs to be open whatever the path is specified. For example my jsp is webapps/test/index.jsp
It should be opened as http://localhost/[path] where ...
0
votes
4answers
59 views
Servlet 3.0 API - Registering a servlet [duplicate]
i am developing an example servlet on tomcat 7.0.37 & eclipse 3.7. My current problem is to get it runnable :(
...imports and so on...
@WebServlet(value="/Hello")
public class AdminServlet ...
0
votes
1answer
136 views
Servlet 3.0 doesn't load on application startup
I've a JSF 2.0 web application running in tomcat 7.0.29 and tried to use the Servlet 3.0
annotation but the servlet didn't work as i can't see the log written in its init() method.
i ve read many ...
2
votes
0answers
67 views
Async processing in Servlet 3.0: Is there a library for this pattern?
When I was looking at how to design my servlets and their interactions with the back-end services, I thought maybe there is a toolkit available to solve this 'typical' scenario:
Servlet container ...
0
votes
1answer
105 views
Servlet 3.0: How to off-load Async processing to a different JVM?
Servlet 3.0 allows the 'request' thread (or 'main' thread) to delegate long-running processing to some other thread, so as to free itself to receive more requests. Agreed.
That is, we are achieving ...
0
votes
1answer
93 views
ServletContextListener: Isnt this incorrect usage?
I was going through a expert(?) tutorial on "Asynchronous processing support in Servlet 3.0" (http://www.javaworld.com/javaworld/jw-02-2009/jw-02-servlet3.html?page=2). In it there is this following ...
0
votes
2answers
432 views
JSF 2 Captcha using <h:graphicImage rendering twice for Servlet generated image value working only for Chrome
I have an issue in my application using where I have a Captcha component built as a JSF Custom Tag:
in my JavaEE 6 webapp I use:
JSF 2.1 + Jboss Richfaces 4.2.3 + EJB 3.1 + JPA 2.0 + PrettyFaces ...
0
votes
1answer
53 views
replace old request with new one in async servlet
I wrote an asynchronous servlet to feed changes in a cached object to all clients who have sent a request to the servlet.
With the request a client can get a subsection of the cache by including ...
1
vote
0answers
106 views
Using ServletContextListener with Jetty
I want to test my ServletContextListener with embeded jetty. It calls contextDestroyed on server stop but doesnt call contextInitialized on server start. How can I fix it?
Server server = new ...
0
votes
4answers
76 views
can i use “index” as the name of the servlet name?
I am getting this error in RAD Web Application 3.0 Deployment Descriptor Editor:
Servlet Mapping (index):
Servlet Name:The value is not among the
possible selections
Then under my ...
1
vote
0answers
71 views
How to implement push-style RESTful webservice with Apache CXF?
We already use Apache CXF in our project and I wondering if it is possible to implement push RESTful service (the feature introduced with Servlet 3.0 spec) within CXF 2.7?
0
votes
0answers
50 views
Maven Dependencies in web application and java application
I am trying to do connection pooling on remote server(not database server) using JNDI, tomcat, Maven and etc.
In details, I have two maven projects 1)Web application 2)Java Application in non maven ...


