Hi all,
I would like to know the meaning of the WSContants.SC constant.
I'm using a .Net client with WSE 3.0 with WS-Security, and when I
process the message
I have an error "action mismatch".
Investingating into the source I found out that the line(
WSHandler.java, 255) in function
" chechReceiverResults(Vector wsResults, Vector actions) "
int act = ((WSSecurityEngineResult) wsResult.get(i)).getAction();
returns a value fot " act " of 32. instead of WSConstants.SC (128).
If I add this line to ignore value 32 also:
if (act == WSConstants.SC) {
continue;
}
// ADDED BY ME
if (act == 32){
continue;
}
everyting still works fine.
Can someone explain what's going on here ?
Thanks very much
Cheers,
Fausto.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]