[Wicket-ja-user 502] jsessionidのエラー

Back to archive index

a_mail0****@mail***** a_mail0****@mail*****
2011年 2月 22日 (火) 08:12:46 JST


浅見です。

wicketアプリに初回アクセスした場合、jsessionidがURLに付与されエラーになってしまうという事象に困っています。過去のメーリングリストを参照し、getClientInfoを使って対応しようとしていますが、エラーが解消されません。

アドバイスいただけますでしょうか。

○WebApplication

public class WicketApplication extends WebApplication {

protected void init() {
super.init();
IRequestCycleSettings iRequestCycleSettings = this.getRequestCycleSettings();
((IRequestCycleSettings) iRequestCycleSettings).setGatherExtendedBrowserInfo(true);

mountBookmarkablePage("/search", SearchPage.class);
mountBookmarkablePage("/result", ResultPage.class);
}

public Class getHomePage() {
mountBookmarkablePage("/search", SearchPage.class);
return SearchPage.class;
}

//省略

○WebPage

public class SearchPage extends WebPage {
public SearchPage(PageParameters parameters) throws IOException{
//省略
//セッション取得
final AppSession session = (AppSession) this.getSession();
//セッションをバインド
session.bind();
//セッションからクライアント情報を取得
@SuppressWarnings( "a" )
ClientInfo info = session.getClientInfo();
//this.add( new BookmarkablePageLink( "/search", SearchPage.class ) );

よろしくお願いいたします。




Wicket-ja-user メーリングリストの案内
Back to archive index