Tagged Questions
0
votes
0answers
21 views
Accessing User Created Cookie
I am trying to create a cookie programmatically and i am successful in creating one; when i checked in view cookies plugin in firefox.
The code used for creating cookie is :
document.cookie = "Test= ...
0
votes
1answer
20 views
Error instantiating servlet class in Eclipse Europa?
First.java : this is my first java class
package com;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import ...
-2
votes
1answer
28 views
is there any alternative of interceptor for cookie management in struts1 [closed]
Is there any internal feature in struts1 to manage cookies. struts2 provides interceptor, but i didn't found any alternative of interceptor in struts1.
0
votes
1answer
19 views
Extracting Cookies from different Host Java
Is it possible to extract cookies of different host?
Meaning....... I developed a JSP page moving from "http://abc.com" to "http://def.com", so is it possible that cookies saved by "abc.com" can be ...
0
votes
1answer
24 views
How to pass a cookie through a socket in Java
I looked for a while now but I didn't found a good guide about passing a cookie to a socketserver.
I know I can store cookies with the HttpClient library, but how can I send the stored cookie to a ...
-4
votes
1answer
39 views
parse a cookie header with regex [closed]
I need a regex pattern that will parse this format of Cookie header:
Cookie: name1=val1; name2="val%$@2";name3=val3
Where the "name" cannot have special characters ()[]{}<>@,;:\"/?=, and the ...
0
votes
1answer
31 views
java url connection set cookie
I followed Ian Brown's tutorial to set a cookie to a request http://www.hccp.org/java-net-cookie-how-to.html
but it don't works:
import java.io.BufferedReader;
import java.io.IOException;
import ...
0
votes
1answer
26 views
How are cookies handled in loadDataWithBaseURL in WebView?
I'm loading all pages with loadDataWithBaseURL.
Step 1: Login (page 1) sets the cookie with php.
Step 2: I check for cookie, and load logged in page. (page 2)
Step 3: Now on page 2 i check for cookie ...
0
votes
1answer
30 views
Can GWT RequestFactory calls be cookie-parameterized?
I understand that with GWT RequestFactory, server-side calls are all made to a RequestFactoryServlet. I'd like to write a GWT application (using RequestFactory) that looks to a cookie to determine ...
-2
votes
0answers
31 views
Create cookie in servlet? [closed]
Whenever i am using
String username=request.getParameter("uname");
Cookie c1=new Cookie("mycookie",username)
the 2nd line (cookies) is giving following error
constructor Cookie in class Cookie ...
0
votes
1answer
25 views
Java setting cookie on root path
I have a login page at myhost:8080/auth/login after I logged in I set a cookie by my home controller class which is at 'myhost:8080/home/
I am setting my cookie like this
Cookie myCookie = new ...
0
votes
0answers
42 views
Converting server side cookie to client side
Using Spring MVC, whenever I logged into my site, it creates a cookie JSESSIONID I can get its value from firebug's Resources > Cookies. But I am not able to get this cookie value from javascript.
...
0
votes
0answers
22 views
Handling user and session in Rest - html5 - javascript application
I am using Glassfish FORM-based JAAS-authentication and it is working. I implemented servletFilter what checks the user, groups and roles and redirect authorised user to correct welcome page. User ...
0
votes
1answer
17 views
Remembering data with a HTTP-based API
I am currently developing a HTTP-based API to use my webapp through Android/Iphone/... applications.
But now I am facing a problem, let's imagine that an user is logged, should I send him a cookie ...
1
vote
1answer
43 views
Using cookie on login Page — using Struts2
I'm learning Java EE and I have to remember logged-in users with a four-hour timed cookie.
I have to implement it this way because the cookie part is mandatory for my school.
I know my cookie is well ...
-2
votes
1answer
22 views
JSP hit counter with cookies [closed]
Im working on a school project, that contains a hit counter with using cookies. I used to make counters just passing an incrementing value into variables in beans at every refresh, but I've been told, ...
2
votes
1answer
31 views
Choose a color from a dropdown and store that color in a cookie.
This is for school homework. I am stuck. I am to use servlets and create a dropdown which allows the user to choose a color, then change the background to reflect that color. Then anytime that cookie ...
0
votes
1answer
25 views
Cookies does not seem to be set properly
I manage to log in and get cookies with respect to the session. But when I try to make a new request the login-information seems to be lost (the HTML-data is the same for both the requests. The second ...
1
vote
1answer
13 views
Missing parameters in cookies WebDriver
I have a problem that i quite don't understand in WebDriver. It seems that the cookie does not get any parameters. The browser used is InternetExplorer
When a do a regular manual log in the cookie ...
1
vote
1answer
67 views
Setting value from cookies to TextField<Long> in Wicket
I face following problem:
I have wicket page with filter. Filter is the form component which contains this TextField:
TextField<Long> categoryField = new TextField<Long>("categoryId",
...
-3
votes
1answer
33 views
Browser Cookie Persistent
My question is very simple, it may be asked before but the answers are not useful for me so i am asking it again.
How can i persist my cookie stored at browser , after is cleared manually ?
Scenario
...
-7
votes
1answer
103 views
How to delete cookies of IE, Chrome and FF browsers with Selenium WebDriver using Java?
I am using Selenium WebDriver. After successful completion of first test execution browsers are responding slowly and remaining tests are failing. How to delete cookies of IE, Chrome and FF browsers ...
2
votes
0answers
57 views
Tomcat 7 exception when cookie contain umlaut characters
I'm a developer and I face the exception below when Cookie contain umlaut characters (ä,ö,ü), I tried many solutions and configurations without any result.
I use Tomcat7
Any solution please
Feb 21, ...
2
votes
1answer
53 views
Implementing anonymous user voting [duplicate]
I am building an anonymous voting system for my web application. My goal is to make a system that each computer (device) can perform 1 vote only. I know the best way to achieve this is not to ...
-1
votes
2answers
80 views
Saving username & password in desktop app [closed]
I am making one frame which has two text field one for username & other for password,and one button to login.
Now I want to store my login information for a specified period of time , so that ...
0
votes
1answer
34 views
Maintain state with secured cookies in http protocol
Is it possible to maintain session with http protocol using secured cookies? When secured cookies are used, the browser does not send the secured cookies and hence maintaining state is bit difficult.
0
votes
0answers
57 views
HttpClient 4.0 Java bot
I try to create a bot for my brother with java. This bot will help him to get some informations of a website.
For exemple, i want this bot connect on the website. Then, i want it acces to an URL, and ...
0
votes
1answer
96 views
Selenium Java Firefox driver - Cookies
How can I save all cookies in java's selenium webdriver to a txt file, then load them later? The documentation doesn't say much of anything about the addCookie function.
I've tried it in a multitude ...
0
votes
3answers
111 views
CookieManager for multiple threads
I am trying to make multiple connections via threads.
But every connection seems to override the other's cookies, resulting in the connections using the wrong cookies.
inside the threaded class's ...
2
votes
1answer
112 views
Java web development: Sessions are not saved between requests and a new JSESSIONID is created
I have a problem that I have been scouring the internet for the past few days. I have found people with similar problems but whos solutions didn't advance my state.
What is most irritating is that I ...
0
votes
0answers
42 views
Android 4.x Deletes My Cookies
I have an WebView Android application, that loads an local html file. In this file, I create a cookie using javascript. The application runs fine in Android 2.x. But in Android 4.x, the application ...
0
votes
1answer
117 views
Set tracking mode to cookie to remove appended session id, without using web.xml
I am setting up a completely java based spring app with no xml config :
public class WebApp extends AbstractAnnotationConfigDispatcherServletInitializer {
@Override
protected Class<?>[] ...
1
vote
0answers
30 views
Multiple Log-Ins on Separate WebViews? (Android)
I'm fairly new to Android development, and I have a question about how WebViews handle data (in Java).
I'm assuming this would fall under the 'cookie' category. But what I have is two different ...
1
vote
0answers
58 views
Preserving session in HttpClient
I'm attempting to log into a wesbite. On my first request, I do a POST on the login page with the username and password and log in successfully. Using the same instance of HttpClient, I do a second ...
0
votes
1answer
40 views
Use PersistentCookieStore globally
I have a PersistentCookieStore and I want to use it globally so it means It writes cookies into it in login.java, and I want to perform requests with theese cookies in mainactivity.java
How can I do ...
0
votes
0answers
31 views
fetch value from cookie giving issue
When user login first time I set the user value in cookie and then set cookie in the response.
This is my code snippet:
Cookie cookie = new Cookie("userId","1");
cookie.setMaxAge((7*24) * 60 * 60);
...
0
votes
1answer
102 views
not able to read browser cookie using HttpClient
I need to check browser cookie (along with id - password) to decide if user is valid or not. I have set cookie in browser when user activates account. At the time of login I need to check for cookie ...
1
vote
1answer
113 views
JSoup BodyAsBytes connection to FileOutputStream to save temp file doesn't work?
I used JSoup to parse a website with cookies. I want to download a file from the website using JSoup and the cookies which were saved in a hashmap using this piece of code:
Connection.Response res = ...
2
votes
2answers
117 views
How to remove a cookie
I am trying to implement the logout functionality for my iPhone app, which uses jQuery mobile, JS at the client side and java at the server side. Currently what I have to do is to clear cookie and ...
0
votes
2answers
134 views
Selenium WebDriver manager().getCookies() returns 0 always
Selenium WebDriver
manager().getCookies() in InternetExplorerDriver always returns 0 elements!
P.S. version 2.32.0.0
0
votes
0answers
52 views
automatically parse page with help of HttpClient
I wan to parse this page with help of HttpClient
But get this message on the page "Lookup Limit Reached For Your IP Block"
I use cookie:
HttpClient httpclient = new DefaultHttpClient();
...
1
vote
1answer
39 views
Passing session information with WebObjects
My team's lead developer is trying to figure out a way to pass session information in some other way than via the URL when using WebObjects.
Our site was built using web objects, but the problem ...
0
votes
0answers
68 views
Read Cookie Java Struts2
I am reading cookie values using struts code but it's not returning correct value as it contains "==".For example, my cookie value "Hw==" reads as "Hw". Seems == is not a special character in the ...
0
votes
0answers
29 views
How do I use cookies to redirect a returning user to a different page?
I've found some similar questions but none are specific to my needs.
I want to set a cookie on mobile devices that visit a coupon page.
The user may visit the coupon page as often as they like.
...
0
votes
1answer
147 views
Java - Why HttpClient doesn't send my cookies?
I try to send cookies with a form post using the Apache HttpClient and, for some reason, the server gets the request but not the cookies. Here is my code:
DefaultHttpClient client = new ...
0
votes
1answer
136 views
unable to read cookie javascript
I am setting cookie server-side, using java code
response.addCookie("test1","test1");
I found this code to retrieve cookie using javascript
(function(){
var cookies;
function ...
1
vote
1answer
85 views
how to pass data in cookie from one web application to other
I have two web application which are deployed in the different Application server. I am redirecting from one web application to another. I am setting some information in the Cookie object in web ...
0
votes
0answers
46 views
Error with jboss cookie authorizarion
I'm getting an auth cookie expired error when i try to submit run my web service. It is just me because my colleague is able to run the service fine without any errors. Can you please point wt needs ...
0
votes
1answer
403 views
getting and setting cookie spring mvc
I am using @requestbody and @responsebody annotations for my authentication method using Spring MVC. I want to know how can I get and set cookies in spring mvc.. I need to store username and password ...
-1
votes
2answers
39 views
Getting content from url which requires cookies to be enabled
Using java, how do I get the content from a webpage where cookies and javascript are required to load the page?



