0
votes
2answers
50 views

is not abstract and does not override abstract method error

I am totally stuck in one of my classes showing the error: ResettableHttpServletResponse is not abstract and does not override abstract method getHeaderNames() in HttpServletResponse Here is My ...
0
votes
1answer
33 views

Parse request line of http header

Is there anything inbuilt in java.net to parse the request line on a http request? For example: CONNECT google.com:443 HTTP/1.1 In this case I want to parse the host and port.
0
votes
4answers
50 views

Firefox plugin to monitor http headers sent to a REST Web service

I have a webapp accessing some REST APIs. Now the REST APIs need some headers to be added to the request. I already have the code for adding the headers in my webapp but i need to verify if it is ...
1
vote
1answer
78 views

Remove HTTP Response headers in Java

Is there a way to remove HTTP response headers like Server and X-Powered-By? My application is using a Weblogic server. I'm programming in Java using the Spring MVC framework and Hibernate, and using ...
0
votes
0answers
13 views

Applet modified header can not be accessed at server

I have my applet code which takes parameter values from html and generates the headers to access at server side. the code is working on other systems and I am able to see the Param values in http ...
0
votes
1answer
45 views

Apache Camel: Query Params vs Header Params

I'm currently trying out Apache camel (as routing engine). I understand that Camel supports multiple DSLs and that it could be configured using Java (Java DSL) or Spring (Spring DSL). Question: I ...
0
votes
1answer
183 views

Add X-Content-Type-Options No Sniff

I am currently trying to implement more security measures for my java application and have encountered the suggestion of using the x-content-type-options no sniff. Upon my searching I was unable to ...
0
votes
1answer
27 views

java HttpClient Methods (LOAD, Confirm)

HttpClient client = new DefaultHttpClient(); String URL = ("http://www.alfa"); HttpGet request = new HttpGet(URL); i want to load the card with "LOAD" method and use "CONFIRM" method can someone ...
0
votes
1answer
80 views

addCookie method doesn't adds the cookie to an httpServletResponse

I gotta set a cookie into a controller but when i try to add it to an HttpServletResponse object it seems to not work, neither with HttpServletResponse.addCookie(String) nor with ...
0
votes
1answer
69 views

Responding to Basic Authentication/Authorization with 401. Same username/password gets sent 2nd time

I am writing a java program which responds to a basic request - using this as a reference - http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html First time the browser sends a GET request without ...
12
votes
1answer
761 views

Basic authentication in REST-application

Environment: JAVA Glassfish REST-services in different machine HTML5-client with AJAX and JQuery Jersey This is what I have implemented so far: HTML5-client ### $('#btnSignIn').click(function () ...
0
votes
1answer
90 views

Invalid method signature when sending HTTP POST request

Ok this is really frustrating. I'm using my API key perfectly fine. Authentication does just fine, token is generated fine, session key is also OK. But when I run the playlist.create, the playlist is ...
3
votes
2answers
335 views

Set user-agent property in https connection header

I am unable to properly set the user-agent property for an https connection. From what I've gathered, http-header properties can be set through either the -Dhttp.agent VM option or through ...
3
votes
1answer
388 views

HTTP POST request sends 403 error. Invalid method signature

Ok this is really frustrating. I'm using my API key perfectly fine. Authentication does just fine, token is generated fine, session key is also OK. But when I run the playlist.create, the playlist is ...
0
votes
1answer
239 views

How to post data with “Content-Type ” header as “multipart/form-data”

I am trying to post data using multipart/form-data, but it is not working with httpPost method. I have to send data as json string from the API,but it is giving bad response from server if I remove ...
1
vote
1answer
90 views

Connection 3G vs Wi-Fi Connection

I'm develop a android app that consume a xml webservice. When connected in a wi-fi network works fine, but when connected in a 3G network, fail (http 404 not found). It's not happening only in ...
0
votes
1answer
128 views

UrlConnection.getHeaderField(string name) returning null

working on a URlconnection problem The connection object is created by invoking the openConnection() method on a URL and the general request is manipualted. then i initialized a string in which i am ...
0
votes
0answers
129 views

Multiple distinct Content-Disposition headers received from server in Jasperreports

I'm trying to set content-disposition header in response of servlet, but i get this error in browser. What should i do? Duplicate headers received from server The response from the server ...
0
votes
1answer
93 views

Error from timestamp response

I have to get a timestamp from a tsa server. I am sending a file (converted in byte[]). But when I try to get a response it throws me a NullPointerException. This is my code: public static void ...
2
votes
2answers
190 views

Basic Authentication with RestTemplate - compilation error

trying to add basic auth to restTemplate problem I encounter is that i cant initialize : (with both the imports in the code snippet) HttpClient client = new HttpClient(); This code resolves in a ...
0
votes
2answers
140 views

SMS not being sent on mobile phone using bulk sms site

I am trying to send the sms on mobile through the bulk sms sending site . I am trying to send the sms through java api by using the following code. its not showing any error but message is not being ...
0
votes
2answers
152 views

setting up a digest http request with a java library

So I am trying to connect to a database (The owners of the server outsource the set up work and don't know details about it) and have a username and password. When I try connecting with curl in the ...
-1
votes
1answer
253 views

RESTful webservice basic authentication [closed]

I am new in webservice and I am writing a simple reasteasy RESTful webservice in java, but I need to add http basic authentication to my service with a username and password. It is going to be ...
6
votes
1answer
124 views

In Java, how do I extract a password from a HttpServletRequest header without generating a String object?

A common Java security guideline for handling sensitive data (== passwords) recommends never using a String object to store the data, and instead using an array of bytes or chars. I am trying to ...
3
votes
2answers
73 views

Java: Server response is cut when stored into a string?

very strange problem, don't have any idea. Maybe you can help again - as so often :) I create a simple UrlConnection and use the post-method. When I look into wireshark, everything is send right to ...
0
votes
1answer
235 views

Java CXF WS Client - gZip HTTP REQUEST HEADER being ignored

I am trying to set/request gZip in HTTP REQUEST HEADERS inside my Java CXF WS Client BUT for some reason its being IGNORED. I don't get back gZipped response. Here is how I am trying to set. I am ...
2
votes
5answers
245 views

Detect an executable file in java

I have a use case where we are allowing users to upload files. Now in the back end java(controller which extracts file from http request and checks), i want to detect if user uploads any executable ...
3
votes
1answer
184 views

How can I modify a Java servlet response header in case the container authentication has failed?

I have a Java EE project with web services protected by web container authentication. (HTTP-basic) (we can say in this context: the web services are servlets) A would like to modify the servlets ...
0
votes
4answers
246 views

How to Set HttpPost Headers for a Client Request in Java Android

I am having trouble getting the Apache HttpClient to correctly send an HttpPost Header. I have no problems sending name value pairs and whatnot, but whenever I set or add a POST Header, it disappears ...
1
vote
0answers
193 views

Change the servlet header and redirect to other url

I'm very new to servlet and I wish to do the following. I have a filter set up in my place: void doFilter( ServletRequest request, ServletResponse response, ...
1
vote
0answers
68 views

Escaping HTTP Headers

I was wondering if there is a Java library that contains a method to escape HTTP header attributes? I'd like to prevent injections and I was wondering if something already exists instead of trying to ...
-1
votes
1answer
261 views

Downloading page with HtmlUnit throws exception

I am trying to download this page: http://ekw.ms.gov.pl/pdcbdkw/pdcbdkw.html using HtmlUnit 2.11. After GET on this page there is JS script computing and setting cookie and submitting the form. I ...
0
votes
1answer
54 views

Getting Cookie value from MessageContext.HTTP_RESPONSE_HEADERS

How can I get hold of a value of a particular cookie from list of cookies. Below is how I am trying: Map<String, List<String>> map = (Map<String, ...
0
votes
2answers
65 views

Java Servlets transmitting data to browser

Just have a few questions regarding Java Servlets: 1) What happens when a browser requests a servlet for the first time? 2) Is the the response.setContentType(text,html) the first instruction ...
0
votes
1answer
32 views

Some information about Accept Header when I have an URL that end with a specific extension (like .xml)

I have a question about Accept HTTP Header. If I have a link ending with a specific extension, like in this case where my URL end with .xml: <a id="writeXmlExt" class="writeXmlLink" ...
-1
votes
1answer
372 views

JAVA HttpPost enctype = “multiform/data”

i'm trying to simulate a HttpPost request for form submission using HttpClient 4.2.3 the form is similar to <form action="localhost/xyz.aspx" method = "post" enctype="multipart/form-data"> ...
0
votes
1answer
78 views

Java set accept on http get

I am trying to send a request to a server using GET that will respond with XML. I am told that I need to set the "Accept" property, code follows: StringBuffer url = new StringBuffer(BASE_URL); ...
4
votes
1answer
643 views

Cache-related HTTP headers are overridden in Servlet response on App Engine

I have a servlet on App engine which serves images. The servlet sets HTTP header values properly to indicate that the images should be cached. But App Engine overrides these headers which results in ...
1
vote
1answer
83 views

How can I tell proxy server not to cache the response

I found this to achieve this job. Cache-Control: private The next higher directive is “cache-control: private”. It instructs proxies in the path not to cache the page. But it permits browsers ...
0
votes
1answer
671 views

request.getHeader returning a null value in a jsp page

I have written a filter to add some header values to Response object. The doFilter is setting some header value as shown below public void doFilter(final ServletRequest req, final ServletResponse ...
0
votes
1answer
811 views

How to handle HTTP headers in Spring MVC?

in this period I am studying the Spring MVC showcase example. Now I am studying how Spring MVC requires data. I have some difficulties to understand how HTTP Request header are handled. In pratcice ...
1
vote
0answers
84 views

JAX-RS/Jersey response 406 with no entity but RFC 2616 recommends one

(Hi again stackoverflow community) I am working in Java Web Service with Jersey. I'd like to understand how could handle the following problem: Apparently, JAX-RS (JSR 311) for every situation with ...
-1
votes
1answer
140 views

How to use browser cookies programmatically [closed]

I have a crawler that automates the login and crawling for a website, but since the login was changed it is not working anymore. I am wondering, can I feed the browser cookie (aka, I manually ...
1
vote
1answer
100 views

Java /Groovy -Print the name of the browser , the request came from

in my controller (i am using grails MVC framework) , i want to print the name of browser from which the request has come. I tried java code : String userAgent = request.getHeader("user-agent") ...
0
votes
1answer
364 views

HttpGet adding header

I am creating a httpClient and I want to add certain header to my HttpGet request My current code produces the following request. GET /folder/index.html HTTP/1.0 Host: localhost:4444 Connection: ...
0
votes
1answer
348 views

Setting headers on HttpServletResponse after writing response body

I figured out the hard way that it isn't possible to add more headers to an HttpServletResponse after beginning to write the response body to the output buffer, which, I guess in some random universe ...
1
vote
3answers
1k views

Java filter failing to set response headers

I am trying to create a Java "Filter" which detects a custom HTTP Request Header, and inserts response headers so that the file will download automatically. The response header that is most important ...
1
vote
1answer
131 views

Spring, how to manage HTTP Request by headers?

In this period I am studing the Spring MVC Showcase example dowlodable from the STS dashboard I have a doubt related to the functioning of the HTTP Request mapping by header. In the showcase example ...
2
votes
0answers
130 views

HttpPost Java with Apache Library

I'm trying to get a confirmation response from a server after sending a json file to it. I can't see what the problem is with the following. I've been consistently getting a 502 error when attempting ...
0
votes
0answers
97 views

Customize browser's “Save As…” dialog from the server-side

Is there a way to change title of the "Save As..." dialog box, and to preselect the type as XML, without giving a filename and without using Swing (JFileChooser)? Here is the code I'm currently using ...

1 2 3 4 5