nardmoseley
Comments
-
That is a quirk of the current implementation - it was done to accomodate
Javascript. In Javascript the Date encoding for the month is 0 based. (I do
not understand why Javascript does this).
For RB 11, the date ha… -
Try to determined what has changed. Perhaps windows update ran and changed
something? Perhaps some software some AntiVirus or other security software
was installed? Or a firewall? Did you change the default printer driver for
1. The [ServerConnection] "Address=http://asp.boman.no" does not look
correct. If the report server is running on the same machine as the webtier,
set it to LocalHost. Otherwise use…Try granting full controlto all users for the rbWebPub folder and its
subfolders.
Perhaps with IIS 6 is running the process under a different account.
in Reports on webserver Comment by nardmoseley February 2009
Security. IIS typically creates special user accounts. Those accounts need
access to the rbWebPub folder and subfolders. The speciific account names
may have changed for IIS 6, but the concepts explained here still apply.
Here is an article about configuring the WebTier for IIS 6
http://www.digital-metaphors.com/rbWiki/Server/Web_Tier/How_To…
Can you make a simple example report using DBDemos and save an .rtm that I
can run using the Demo server installed with RB. Then create a simple
WebTier example using the Demos\WebTier\WebDebug example as a starting
point.
I tried a simple test here. I put a TppReport on a form and created a query
on the customer table from DBDemos. I added an autosearch field on
LastInvoiceDate using the Between operator. I assisgned an initial value of
1/1/19…
I was able to recreate the error. The autosearch works for a field of type
DateTime but for Date. There is now a patch available for RB 11.03. I
emailed you the patch. Registered RB 11.03 Server Edition customers can
em…Check out the TdaDOASession.GetTableNames method in daDOA.pas.
That method contains the SQL to retrieve the list of tables from the Oracle.
You might need to modify the SQL to better suit your needs. (I am not an
Oracle expert…
RBServer does not use msxml.
As a test try running the windows client. Run the example installed to
RBServer\Demos\Clients\Client Explorer. Configure the time out propert for
the client report.
This is a real …Check the following property values
Server.TimeOut
WebTier.ServerConnection.TimeOut
WebTier.SessionOptions.SessionTimeOut
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
My guess is that you are using ADO. The TADOConnection.CommandTimeout
property has a default value of 30 seconds. Try increasing that value.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.c…
I just emailed you a patch that resolves this issue.
Registered users of RB 11.03 can email support@digital-metaphors.com and
request the patch.
--
Nard Moseley
Digital Metaphors
www.digi…Patrick,
Thanks for your interest in RB Server Edition.
RB Server makes it very simple to implement what you describe. You will not
get bogged down in web stuff.
RB Server Edition includes RB Enterprise. It act…
That error message indicates that the report definition has a reference to
an event-handler for the Report.OnGetAutoSearchValues event and that when
the report loads, the method cannot be found.
If you create a new…
Make sure you the report server application includes all the necessary units
required to load and your reports.
h…I tested on two different machines. Installed RB Server Edition 11.04 for
D2009. Compiled the WebTier demos with two different Delphi library path
configs.
1. RBuilder\Lib
RBServer\Lib
2. RBuilder\Source
Can you compile /any/ of the WebTier demos?
Can you compile any of the Server demos or any of the Client demos?
If you create a new project and place the TrsWebTier on it and try to
compile, what happens?
This error indicates that you either have a corrupt install of RB or you
modified the interface section of an RB source code unit. Try following
these steps for cleaning up a corrupt install...
www.digital-metaphors.com/rbWiki…
Here is an rbWiki article on requesting specific reports from the
WebTier....
http://www.digital-metaphors.com/rbWiki/Se…
For future reference, please do not post to these old threads, just create a
new thread. That will really help me out
Here is some info on calling the webtier..
http://www.digital-metaphors.com/rbWiki/Server/Web_Tier/Execute_Specified_Report
In my testing, the demo compiles successfully.
I can duplicate your error by adding XPMan to the 'uses' clause.
Open the project main form, rbClientExplorerForm.pas and examine the top of
the form. You should see so…
Ok, great. Yes, the sample code you found is the same as the code I posted
here, except that I adapted it for the ASP demo.
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
I could not duplicate your test results, however here is some info that I
hope will help.
I updated the WebTier ASP demo so that the ASP Com object creates/frees its
own FWebTierModule rather than sharing a singleton ins…
This issue is being researched. I will post a follow up here.
For ISAPI, check what version of IIS you are using and then refer to the
applicable article..
rbWiki..How to Deploy WebTier to IIS6
in Web Tier - Concurrency problems Comment by nardmoseley June 2009
Have not heard of this before. If you examine the WebTier cache directory,
can you determine whether two separate sessions are being created? Each
session will have a unique SessionID (i.e. a GUID) that is a subdirectory
unde…
Sorry, I read your post several times and I still do not understand.
Can you provide steps required to duplicate this issue?
--
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Set Report.EmailSettings.Enabled to True for the new reports that you
create.
If you have and end-user designer app, you can use the Report.Template.OnNew
event to set default props for new reports created by end-users.<…