views:

85

answers:

0

In my application I had a list of books. For each book there is a dynamically created link something like:

http://interestingpage.com/searchBook.html?isbn=bookISBN

after it's clicked the user is moved to that page. Owners of that page has decided to change the method of posting form for searching book and it now uses something like:

method="post" action="searchBook?jsessionid=xxxxxxxxxxxx" 

I've tried to post this this kind of form but without success. Please note that retrieved the content and jsessionid of the page and then submitted the form using this jsessionid. This hovever doesn't work. The error tells that wrong session is used. Can someone please help me? Is there a workaround?