nardmoseley
Comments
-
The entire interface is being generated by the RB WebTier. It consists of
XHTML and JavaScript.
1. Outline TreeView
The Report.OutlineSettings can be used to define whether a report generates
an outline tree v… -
I do not think we have had any users create this type of database before.
I researched this by looking at the source code. Try the following:
1. In your DADE plug-in override the TdaSession.IsSQLReservedWord method to
RB 9.03 contains all fixes since RB 9.02. There are currently no patches
for RB 9.03.
If you are a registered user and did not receive download information please
send an email to info@digital-metaphors.com and include …Or can I use one of our demos?
--
Nard Moseley
Digital Metaphors Corporation
http://www.digital-metaphors.com
How can I recreate this issue on my machine? Do you have a simple example
that can email to support@digital-metaphors.com
--
Nard Moseley
Digital Metaphors Corporation
in diacritic characters Comment by nardmoseley October 2005
If you did not receive download notification about RB 9.03, please send your
serial number and registration info to info@digital-metaphors.com and
request it.
--
Nard Moseley
Digital Metaphors Corporatio…Ruud,
I do not know what would cause that. We just released RB 9.03 which those
fixes. Try downloading RB 9.03
--
Nard Moseley
Digital Metaphors Corporation
in diacritic characters Comment by nardmoseley October 2005
After you reported this issue, another custom also noticed that in some
cases the page loaded correctly. We were able to use that information to
create a patch for RB 9.02 that resolves the issue.
I will email this patch…
Perhaps if there is another customer using RB Server and Windows 2003 they
will see this thread and respond.
We do not have any Windows 2003 boxes here.
Try building a simple web broker app (that does not include RB…
You and Ruud Bernards have both reported this error. Thus far I cannot
recreate on my machine here. I am running the RB WebTier demos.
Can you try running the demos on your machine?
--
Nard M…
For the WebTierComServer example, the TRBWebTier.ProcessWebRequest method is
being called rather than a web module action. The QueryString and
ContentString parameters are parsed into a Parameter list. You can pass this
list …
The RBServer\Demos\WebTier\CustomParameters demo shows how to do this. (You
need also run the RBServer\Demos\Server\CustomParameters server app).
Here is a brief overview:
1. Create a TrsWebRequest object. Pass the …
1. One option would be to use the same approach - modify the
TdaDOAQueryDataView.SQLChanged method.
2. Another option is to use the TdaSQLBuilder class to modify the TdaSQL
object. The TdaSQLBuilder class can be used fro…
I just emailed you a patch.
--
Nard Moseley
Digital Metaphors Corporation
http://www.digital-metaphors.com
Contact info@digital-metaphors.com with your serial number and registration
information and request an update to RB 9.03.
--
Nard Moseley
Digital Metaphors Corporation
in "Canvas does not allow drawing" on requesting PDF from webtier Comment by nardmoseley October 2005> ok Nard I have sent you an example
I looked at the example you sent and it is exactly the situation that I
tried to describe before. Sorry if I was not clear before. I will give it
another try.
The problem here…
Where in your code are you raising the exception?
If you want to create a simple test case and email to
support@digital-metaphors.com we can look at it here.
To customize an error page, you need to create a custom error page class -
as we have dicussed.
The WebTier catches all exceptions and calls its HandleException method.
Thus your attempts to trap errors outside of the we…
The custom error page class will be called for all exceptions that occur. Do
not assume that it is of a particular Exception type. Instead check the type
inside you method:
Example:
if (aException is EWebTierE…
1. Rather than
wmMain.rsWebTier.ErrorPageClass:=TSTCWebTierErrorPage;
try
rsWebTier.ErrorPageClass := TSTCWebTierErrorPage;
2. Try moving the code in 1 above to the WebModule.OnCreate event. That is …
I created a simple test here that works with the demo WebDebug and ISAPI
apps.
1. I created a TMyWebErrorPage class that overrides the CreateErrorPage
method
lTemplate.SetVariable('message', '****Test Custom…
1. I think I recall that you have to have the professional version of
CodeSite. You can check with their tech support.
2. I do not know why that would occur. Make sure you are copying the new web
app to the appropriate I…
I would use the WebTier.OnCreate event
Correct. Create a descendant of EWebTierError which is defined in
rsExceptions.
We use the Delphi WebDebugger as much as possible. To debug an ISAPI
app…
This is covered in the Learning ReportBuilder Guide that can be downloaded
from our web site.
The Designer can be configured to allow the manual editing of SQL Text. Once
you manually edit the SQL text the li…
----------------------------------------------------
Tech Tips: Creating AutoSearch parameters via DADE
----------------------------------------------------
1. Access the Data workspace of the Report Designer.
<…
That's definitely a departure from the current implemntation. Are you
calling the viewer from the report explorer?
1. The WebTier.Viewersettings.ZoomPercent property is used to specify the
default zoom for all reports.
2. When sending a URL request to the WebTier, the zoom parameter is zoom=XX
where the XX is the percent. For example…
I think you would need to make a call to the WebTier with some custom
parameters. Something like
content=Email;mailto=somebody@somecompany.com;
Then write some custom processing on the webtier to email the PDF.
RBServer\Demos\WebTier\Custom Viewer shows how to add a custom button to the
web viewer.
One approach would be to write some custom webtier code to receive the
request and change Content=Viewer to Content=PDF. This assumes that the
request contains all required pareter values.