If you did read my post yesterday about how to break long running requests on the Domino server if not you can find it here The wait is over part 1
Sven Hasselbach commented that this didn’t work for him and yes he is probably right because I suspect that Sven was trying a long running XPage and yes you can’t break them using Restart Task Http but I have a solution/workaround but that requires you to implement a failsafe into your long running code.
If you add this inside your long running loop
if(applicationScope.get(“BreakAllCode”)==true){
break;
}
And create an Admin Failsafe XPage with a “Break it All” button with the code
applicationScope.put(“BreakAllCode”,true)
And a second button called “Reset” with the code
applicationScope.remove(“BreakAllCode”)
To bring back the application to a normal state.
If you then open up the “Failsafe” XPage if your code has gone wild and click the button you can quit the code that has gone wild.