What steps will reproduce the problem?
1. Send Bind request, when Session State is other than SessionState.OPEN
What is the expected output? What do you see instead?
Current state should be displayed in the Exception. Currently, it always
show actual state as SessionState.OPEN
What version of the product are you using? On what operating system?
From trunk
Please provide any additional information below.
This is possibly coz of a typo on line
throw new IllegalStateException("waitForBind() should be invoked on OPEN
state, actual state is " + SessionState.OPEN);
The line should be
throw new IllegalStateException("waitForBind() should be invoked on OPEN
state, actual state is " + getSessionState());
Original issue reported on code.google.com by paliwala...@gmail.com on 21 Nov 2008 at 2:00
Original issue reported on code.google.com by
paliwala...@gmail.com
on 21 Nov 2008 at 2:00