NamingManager.java (getContinuationContext): Call getObjectInstance() with Object...
2003-10-29 Julian Dolby <dolby@us.ibm.com> * javax/naming/spi/NamingManager.java (getContinuationContext): Call getObjectInstance() with Object, Name, Context and environment Hashtable from exception. Call fillInStackTrace() on exception when rethrown. * javax/naming/InitialContext.java (lookup(Name)): When a CannotProceedException is thrown use the ContinuationContext. (lookup(String)): Likewise. (close): Clear myProps and defaultInitCtx. From-SVN: r73041
This commit is contained in:
parent
119d34b273
commit
f0dc1eface
3 changed files with 38 additions and 5 deletions
|
@ -324,8 +324,10 @@ public class NamingManager
|
|||
// It is really unclear to me if this is right.
|
||||
try
|
||||
{
|
||||
Object obj = getObjectInstance (null, cpe.getAltName (),
|
||||
cpe.getAltNameCtx (), env);
|
||||
Object obj = getObjectInstance (cpe.getResolvedObj(),
|
||||
cpe.getAltName (),
|
||||
cpe.getAltNameCtx (),
|
||||
env);
|
||||
if (obj != null)
|
||||
return (Context) obj;
|
||||
}
|
||||
|
@ -333,6 +335,9 @@ public class NamingManager
|
|||
{
|
||||
}
|
||||
|
||||
// fix stack trace for re-thrown exception (message confusing otherwise)
|
||||
cpe.fillInStackTrace();
|
||||
|
||||
throw cpe;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue