I even tried running the .jsps through this little c program, to no avail:
#include <stdio.h>
main(){
int c;
while( (c = getchar()) != EOF){
if( c != 0x1b){
putchar(c);
}
}
}
What gives?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3982777#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...