0
votes
0answers
43 views

XmlHttpReqest missing parameter on 2nd form submit (IE only)

I have a simple in my jsp with some input fields. It works perfectly fine in most browser and not so much in IE. When the form is used in IE only the first submit will work. Every submit after that ...
0
votes
2answers
172 views

Using prepareFromRequest(PlaceRequest) from GWT presenter widget

I am trying to get a URL parameter from a GWT presenter widget, but I am getting these error messages: The method prepareFromRequest(PlaceRequest) of type ViewDiagramPresenter must override or ...
0
votes
3answers
194 views

Retreiveing Encoded Value from URL

I have passes a encoded SSO token in URL...so the URL looks like ...
-1
votes
2answers
578 views

Hide sending parameters from url

I should use link. And it means that method GET and all parameters I can see in url. How I can hide parametrs from url like that http://localhost:8080/MyApp/action.do?method=delete&id=0 And ...
0
votes
2answers
398 views

Cannot use parameter brought from another JSP page

This is my first attempt in exchanging values between 2 JSP pages, the index.jsp page has a log in form, and the login.jsp page will validate this login, if login is unsuccessful, it will redirect to ...
1
vote
2answers
476 views

How to encrypt or tokenize a username and date token?

Need to pass a tokenized (encrypted) username and date from webapp A to webapp B via a url parameter. Something like http://webappB?username=userA&timestamp=13445341313 should be sent as ...
1
vote
1answer
561 views

JSF Managed Bean method call using URL parameters

I have a Session Scoped managed bean that backs my web-app. In this web-app I would like to have the ability for the user to execute a URL containing a user id and a date. This will then trigger a ...
0
votes
0answers
363 views

URL-parameter-based navigation using Spring Webflow

as far as you probably know 99.9% of e-shops need their products to be indexed by search engines. I don't know any way to have indexed site except using URL parameters. Now I'm writing the e-shop with ...
3
votes
2answers
3k views

How can I create a Wicket URL that hides its parameters?

I'm currently creating a set of links with code like this: BookmarkablePageLink<CheeseMain> havarti = new BookmarkablePageLink<CheeseMain>("havarti", CheeseMain.class); ...
1
vote
3answers
445 views

How can I get URL parameters which have no value?

access using URL: http://127.0.0.1/test.jsp?action=test&abc or http://127.0.0.1/test.jsp?abc how can I get the String "abc" ? thanks for help :)
0
votes
2answers
410 views

Managedbean could not be created Error While passing parameters on URL

I'm trying to pass parameters on URL but I get Managed bean "Cant instantiate class:" error. Code is Here: create url: <h:outputLink id="link" ...
2
votes
2answers
934 views

Use part of the URL as an argument to a controller in Spring MVC

For example, with the URL foo.com/bar/99 99 will be available directly to a method in the controller as an argument. The controller is mapped to /bar For anyone familiar with ASP.NET MVC or ...
1
vote
2answers
3k views

Create URL Parameters in GWT

I asked a related question here How do I programatically write parameters into the URL using GWT? I've learned from my previous question that parameters need to go before the anchor, but how do I do ...