Hi Christoph, I can simply attach Visual Studio 2010 remote debugger to the Object service and can debug in the normal way... does that not work for you? We attached our RQL library and you can get session and login info from the Reddot.CMS.SessionState.Session object in the Reddot.CMS library. If ends up being a bit circuitous you can leverage the infrastructure of NavigationManager itself to fire off RQL (and database... shhhh) commands directly.
See: //database connections... RedDot.CMS.Data.Proxy.Database.Instance.GetDataProxy().GetDataConnection(2, projectId); //you can send SQL through this, but you never EVER should (but you can anyway) //rql connections... RedDot.CMS.Rql.RqlServiceProxy.GetRqlService().Execute( rql ) Also, you can turn on RenderTag debugging using the following tag: <%!! Debug:Set( bool:True ) !!%> Which sends debugging information to various files inside the ASP\Log directory. There is an an object called RedDot.CMS.Globals.DebugLogging which you need to set to true to get some info logged. The only way I've found to set that is to create a custom render tag and set it that way. I can't find built-in wiring to access/set that value (but honestly I haven't looked that hard). It's probably in a config file. HTH. Regards, Richard Hauer ==================== 5 Limes Pty Limited www.5Limes.com.au -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Christoph Straßer Sent: Wednesday, 4 July 2012 4:18 AM To: [email protected] Subject: Re: Custom render tags and render spots We successfully implemented one rendertag. Implementing is quite straight forward. It get's a bit more complicated if you try to call code within a other DLL from your Rendertag-implementation. Debugging is a bit old school. You implement the rendertag within visual studio on your workstation, deploy it to the server, look at the result and so on... The easiest way to get some debugging-info is to output debug-info as a part of the rendertag-result. Kind regards, Christoph -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To view this discussion on the web visit https://groups.google.com/d/msg/reddot-cms-users/-/kG09IhAcoIsJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/reddot-cms-users?hl=en. -- You received this message because you are subscribed to the Google Groups "RedDot CMS Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/reddot-cms-users?hl=en.
