nardmoseley
Comments
-
I'm not clear on what you are saying.
As a test, use the project in RBServer DemosDemos\Clients\01. Client
Explorer to connect to the TrsServer application you built using the
ReportExplorerVolume with the REM Objects Data Abs… -
As a test try a simple Delphi client app that connects to the server via the
ClientReportExplorer/ClientReport. (you can use RBServer
DemosDemos\Clients\01. Client Explorer)
Does that work?
-
Nard Moseley… -
1. Session Lock/Unlock
Each user is assigned a unique session ID, which is the GUID you see in the
log. The user Session is locked while a user request is being processed and
then Unlocked when the response is sent back to the… -
AJ,
Please configure your newsreader to post using your full name, rather than
AJ. And no need to post the same question twice
in RBServer invalid property value
Comment by nardmoseley
June 2013
-
RB Server Edition uses the same report loading logic that is built into the
other RB Editions. If you try renaming your ADOConnection object in your
standard RB app, you will get an error as well.
The DatabaseName is saved as … -
See my reply to your other post about the ADOConnection.Name. This error
will occur if the ADOConnection.Name for the DataModule containing the
ReportVolume does not match the one saved in the report template. When the
ADOConnectio… -
The ReportVoume.DirectoryOptions provides configuration options for
controlling the behavior of volume directory caching on the server.
Use the EnableCaching property to specify whether the volume caches
directory information.… -
1. Conversion of existing reports.
You current reports use an ASTA Dade plug-in, you need to write code to
convert them to use a different plug-in, perhaps ADO.
Here is an rbWiki article with details for converting … -
In my testing with RB 15.02 I do not encounter any issues with boolean
autosearch fields. (This was an issue with RB 15.01 and was fixed). Make
sure you have RB 15.02 installed - checked the Designer Help | About box.
Then re… -
Temoc,
For ADO include the TADOConnection component and then configure the
ADOQueries to reference the TADOConnection.
The tutorial uses the old BDE, which requires TSession, TDatabase.
Best regards… -
Those units are now "pp" rather than 'rs'.
RB 15 Std, Pro, Enteprise include a TppHTMLFileDevice that exports all
report pages to a single html file. To help implement this feature some of
the 'rs' units were renamed 'pp'.
You might want to consider using the Designer Calc workspace to implement
the event-handlers is run-time Pascal (RAP). That way the code is saved as
part of the report definition.
-
Nard Moseley
Digital Metapho…Hi Ignacio,
To clarify, this is an error with your report server, not webtier or client
The RB Ser…Hi André,
Attachments can be emailed to support@, please do not post any attachments
to the newsgroups.
Please create a simple example that I can build and run here and email to
support@ in zip format. Perhaps use o…Hi André,
Check out the RB Server custom parameters demos. They contains examples of
performing custom processing.
in Call to TrsWebRequest fails with "Invalid session" Comment by nardmoseley July 2014Hi Jon,
IIS 8.5 shoulds work the same as 7.x
I recommend using the rbWiki How To for IIS7.
Make sure you have the ISAPI Extension feature installed, it is not
installed by default.
Best r…Hi David,
Here is a link to an rbWiki article with details for executing a specific
report via a Http URL and query string
in Pulling reports from a web page link Comment by nardmoseley May 2015Hi Ignacio,
Try adding rsWebAdapterXLSData to the 'uses' of your web tier app. Then use
content=XLS
If you prefer to use content=XLSData, this requires a simple modification.
Modify rsWebAdapterXLSData.pas, the meth…What version of Delphi are you using?
Please try a test with the ClientReport generating a PDF (see my prior
reply)
Please try a test using a trivial one page report with only a GMap (no
event-handler code or other …Hi Ignacio,
I created a simple test here and the GMap report previewed and printed to
PDF correctly. I tested with the ClientReport and the WebTier. Try testing
generating to PDF in a standard VCL form app, then try testing fr…Hi Paul,
I emailed you some screen shots.
The Indy web server runs on port 8080 and enables you to debug the WebTier
The machine's local IIS server runs on standard port 80 and needs to be
configured to retriev…Hi Paul,
The RB WebTier is deployed to IIS as an ISAPI DLL (option 3) on the docwiki
link you specified.
The Stand-alone application (option 1) is useful if you want to use the
Delphi debugger during development. To…Hi Paul,
In researching this, looks like the latest Delphi versions no longer support
the web debugger.
I'll have to convert the WebTier demos to use the newer 'stand-alone
application'
WebBroker has fluc…Hi Tom,
RB Server is a multi-tier solution.
To publish reports to the web you need the server and webtier. The report
server typically runs as a Windows Service. The WebTier is typically
deployed to an IIS web serve…
Here's a link to download an example I created.
www.digital-metaphors.com/tips/myWebViewerConfirmButton.zip
Best regards,
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Hi Paul,
I'm researching and will post a follow up here.
Best regards,
-
Nard Moseley
Digital Metaphors
www.digital-metaphors.com
Hi Smokoveck,
Two options:
1. Deploy .ptb files to Windows\SysWOW64 (or for Windows 32-bit machine, use
Windows\System32)
2. Compile the application with Portuguese as the default language. To do
this, co…Hi Smokoveck,
1. For the WebTier app, you can implement the WebModule OnCreate event to
set the language using this code..
uses
ppTypes,
ppLanguage,
ppUtils;
procedure TWebModule1.WebModul…Hi Smokoveck,
Please provide more details including a simple example project or steps to
recreate.
For example projects please use standard Delphi components and RB. Copy the
data to TClientDataSets. Send in zip form…Hi Steve,
Have not heard of this before. If it's a single customer, try to determine
what's different about their environment.
The server uses threads to process client request. Thread exceptions must be
handled in …