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.

learn more… | top users | synonyms

0
votes
0answers
18 views

dynamic web project in eclipse with maven dependancy

I used the the JSF, primeface, Spring, Hibernate and SQL integrated in the dynamic web project as maven dependencies ... There is no error when I compile, however the following run-time error occurs ...
1
vote
1answer
37 views

Getting rid of web.xml in Vaadin 7 with VaadinServlet

I'm new to Java and Vaadin. A Basic Vaadin project is using web.xml for all the mappings. If i want to use the @WebServlet Annotations i need to create an inner class which somewhere inherits from ...
1
vote
1answer
26 views

IDEA seems incognisant of the Servlet API 3.0 xml schema, nevertheless my web-app deploys ok?

I am able to deploy my web-application from IDEA without problems using annotation-based url-mappings, so why does IDEA nevertheless highlight the tag as a violation of the schema-definition here? ...
0
votes
0answers
11 views

DWR 2.x reverse ajax in servlet 3.0 using async api

I would like to use DWR 2.x reverse AJAX in a servlet 3.0 container utilizing the servlet 3.0 async support (javadoc). Is any special configuration needed, other than declaring DwrServlet in web.xml? ...
0
votes
0answers
9 views

Form login in a Servlet 3.0 using annotations

I have an old servlet ABC using a web.xml to define it's form login (which is another servlet XYZ stored in another JAR file and integrated in the WAR under path WEB-INF\lib): <login-config> ...
0
votes
1answer
27 views

how to output when we implement a Servlet interface

I have just started learning servlets: As far as i know, we can create servlet in 3 ways: By writing a class that extends HttpServlet By writing a class that extends GenericServlet By directly ...
1
vote
1answer
42 views

Asynchronous web service

I'm trying to find a solution to the following problem: We currently have a synchronized web service working with jax-ws. What I need to do is to find some way so the client request will remains ...
0
votes
0answers
31 views

Embedded Tomcat 7 does not found ServletContainerInitializer from servlet-api 3.x

I'm using the embedded Tomcat 7.0.40 for my unit tests. My webapp uses Servlet 3.x (with x>0). I managed to deploy my webapp on the Tomcat. // create the embedded Tomcat Tomcat tomcat = new ...
-1
votes
1answer
53 views

get value separately from json object in java servlet

this is my javascript code to send json object to servlet username = "Nash"; password = "619here"; type = "all"; data = '{ "username": "' + username + '", "password": "' + password + '", "type": "' + ...
-1
votes
0answers
32 views

Configuring Servlet through WebApplicationInitializer

Having issues pragmatically configuring the Servlet through WebApplicationInitializer. When I run the application I get the following error. I searched the forum for similar issues but unable to find ...
1
vote
0answers
17 views

Unable to execute specific servlet in Jetty

My code looks like this- ServletContextHandler root = new ServletContextHandler(handlers, "/", ServletContextHandler.NO_SESSIONS); root.addServlet(rootServlet, "/*"); ServletContextHandler test = new ...
0
votes
1answer
25 views

Running Apache CXF on top of Atmosphere in Apache Karaf 3.0 (OSGI Environment)

I'm trying to implement Server Push/Reverse Ajax/Comet Technologies like HTTP Streaming or SSE, etc.. using Apache CXF - JAX-RS RESTFul services (> CXF 2.7.x - Supports Servlet 3.0 & JAX-RS 2.0 ...
0
votes
1answer
32 views

Cloudbees using WebapplicationInitializer says No WebApplicationContext found

Using Spring 3.2, JSF 2.1, JBoss AS7.1 at home and Cloudbees uses JBoass AS7.0.1. I am also using Servlet 3.0 and a WebApplicationInitializer(A spring class).(I think the root of the problem is the ...
1
vote
2answers
92 views

Tomcat 7.0.32 +Spring MVC Servlet 3 Async is not working

I wrote very simple controller which test Servlet 3 features: @Autowired ThreadPoolTaskExecutor taskExecutor; @RequestMapping(value="{name}", method = RequestMethod.GET) public ...
0
votes
1answer
20 views

How to remove/replace an ServletRegistration?

Is it possible to replace a ServletRegistration via servlet-api? Following code can only register new Servlets for the given servlet name, but if a servlet with the name exist, it does nothing. ...
0
votes
1answer
109 views

Java Servlet 3.0 server push

Led by several examples and questions answered here ( mainly http://www.javaworld.com/javaworld/jw-02-2009/jw-02-servlet3.html?page=3 ), I want to have server sending the response multiple times to a ...
0
votes
0answers
38 views

Insertion, retrivel and displaying of image from MySql

I am using the following code to insert Image into the database. It is working well. <%@ page import="java.sql.*"%> <%@ page import="java.io.*"%> <% Connection con=null; ResultSet ...
-1
votes
1answer
59 views

Servlet 3.0 Spring Java Config JNDI [closed]

I am trying to replicate the resource-ref attribute of web.xml in my spring web apps WebApplicationInitializer to configure JNDI. How would I do this: <resource-ref> ...
0
votes
1answer
124 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
95 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
92 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
30 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
71 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
43 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
103 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
39 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
68 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
73 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
22 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
62 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
120 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
99 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
130 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
94 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
84 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
146 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
69 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
92 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
99 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
91 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
130 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
78 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
15 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
29 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
92 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
40 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
170 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
52 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
90 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 ...

1 2 3 4 5 6