New Posts New Posts RSS Feed: debuglog and remote server method
  FAQ FAQ  Forum Search   Calendar   Register Register  Login Login

debuglog and remote server method

 Post Reply Post Reply
Author
BillG View Drop Down
DevForce MVP
DevForce MVP
Avatar

Joined: 05-Dec-2007
Location: Monroe, MI
Posts: 233
Post Options Post Options   Quote BillG Quote  Post ReplyReply Direct Link To This Post Topic: debuglog and remote server method
    Posted: 05-Jul-2013 at 6:07am
when running my app on my development machine as a 2 tier app, where does the following statement get written. It is located in my remote server method.
 
                DebugFns.WriteLine("remote server method starting " + DateTime.Now);
i checked my debug log in the bin directory of the app and the log stops at the call to find the remote server method.
 i checked my bin directory of my web app and nothing is written there. 
 
Back to Top
kimj View Drop Down
IdeaBlade
IdeaBlade
Avatar

Joined: 09-May-2007
Posts: 1391
Post Options Post Options   Quote kimj Quote  Post ReplyReply Direct Link To This Post Posted: 05-Jul-2013 at 10:31am
A DevForce 2-tier application is one in which the client talks directly to the database. Here the "server-side" is logical rather than physical, so your remote server methods execute on the client, and debug and trace messages are written to the client's debug log.

Remember too that DebugFns calls will only execute when the application is compiled in the DEBUG configuration.
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down