It might be relevent but the package didn't install properly - and I had to manually add in the httpModule settings.
Cheers
Paul
Server Error in '/' Application.
'ibex' is an undeclared prefix. Line 6, position 8.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: System.Xml.XmlException: 'ibex' is an undeclared prefix. Line 6, position 8.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
YSOD with <ibex:security>
Darren,
I'm getting a YSOD when I try to use the following:
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<ibex:security deny-print="false" deny-extract="true" deny-modify="true" user-password="" owner-password="DELETED"/>
It might be relevent but the package didn't install properly - and I had to manually add in the httpModule settings.
Cheers
Paul
Server Error in '/' Application.
'ibex' is an undeclared prefix. Line 6, position 8.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.Xml.XmlException: 'ibex' is an undeclared prefix. Line 6, position 8.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.272
Hi Paul,
The error is telling you that you need to declare the ibex namespace.
You can do this by adding the following attribute to your fo:root tag:
xmlns:ibex="http://www.xmlpdf.com/2003/ibex/Format"
is working on a reply...