nardmoseley
Comments
-
That could do it. Whenever you update to a new version, I recommend
rebuilding your server, webtier, and client applications to keep them all in
sync.
--
Nard Moseley
Digital Metaphors Corporation<… -
Check out the custom parameters demo for the WebTier. (see article below).
Check out the RBServer.hlp for TrsWebTier methods, GetSessionParameters and
ValidateSessionParameters. Once you add the session parameters to a
W… -
1. Try testing that code in a non-server environment.
2. ReportBuilder 9 includes a new TdaSQLBuilder class that makes it much
easier to modify the TdaSQL object. And it can be done from RAP code or
Delphi code.
1. For an example of adding a button to the preview toolbar, see
RBServer\Demos\Web Tier\Custom Viewer. The example includes commented code
and a ReadMe.doc
2. I researched the euro symbol issue. In my …
Have not heard of this issue before.
Make sure that you have the latest release, RB 9.02.
As a first step try working thru the tutorials in the RBServer Developers
Guide. That way if you encounter an issue with it n…
The TrsWebTier.ViewerSettings.ToolbarOptions can be used to control which
buttons appear on the web report viewer.
--
Nard Moseley
Digital Metaphors Corporation
in Removing Report Explorer Button Comment by nardmoseley July 2005
The Server is multi-threaded, there should not be anything that is blocking
other reports from running. Each report should have its own database
connection and its own thread safe environment.
From a database development…
In the example, there is a datamodule called dmVolume.pas that contains the
ReportVolume and ADOConnection components. The purpose of the datamodule is
to provide a thread-safe container in which a single report can execute on
There are examples of using ADO installed to
RBServer\Demos\Servers\03. Explorer Databases\MS Access
RBServer\Demos\Servers\03. Explorer Databases\MS SQL Server
Note that in the examples and Developers Guide tutorial…
Sounds cool. If you any examples that you would like to share, please send
to support@digital-metaphors.com in .zip format.
--
Nard Moseley
Digital Metaphors Corporation
in Calling RBuilder Server from .Net app Comment by nardmoseley August 2005
We are working on an RB .NET solution that will enable what you describe.
The goal for a release is end 2005 or early 2006.
The Server Edition includes a WebTier component that can generate a web
browser interface. Typic…
Have not seen this before. It sounds like the web server is ignoring some of
the requests to load the child frames. Are you using a fully licensed
version of IIS or some other personal version?
--
Nard Moseley
This is not the same issue. The issue reported by Mauro Assis and Harry
Lebouef is isolated to RB 9.02 and to the behavior of the web Report
Explorer tree view. For RB 9.02 we added code to convert the HTML to UTF8
encoding.…
Another customer in this newsgroup is reporting the same issue. I cannot
recreate the error here, however I examined the code that writes to the
cache and found something that looks strange. I have created a patch that
might …
As a test try commenting all event-handler code associated with the report.
Its strange that no exception is being raised. Make sure that you are
providing a thread-safe environment in which the report can execute. Compare
Please do not crosspost. Just pick a newsgroup that you think is best and
post once there.
Report pages (TppPage objects) are generated incrementally upon demand. For
example, if you preview page 1, then only page 1 is generat…
1. ClientReport
Please see the examples in RBServer\Demos\Clients\Client Report Catalog.
These demos show how to do what you describe.
2. WebTier
Please see the following article...
-----…
As a first step, work thru the custom parameters demos. The are three
projects that work together. Each project includes a ReadMe.doc and
commented code.
The custom parameter server demo shows how to define and validate …
1. For an example of implementing event-handlers for the ReportModuleVolume
(i.e. forms based reports) download the following
in POST method in Server Comment by nardmoseley August 2005
Its a WebTier demo. You have to have a Delphi report server application
running. The WebTier is a middle tier.
report server <-----> ASP.NET web tier <----> web browser client
--
…
That error indicates that valid printer driver cannot be found.
Does the error occur only when generating to PDF?
There is a patches available for RB 9.02 PDF export. If you need this, send
an email to support@digit…
The Title is the ReportName, which for a file based report is the file name.
1. One option is to change the file name.
2. Another option would be to add some code in the WebModule to modiy the
html that is sent back…
---------------------------------------------------
Tech Tip: WebTier - Custom Error Page
---------------------------------------------------
TrsWebErrorPage generates the default error page that is sent to a web
bro…
- I did not quite understand this part of your message "I cant any
parameters into the name value list"
(perhaps you mean add or access?)
- One option is to modify the demo and send it to
support@digita-metaphors.co…
I am not fully understanding what all the pieces are and what you are trying
to accomplish. The OLR action is something that you writing in .NET code or
is it something that is written in Delphi code? If its part of your COM
…
I think with ASP.NET you can call a page in two different ways. Lets say we
have Page1 and Page2. We display Page 1 and want to call Page 2.
a. If Page1 is a form that is submitted, then Page1 can contain code to
redirec…
From my understanding of ASP.NET, it is page based. You use the aspx
extension to request pages and each page corresponds to an ASP.NET Page
class descendant. The Page class processes the web request and generates the
respons…
I researched this and have now modified the example - please download it
again.
The 'Request.Form.ToString()' method call is the problem.
- Request is of type HttpRequest.
- The Request.Form property is o…
Have you tried this using Delphi only (take dot net out of the equation). I
do not think this related to .NET at all.
Have you checked out the Custom Parameter demos included with RB Server
Edition (see article below).