Siberix Report Writer is an advanced reporting solution for .NET Framework 2.0 designed to create industry standard PDF and XPS documents dynamically with API calls or from XML. It provides a variety of methods to format text, insert images, draw geometric figures and paths and allows to create complex layouts.

Top Features:
  • Easy to use API and XML format
  • Multiple sections with individual formatting
  • Headers, Footers, Decorations and Watermarks
  • Automatic page flow
  • Page numbering and Page breaks
  • Hyperlinks and Bookmarks
  • Grids, Lists, Trees, Groups and Flows
  • Site containers to place elements by absolute positions
  • Text formatting (TrueType font files; Font size and color; Strikeout and Underline; Superscript and Subscript; Alignment; Intervals and Indentations)
  • Images and Shapes
  • Direct canvas drawing (Lines, Rectangles, Ellipses, Polylines, Polygons, Arcs, Chords and Pies; Path composition; Bezier curves and Splines; Pen styles, widths, colors, caps and joins; SolidColor, LinearGradient, RadialGradient and Texture brushes; Font metrics; Clipping areas; Translation, Rotation, Skew and other transformations)
  • Callback interface to merge XML patterns with API calls
System Requirements:
  • PC with an Intel or compatible Pentium 600 MHz or higher processor
  • Windows 2000, Windows XP, Windows Server 2003 or 2008, Windows Vista
  • .NET Framework 2.0 or higher
  • Minimum of 256 Mb of RAM (512 and more recommended)
  • Memory requirements vary according to the nature of the project
FAQ
Q. Is Siberix Report Writer royalty free?
A. Yes, Siberix Report Writer has 100% royalty free distribution rights. Pay once and use the product wherever you want including web servers or your distribution packages.
Q. What does the Corporate License mean?
A. The Corporate License includes unlimited number of company's developer seats, unlimited number of company's web servers and unlimited number of distributions as a part of your application.
Q. What does the Source Code License mean?
A. The Source Code License covers the standard Corporate License and includes full source code for the Siberix Report Writer. You may perform any modifications to the product or even compile it in one binary file with your application. Please read the software license agreement for more details.
Q. Are there any limitations in the evaluation version?
A. No, it's fully functional and represents all original features and behavior. It allows you to perform any tests in your production environment until you get the commercial version of the product.
Q. Do I need to obtain any special license from Adobe?
A. Adobe PDF is an open standard and we haven't seen anything that prevents to develop a product for the PDF document generation. Siberix Report Writer doesn't use Acrobat Reader's interfaces to produce PDF documents and is not a plug-in to the Acrobat Reader in any way. From that point of view the product is a standalone third party component. Thus, we believe that you have to follow the Acrobat Reader's license agreement in the matter of distributing the Acrobat Reader itself and the Siberix Report Writer's license agreement in the matter of distributing the product.

You may need to get a license from Adobe to bundle the Acrobat Reader with your project distribution package. However, this has nothing to do with the product's API used to generate PDF files.
Q. Do I need to obtain any special license from Microsoft?
A. To the best of our knowledge, Microsoft doesn't forbid third party companies to develop a product for the XPS document generation. However, according to the XML Paper Specification Patent License we have to provide the following notice for your information:

This product may incorporate intellectual property owned by Microsoft Corporation. The terms and conditions upon which Microsoft is licensing such intellectual property may be found at http://go.microsoft.com/fwlink/?LinkId=52369.
Q. How to install or upgrade the product?
A. Siberix Report Writer doesn't require any installation. All you need to do is to copy Siberix.ReportWriter.dll into your project folder (desktop applications) or to the "bin" folder (ASPX applications) and reference it from the project. You may read regarding the "bin" folder and other deployment options in ASP.NET at the following link.

Note

In some rare cases you may find out that the evaluation watermark is still in place or get unexpected errors while installing or upgrading the product. To eliminate them please follow to the instructions below. It is preferred to perform all the steps together:

  • Check you have the latest Siberix.ReportWriter.dll
  • Remove all inclusions of Siberix.ReportWriter.dll at the temporary ASP.NET directory (%WINDOWS%\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root)
  • Open your project and remove all references to Siberix.ReportWriter.dll in your project including the main reference path (Right click on the project name in the Solution Explorer / Properties / References Path)
  • Save the project
  • Add references to Siberix.ReportWriter.dll in your project
  • Save and recompile the project
  • Clear your browser's cache
  • Restart the Internet Informational Server (IIS)
  • Run the project
Q. How to stream out PDF or XPS documents in ASP.NET?
A. There are several ways to stream out PDF or XPS documents from an ASPX page. See the code samples below.

Content types:

PDF - application/pdf
XPS - application/vnd.ms-xpsdocument

1. Streaming into the context's response

[c#]

System.Web.HttpContext context = System.Web.HttpContext.Current;
System.Web.HttpResponse response = context.Response;
response.Clear();
response.ContentType = "application/pdf";
report.Publish(response.OutputStream, Siberix.Report.FileFormat.PDF);
response.End();

[vb]

Dim context As System.Web.HttpContext = System.Web.HttpContext.Current
Dim response As System.Web.HttpResponse = context.Response
response.Clear()
response.ContentType = "application/pdf"
report.Publish(response.OutputStream, Siberix.Report.FileFormat.PDF)
response.End()

Note: To stream out a PDF document over the https response please use the following lines:

[c#]

System.IO.MemoryStream ms = new System.IO.MemoryStream();

report.Publish(ms, Siberix.Report.FileFormat.PDF);

byte[] buffer = ms.ToArray();
int length = buffer.Length;

System.Web.HttpContext context = System.Web.HttpContext.Current;
System.Web.HttpResponse response = context.Response;
response.Clear();
response.ContentType = "application/pdf";
response.AddHeader("Content-Length", length.ToString());
response.AddHeader("Accept-Ranges", "bytes");
response.AddHeader("Accept-Header", length.ToString());
response.OutputStream.Write(buffer, 0, length);
response.End();

[vb]

Dim ms As System.IO.MemoryStream = New System.IO.MemoryStream()

report.Publish(ms, Siberix.Report.FileFormat.PDF)

Dim buffer As Byte() = ms.ToArray()
Dim length As Integer = buffer.Length

Dim context As System.Web.HttpContext = System.Web.HttpContext.Current
Dim response As System.Web.HttpResponse = context.Response
response.Clear()
response.ContentType = "application/pdf"
response.AddHeader("Content-Length", length.ToString())
response.AddHeader("Accept-Ranges", "bytes")
response.AddHeader("Accept-Header", length.ToString())
response.OutputStream.Write(buffer, 0, length)
response.End()

2. Streaming into the "Response" with the "inline" attribute

[c#]

Response.Clear();
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "inline; filename=Document.pdf");
report.Publish(Response.OutputStream, Siberix.Report.FileFormat.PDF);
Response.End();

[vb]

Response.Clear()
Response.ContentType = "application/pdf"
Response.AddHeader("content-disposition", "inline; filename=Document.pdf")
report.Publish(Response.OutputStream, Siberix.Report.FileFormat.PDF)
Response.End()

3. Streaming into the "Response" with the "attachment" attribute

[c#]

Response.Clear();
Response.ContentType = "application/pdf";
Response.AddHeader("content-disposition", "attachment; filename=Document.pdf");
report.Publish(Response.OutputStream, Siberix.Report.FileFormat.PDF);
Response.End();

[vb]

Response.Clear()
Response.ContentType = "application/pdf"
Response.AddHeader("content-disposition", "attachment; filename=Document.pdf")
report.Publish(Response.OutputStream, Siberix.Report.FileFormat.PDF)
Response.End()

4. Saving to the server and redirecting to some HTML page with the link to the generated PDF document

[c#]

System.IO.FileStream stream = new System.IO.FileStream(Server.MapPath("Document.pdf"), System.IO.FileMode.Create, System.IO.FileAccess.Write);
report.Publish(stream, Siberix.Report.FileFormat.PDF);
stream.Close();

Response.Redirect("link.html");
or
Response.Clear();
Response.Output.Write("<a href=\"Document.pdf\">PDF</a>");
Response.End();

[vb]

Dim stream As System.IO.FileStream = New System.IO.FileStream(Server.MapPath("Document.pdf"), System.IO.FileMode.Create, System.IO.FileAccess.Write)
report.Publish(stream, Siberix.Report.FileFormat.PDF)
stream.Close()

Response.Redirect("link.html")
or
Response.Clear()
Response.Output.Write("<a href=""Document.pdf"">PDF</a>")
Response.End()
Q. How to embed PDF document within HTML page?
A. You can use the <EMBED> tag to embed PDF files within your HTML pages:

<EMBED src="Document.pdf" width="500" height="500"></EMBED>

For Netscape Navigator users also add the "href" attribute:

<EMBED src="Document.pdf" href="Document.pdf" width="500" height="500"></EMBED>
Q. How to specify name of PDF document in ASP.NET?
A. You may use the "attachment" attribute. This will open PDF document in a separate window:

Response.AddHeader("content-disposition", "attachment; filename=Document.pdf");

Another way is to use the last part of the URL as a name for the document:

http://www.myServer.com/pdf.aspx?filename=/Document.pdf
Q. How to show PDF document starting at a particular page?
A. You may pass a page number in the "page" parameter. See the line below:

http://www.myServer.com/myFolder/myDocument.pdf#page=5
Q. How to run Acrobat Reader from my application?
A. You may simply run Acrobat Reader and open some PDF document in it with the following lines:

using System.Diagnostics;

Process process = new Process();
ProcessStartInfo info = new ProcessStartInfo("Document.pdf");
process.StartInfo = info;
process.Start();
Q. How to assign permissions to some folder in ASP.NET?
A. You may set permissions using the following steps:

1. Select the folder
2. Select "Properties" (Right click)
3. Select "Security" tab
4. Select "Add"
5. Select "Advanced"
6. Click "Find Now"
7. Select "ASPNET" account and add it to the list
8. Set the required permissions for that account
Q. How to disable dynamic IIS compression at a page level?
A. You may use the following command line:

cscript C:\Inetpub\AdminScripts\adsutil.vbs set W3SVC/{siteID}/Root/{subfolder}{page.asp}/DoDynamicCompression False
Support
This service is available for both pre-sale customers and current subscribers with maintenance. We try to process requests within 24 hours. If you have questions about licensing, integration or want to report a bug, please do not hesitate to contact us, so we could assist you with the problem.
Contact Information
SIBERIX TECHNOLOGIES
#241 - 280 NELSON STREET
VANCOUVER, BC V6B 2E2
CANADA

Phone: +1 (778) 855 - 0655, Email: info@siberix.com
Academic Pricing
If you are qualified student, faculty member, staff member, or an accredited institution within the United States or Canada you are eligible for a 50% discount.
Small Business Support
If you are a small business company you are eligible for a major discount. Just contact our sales department, describe your company and your project and we'll find a way to provide you with the solution for the price you can afford.
Upgrade Policy
As a registered customer, you are entitled to obtain free upgrades during 6 months from the date of purchase. If you purchased the software more than 6 months ago, you are no longer entitled to obtain free upgrades. However, you can purchase an upgrade to the latest version at a greatly discounted price, and this will allow you to get free upgrades for another 6 months.
Return Policy
Siberix Technologies offers free evaluation versions of the products. Therefore, it is assumed that you have reviewed the software and are completely satisfied with its quality before effecting actual purchase. If you have not tried our free downloadable evaluation versions, please do so before purchasing the product. With knowledge of the above, no return request should be solicited by you on such basis. Our products are not refundable.
Copyright
You have our permission to print and use copies of the documents at this web site such as FAQ, User's guide, License agreement provided that:
  • All of the copyright notices appearing on such documents are included on all your copies.
  • If a document does not contain the Siberix Technologies copyright notice, then you will put the notice appearing below on your copy of the document.
  • Your use of such information is limited to personal use, informational, non-commercial purposes, and documents may not be modified or altered in any way.
Except as expressly provided herein, you may not use, download, upload, copy, print, display, perform, reproduce, publish, license, post, broadcast on any network or media, transmit or distribute any information from this web site in whole or in part without the prior written permission of Siberix Technologies.
Disclaimer
Siberix Technologies does not give any warranty or other assurance as to the operation, quality or functionality of this web site. Access to the site may be interrupted, restricted or delayed for any reason.

Siberix Technologies also does not give any warranty or other assurance as to the content of the material appearing on the site, its accuracy, completeness, timelessness or fitness for any particular purpose.

To the full extent permissible by law, Siberix Technologies disclaims all responsibility for any damages or losses (including, without limitation, financial loss, damages for loss in business projects, loss of profits or other consequential losses) arising in contract, tort or otherwise from the use of or inability to use this web site or any material appearing on it, or from any action or decision taken as a result of using this site or any such material. Siberix Technologies disclaims all responsibility and liability (including for negligence) in relation to information on or accessible from this web site.