I am using following paypal return value

http://localhost:8080/projectName/sucess?id=1

but when transaction completes it does not return me value of id

it return only http://localhost:8080/projectName/sucess

we have call sucess servlet after paypal transaction completes

Please help me

link|improve this question

1  
You might want to edit the question title, and add a 'not' :-) – Garry Jun 20 '10 at 17:54
feedback

1 Answer

up vote 1 down vote accepted

Try using pathinfo instead.

So http://localhost:8080/projectName/sucess/1 instead of http://localhost:8080/projectName/sucess?id=1

You can grab the 1 in servlet by request.getPathInfo().substring(1).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.