Custom header in iis 6.0 - deployment

How to add custom header by the msi.
I wanna add custom header in IIS6.0 at the time of deployment.
How to add custom header automatically?

You can add custom header through adsutil . see this How to add custom HTTP Headers to IIS from the command line.
In your MSI you will have to create a custom action of type script.

Related

Modifying a WSDL file manually

I have a URL to see the wsdl file. But I have to make some changes to it and again test it.
How can I do it.
I am using Soap UI to view the XML content.

How to set "allow-file-access-from-files" in CEF4DELPHI?

I'm trying to create a program that load a html page that is in a localfolder, and this page has implemented some javascript resources (ex:pdf.js) that load a local pdf file.
Every time that i tried to run the program i get this error: "Fetch API cannot load file....URL scheme "file" is not supported"
The local html file is loaded but the javascript cannot load the pdf.
I know there is the --allow-file-access-from-files flag, but i don't find the way to set this flag in Cef4delphi.
How I can set --allow-file-access-from-files flag on CEF4DELPHI?
Set the GlobalCEFApp.AllowFileAccessFromFiles property to True before the GlobalCEFApp.StartMainProcess call in the DPR file and CEF4DElphi will add that flag for you automatically.
If you need to use any flag/switch that it's not available as a GlobalCEFApp property just call the GlobalCEFApp.AddCustomCommandLine procedure before the GlobalCEFApp.StartMainProcess call.
However, that Fetch API error is sometimes shown when you register a custom scheme. Try registering the "http" or "https" schemes instead.

TYPO3 template extension- not able to change Mask back-end configuration and Page Tree not properly imported

I have created a TYPO3 template extension using the following method:
1.1 via Extension Manager
Open the module "Extension" in the TYPO3 Backend and search for the mask Extension.
Click on the configure icon at the end of the row.
Now you should be able to change the settings.
Changes are stored in typo3conf/LocalConfiguration.php.
Facing the following problems:
1.We created the folder/extension as mentioned. While installing this extension we have to change Mask back-end configuration. This is not working.
2.Page tree contents are not properly imported i.e. all page contents are missing.
Please let me know if you need further details.
We have a working configuration where we stored the full mask-configuration as part of our site-extension.
As designed you need to configure mask before you start to define any CEs, so that all CE definitions are stored in the correct folders.
For the rendering you also need to include the static template of ext:mask.
Our configuration is:
This configuration is stored in typo3conf/LocalConfiguration.php as there goes every configuration done in the extension manager.

how to set zend form details in application.ini

Is there a way to set zend form details in the application config file (application.ini) in Zend Framework. I am looking for a way to move following details to config
A way to disable form decorators by default
set element Prefix Path
default decorator for different element type
validator path
plugin details
Well you can check this link from the Zend Manual itself. It talks about using ini files to configure a form:
Using a Zend_Config Object
You can add various configurations to your ini file and apply them to the form itself.

How do we add JSP to provide input for jasper report in JasperServer?

I have created jrxml file and deployed it on jasper server. It provides its default input window. I want to add my own jsp to take input from user. There is option to add jsp, however I want to know how can I add jsp. I need steps.
Thanks......
Note: I haven't done this yet, but I will be working on it later today...
In Jasperserver 4.0, make a copy of /WEB-INF/jsp/modules/inputControls/DefaultParametersForm.jsp and customize that. Then, specify the customized file in the Optional JSP location field on the Controls and Resources page.
There's more information in the JasperServer Ultimate Guide.