nardmoseley
Comments
-
1. For an example of filtering the directory based on a session login check
out theRBServer custom parameter demos installed to
RBServer\Demos\WebTier\CustomParameters
RBServer\Demos\Clients\CustomParameters
RBServer… -
Thanks for the feedback. This would require a re-design of the current web
explorer or perhaps creating an entirely new one that can be used as an
option. Probaly will not happen soon.
1. I am willing to send you the sou… -
RB 11 for D2009, the webtier uses UTF-8.
RB 11 for D2007 and prior, the webtier uses ISO-8859-1 (i.e. Latin-1).
Please generate a sample report to an archive file (.raf) and then zip it up
and send it to support@dig… -
I researched this one and looks like we need to call Delphi's AnsiToUtf8
conversion function when generating the XHTML. We will try to correct this
for the next maintenance release, RB 9.02.
--
Nard Mos… -
Are you using .rtm files or reports stored in a database? In any case, you
need to use RB Enterprise to load/edit/save the report definitions.
The ReportVolumes used by the server can use either .rtm files or reports
sto… -
Then create a test Server app that can be run under the IDE and test that
one.
--
Nard Moseley
Digital Metaphors Corporation
http://ww… -
Try running the server as a Delphi application and use the Delphi debugger
to determine where the problem occurs. It probably occurs when the query is
opened. I do not know why you are receiving this error. I do not think it is
Try to trap the exception and re-raise it as a descendant of
EReportBuilderError. See ppTypes.pas for the desclaration of the Exception
types. For a database error I would use EDataError. You could place some
code in the Data…
Try updating to RB 9.02, it contains some fixes for RichText.
If you are a registered user of RB 9 and did not receive download
notification for RB 9.02, please email info@digital-metaphors.com with your
serial number an…
Sorry, do not have anything like that...
--
Nard Moseley
Digital Metaphors Corporation
http://www.digital-metaphors.com
Internally Delphi's TTcpClient compoent is being used.
--
Nard Moseley
Digital Metaphors Corporation
http://www.digital-metaphors.com
If I am understanding the log correctly, the following statement requires 14
seconds to execute?
lClientReport := TrsClientReport.Create(nil);
That should isntantaneous...does not make sense to me at all.
I just emailed you a unit that may help with debugging. I don't know if you
have some slowness with the report begin loaded on the server? Or perhaps
you have a situation in which a global resource is getting locked by another
Perhaps try deleting all of the subdirectories from the web cache root
directory.
The WebTier has a global WebSessionManager that manages a list WebSession
objects. A WebSession object has a SessionID (a GUID assigned by…
Sorry, I really have no clue...
Obviously something changed. Could be the executing environment of the
machine changed, could be the database being used changed.
First thing to try is to reboot the machine (you prob…
RBServer\Demos\Servers\Explorer Databases\Interbase contains an example of
using IBExpress components.
There are MS Access and MS SQL Server examples that use ADO.
--
Nard Moseley
Digital Metaphors …
Licensed as 1 processor, like Microsoft.
--
Nard Moseley
Digital Metaphors Corporation
http://www.digital-metaphors.com
The $Application variable is not currently supported for the FileDirectory
property - you have to specify the path. (We need to add that feature to a
future release). In our demos we use the following in the OnCreate of the
d…
Thanks for the feedback.
--
Nard Moseley
Digital Metaphors Corporation
http://www.digital-metaphors.com
\RBServer\Demos\Web Tier\Web Debug
--
Nard Moseley
Digital Metaphors Corporation
http://www.digital-metaphors.com
1. The cause of that error can often be that no default printer driver is
installed for the account under which the application is executing. As a
test try using the ClientReport to generate pdf's and see whether the sa…
1. Please specifiy whether the "Canvas does not allow drawing" error occurs
when previewing the report or only when print to PDF. I will email you a
couple of patches for PDF issues reported with RB 9.02.
2. Ensuring a t…
Thanks for bringing this to our attention. We have contacted Waler about
getting the latest version of TExtraDevices for D2005.
I installed the trial. Looks like the 'uses' clause of the
rsWebAdapterPDF.pas unit needs to…
Use the OnDestroy event of the Form or DataModule upone which the
ReportVolume resides.
When a report is executed a new DataModule will be created. The DataModule
will free'd when the report is no longer needed.
I Googled "ASP.NET 64-bit and 32-bit on IIS 7", looks like it is possible to
run either or both.
in webtiercomserver in asp.net aspx file? Comment by nardmoseley July 2014Hi Ruud,
If the ASP.Net is 64-bit, then you need to build the RB WebTier as 64-bit.
Best regards,
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Here is an example that you can download.
http://www.digital-metaphors.com/tips/AspDotNetWebTier.zip
Note: I modified the COM I…
The ASP demo produces a COM object. You should be able to add a reference to
the ASP com object to a .NET project and use the COM interface from .NET.
We do not have a demo of this, but will try to create one....
The architecture of ReportBuilder Server is highly optimized. Our testing
here and feedback from customers has provded this out. Our live demo server
is a good demonstration of this.
I supect there is something else goin…