vaishali_sftdev
17th June 2008, 06:48
Hi,

When creating a patch in test server to deploy it on live server, is it required to have both source and object of script. Source is reuired for Debugging on live server? Plz, Reply..

dave_23
17th June 2008, 19:15
you need the source to debug, but if you're not debugging you can just deliver the object.

Dave

günther
18th June 2008, 16:35
For some reasons, it's better NOT to have the source code on the live system: You cannot put a session into debug mode "by accident", you don't have to worry about different #includes and so on.

Günther

NPRao
26th June 2008, 21:49
For some reasons, it's better NOT to have the source code on the live system: You cannot put a session into debug mode "by accident", you don't have to worry about different #includes and so on.
Günther ,

You can set the end users's BW to use: -set nodebug : disable debugger.

There is a new global variable in LN Tools: DISABLE_DEBUGGER (http://www.baanboard.com/baanboard/showthread.php?t=95&highlight=DISABLE_DEBUGGER&page=4)

This way from a developer's perspective you have the flexibility to debug any code if needed.