Click here to Skip to main content
       

Press Releases

Welcome to the new Press Releases forum! Our old press release system has been retired but we've moved everything and everyone to a new, shinier home. Enjoy!

A press release must be written for the purpose of announcing something newsworthy. Advertisements, promotions, or anything smelling even vaguely of spam will be deleted. All press releases must be relevant to the development community.

 
You must Sign In to use this message board.
Search this forum  
NewsWSO2 to Present Technical Webinar on Avoiding OAuth Complexity Hell Pin
Thursday, August 16, 2012 6:55am by andrew.kinetic
WSO2 webinar on August 21, will compare OAuth 1.0a and OAuth 2.0 open authentication standards and examine implementation best practices

Palo Alto, CA – August 16, 2012 – The OAuth open authentication standard has gained popularity as businesses and consumers conduct more transactions on the Web. Key among its benefits is the ability of users to share content stored on one site with another site without having to share all their access permissions. However, developers have had second thoughts as they face incompatibility between OAuth 1.0a and OAuth 2.0 and concerns by OAuth 2.0’s former lead author that the newer standard is more complex, less interoperable, and potentially less secure (http://hueniverse.com/2012/07/oauth-2-0-and-the-road-to-hell). To help IT professionals address these concerns, WSO2 will present a webinar that examines the OAuth versions and implementation best practices.

The one-hour technical session, “OAuth 2.0: The Path to Heaven from Hell?," is being held twice on Tuesday, August 21: 9:00 a.m. – 10:00 a.m. PDT for the Americas and 10:00 a.m. – 11:00 a.m. GMT for Europe and Asia-Pacific. For more information, visit http://wso2.org/library/webinars/2012/08/oauth-2-the-path-to-heaven-from-hell.

The webinar will begin with an introduction to the pre-OAuth era. The session then will examine OAuth 1.0a and OAuth 2.0 authentication concepts, similarities and differences. Additionally, the webinar will dig into best practices for resolving the many complexities of OAuth 2.0.

The webinar will be presented by Prabath Siriwardena, WSO2 software architect and chair of WSO2’s integration technologies management committee, and Johann Nallathamby, WSO2 software engineer. Prabath plays a core role in developing the security functionality within WSO2’s platforms, and he is an Apache Software Foundation (ASF) committer, serving as a Project Management Committee (PMC) member of Apache Axis2 and actively contributing to various open source projects. Johann is a Sun Certified Java Programmer and is currently reading for his certification in management accountancy from the Chartered Institute of Management Accountants.
 
About WSO2
 
WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
 
Trademarks and registered trademarks are the properties of their respective owners.
 
GeneralSelect Attachment in PDF & Download Selected Attachment Using REST API Pin
Wednesday, August 15, 2012 1:00pm by Usman Sarfraz

This technical tip allows developers to download selected attachment in PDF file using Saaspose.Pdf REST API in your .NET applications. Saaspose.Pdf is a REST API to create, edit & manipulate PDF files. It also convert PDF file to DOC, DOCX, HTML, XPS, TIFF etc. You can create a new PDF either from scratch or from HTML, XML, template, database, XPS or an image. A PDF file can also be rendered to JPEG, PNG, GIF, BMP, TIFF and many other image formats. It works with any language like .NET, Java, PHP, Ruby, Python and many others. It is platform independent REST API & working with web, desktop, mobile or cloud applications alike.

Sample Code for downloading selected attachment in PDF file

//build URI to download selected attachment

Attachment  FileInformation = GetAttachment(1);

//build URI to get page count

string strURI = "http://api.saaspose.com/v1.0/pdf/input.pdf/attachments/1/download";

string signedURI = Sign(strURI);

Stream responseStream = ProcessCommand(signedURI, "GET");

using (Stream fileStream = System.IO.File.OpenWrite(outputPath + "\\" + FileInformation.Name))

{

CopyStream(responseStream, fileStream);

}

responseStream.Close();

public Attachment GetAttachment(int attachmentIndex)

{

 //build URI to get page count

string strURI = "http://api.saaspose.com/v1.0/pdf/input.pdf/attachments/" + attachmentIndex;

string signedURI = Sign(strURI);

 Stream responseStream = ProcessCommand(signedURI, "GET");

 StreamReader reader = new StreamReader(responseStream);

 string strJSON = reader.ReadToEnd();

 //Parse the json string to JObject

 JObject parsedJSON = JObject.Parse(strJSON);

 //Deserializes the JSON to a object. 

  AttachmentResponse attachmentResponse = JsonConvert.DeserializeObject<AttachmentResponse>(parsedJSON.ToString());

 return attachmentResponse.Attachment;

}

//Here is the BaseResponse class

public class BaseResponse

{

 public BaseResponse() { }

 public string Code { get; set; }

 public string Status { get; set; }

}

//Here is the AttachmentResponse class

public class AttachmentResponse : BaseResponse

{

public AttachmentResponse() { }

public Attachment Attachment { get; set; }

}

//Here is the LinkResponse class

public class LinkResponse

{

public string Href { get; set; }

public string Rel { get; set; }

public string Title { get; set; }

public string Type { get; set; }

}

//Here is the Attachment class

public class Attachment

{

public Attachment() { }

public Color Color { get; set; }

public string MimeType { get; set; }

public string Name { get; set; }

public string CreationDate { get; set; }

public string ModificationDate { get; set; }

public Int32 Size { get; set; }

}

//Here is the Color class

public class Color

{

public Color() { }

public List<LinkResponse> Links { get; set; }

public int A { get; set; }

public int B { get; set; }

public int G { get; set; }

public int R { get; set; }

}

About Saaspose

SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.

More about Saaspose.Pdf

Contact Information

Aspose Pty Ltd, Suite 163,

79 Longueville Road

Lane Cove, NSW, 2066

Australia

Saaspose - Your File Format Experts 2.0

sales@aspose.com


Phone: 1.214.329.1520


Fax: 866.810.9465


 
NewsWSO2 to Present IT Management Webinar on Building an ESB Evaluation Framework Pin
Wednesday, August 15, 2012 6:46am by andrew.kinetic
WSO2 webinar on August 22, will examine an ESB evaluation framework to demonstrate product similarities and strategic differences, and optimize SOA functionality
 
Palo Alto, CA – August 15, 2012 – An enterprise service bus (ESB) can help IT integration teams to implement service-oriented architecture (SOA) best practices and solve SOA anti-patterns of isolation, uniqueness and duplication. However, most teams do not develop evaluation use cases across all architectural attributes because they are difficult to measure. Instead, teams often focus on easy, identifiable product features that miss key design and deployment considerations. To help IT organizations strengthen their evaluation process, WSO2 will conduct a webinar on how to approach an ESB evaluation framework.
 
The one-hour technical session, “WSO2 Advantage Webinar: ESB Evaluation Framework," is being held twice on Wednesday, August 22: 9:00 a.m. – 10:00 a.m. PDT for the Americas and 9:00 a.m. – 10:00 a.m. GMT for Europe and Asia-Pacific. For more information, visit http://wso2.org/library/webinars/2012/08/wso2-advantage-webinar-esb-evaluation-framework. 
 
The webinar will explore how to develop a comprehensive evaluation framework that considers business requirements, constraints, and technology strategy. The proposed ESB evaluation framework will demonstrate product similarities and strategic differences for IT professionals to consider, helping to ensure that an ESB meets their organization's needs today and in the future.
 
Webinar presenter Chris Haddad is WSO2 vice president of technology evangelism. Chris works closely with developers, architects, and C-level executives to increase WSO2 technology adoption, improve the middleware platform, and maximize customer value. Previously, he was a vice president at the Burton Group and Gartner where he led research teams in advising Fortune 500 enterprise organizations and technology infrastructure vendors on adoption strategies, architecture, product selection, governance, and organizational alignment.
 
About WSO2
 
WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
 
Trademarks and registered trademarks are the properties of their respective owners.
 
GeneralDevelopers and QA Testers Agree – Software Developers Must Test Their Own Code, Typemock Survey Finds Pin
Wednesday, August 15, 2012 2:00am by manny6
Still divided regarding role, effectiveness, and necessity of QA teams
 
Tel-Aviv, August 15, 2012 – Typemock, (http://www.typemock.com/) the leading provider and pioneer of easy unit testing solutions, announced today that both software developers and QA believe that software developers need to test their own code, according to the results of their new survey. Software developers and QA testers are divided over the effectiveness of and necessity for QA teams, with developers wanting to play a bigger role in testing. The survey participants consisted of about 50 percent developers and 50 percent QA testers.
 
Developer testing is increasingly important as software is released quicker and with higher stakes. This has led to a change as companies embrace Agile, rapid development practices to ensure that they can release working software with few defects in minimal time. Almost all survey respondents agreed that developers must test the software they are coding before handing it off to QA. Respondents also noted that QA teams are not effective in finding most bugs, with almost half of the respondents claiming that QA finds 10 percent or less of the critical bugs in development.
 
When asked what the biggest value of QA is in software development, the majority of respondents said either that QA offers an extra set of eyes or tests user functionality. There was tremendous support for QA continuing manual testing, while arguing that developers need to play a bigger role in automated testing during the development process. Automated developer testing solutions give developers the ability to catch bugs they would otherwise miss and ensure working software - the paradigm of Agile software development.
 
“Classic waterfall QA testing is increasingly being phased out of software companies,” said Eli Lopian, CEO of Typemock. “Modern developers now have the right tools and processes to catch and correct bugs more effectively while in the development phase. Agile testing, with professional testers and developers working together, on the same team, and with developers engaging in quality practices such as unit testing, leads to high quality software being released on time.” This recent survey showed that software developers testing their own code is also something that both developers and software quality testers want.
 
About Typemock
The Isolator tool family enables easy unit testing of any .NET or C/C++ code (including legacy code and unwritten code).
 
Typemock was conceived in 2004 to help programmers become Agile through easy unit testing. Since the launch of the first version of Typemock Isolator in 2006, thousands of companies around the world use Typemock tools to make unit testing easy and to prevent bugs. Typemock users are developers from a wide range of sectors – such as defense, medical, and finance – that demand exceptionally high standards of quality and minimum bugs.
 
Typemock is a privately funded company based in Tel Aviv, Israel. See www.typemock.com.
 
Media Contact:
Jeremy Hess
NCSM Strategic Marketing
T: +972-547-684139
Skype: ncsm.strategic.marketing
@NCSM_PR
www.ncsm.co.il
 
GeneralWPF Viewer for Reporting Services 2008/2012 is Available Pin
Tuesday, August 14, 2012 11:15pm by Perpetuum Software
08-01-2012 – Tampa, Florida - Perpetuum Software launches WPF Viewer for Reporting Services, a native WPF component intended for displaying MS SQL Server Reporting Services reports in WPF applications.
 
“SQL Server Reporting Services is extremely popular among corporate developers, since it is a standard tool used for generating reports in companies of all sizes. It’s natural that they want to be able to use it on all platforms, including Silverlight and WPF. Since Microsoft Corp. doesn’t hurry up with development of some compatibility path between these technologies, we decided to make lives of SSRS developers easier and announce WPF Viewer for Reporting Services”, states Mikhail Payson, CTO at Perpetuum Software.
 
WPF Viewer for Reporting Services represents Reporting Services reports in native XAML format making it possible to add control to any WPF application. The reports are generated in vector format so that they can be scaled without loss of quality. Users can manipulate reports just like in native Reporting Services viewer: scroll, pan, zoom, export to all formats available in Reporting Services, drill through and drill down the reports, use parameters, and even print reports as HTML and XAML or send to physical printer.
 
WPF Viewer for Reporting Services is completely customizable. Developers can setup viewer appearance to fit corporate style. The product can be easily localized to any language to address cultural needs.
 
This is a very convenient solution, as developers don’t need to look for or think over workarounds of how to combine SSRS and WPF. No need to move to other reporting tool (which also takes much time to evaluate and examine a new product) and re-design hundreds of reports using this new product they didn’t get used to. No such problem exists with WPF Viewer for Reporting Services, now it’s possible to integrate SSRS in WPF applications with just few mouse clicks.
 
WPF Viewer for Reporting Services trial download is available here:
http://www.perpetuumsoft.com/Downloads.aspx?lang=en&pid=148
 
About Perpetuum Software:
Perpetuum Software was founded in 2002. It offers WinForms, WPF, ASP.NET, HTML5, and Silverlight software components designed for reporting and data visualization. Company headquarter is based in Russia (Barnaul) with offices in USA (Tampa), and Latin America (Brazil). It stands as Microsoft Gold Certified Partner. 6500 clients in more than 70 countries have been using Perpetuum Software products for 10 years.
 
GeneralAnyDAC for Delphi Summer 2012 v 6.0.1 released Pin
Tuesday, August 14, 2012 10:59pm by DA_Soft
Dear Sir or Madam,
 
DA-SOFT Technologies announces the immediate availability of major new version "AnyDAC for Delphi" Summer 2012 v 6.0.1.
 
Version Highlights
==================
* Support for iOS Emulator and ARM devices.
* Support for FireMonkey, including FM AnyDAC dialogs (more ).
* New Local SQL to query TDataSet's (more).
* New Centralized Cached Updates, with master-detail propagation (more).
* New DataSnap multi-tier driver.
 
And more. Please, check the detailed change log at:
http://www.da-soft.com/anydac/anydac-for-delphi-v-6.0.1.2603-released.html
 
AnyDAC for Delphi
=================
AnyDAC is an unique set of Universal Data Access Components for developing applications on Delphi, C++Builder and Free Pascal. With its powerful common architecture AnyDAC enables native high-speed direct access to Firebird, SQLite, MySQL, MS SQL Server, Oracle, PostgreSQL, IBM DB2, SQL Anywhere, MS Access, Informix, Advantage DB, DataSnap and more. For complete list of features and availability, please check:
 
* AnyDAC home - http://www.da-soft.com/anydac/
* AnyDAC shop - http://www.da-soft.com/anydac/order.html
* AnyDAC trial - http://www.da-soft.com/anydac/download.html
 
AnyDAC Core Features
====================
* Native access to Firebird, MySQL, SQL Server, Oracle, PostgreSQL, SQLite, DB2, InterBase, SQL Anywhere, Informix, Advantage Database, DataSnap and more. Including latest DBMS versions.
* Generic access to any database supported through dbExpress or ODBC data sources.
* Optimized for best possible performance. 2 times faster than dbGo, 25% faster than dbExpress.
* Reach API with 50 Delphi VCL components, including TADConnection, TADTransaction, TADQuery, TADStoredProc, TADTable, TADMemTable, TADLocalSQL.
* Unified API for cross-database access, including unified data type mapping, SQL dialect abstraction, connection aliases.
* First-class support for many database-specific features, including backup, restore, validation, SQL scripting.
* Advanced Data Access Options, including Array DML, Live Data Window mode, full Unicode support.
* Delphi 5 to Delphi XE2, C++ Builder 5 to C++ Builder XE2, Lazarus / Free Pascal on Win32, Win64, Linux32, Linux64, Mac OS X, iOS.
* Perfect integration as back-end driver for DataSnap, TMS AdvGrid, RemObjects Data Abstract, Fast Report, C4D kbmMW and more.
 
AnyDAC Natively Supported Databases
===================================
* Enterprise - Oracle, SQL Server, IBM DB2, Informix.
* Workgroup - Firebird, MySQL, PostgreSQL, SQL Anywhere, Interbase, Advantage DB.
* Database in clouds - SQL Azure.
* Desktop - SQLite, Access, Advantage DB, SQL CE, BlackFish SQL.
* Embedded - SQLite, Firebird Embedded, MySQL Embedded, Berkeley DB.
* Bridges - dbExpress, ODBC.
* Multi-Tier - DataSnap.
 
Newsletters
===========
To subscribe to the newsletter with the AnyDAC release notifications and other DA-SOFT Technologies product and company news, you can create an account at DA-SOFT web site, then go to your user profile and set "Subscribe to newsletter" to "Yes".
 
Follow us on:
* Twitter - http://www.twitter.com/da_soft
* Facebook - http://www.facebook.com/dasoft
* UserVoice - https://anydac.uservoice.com
 
--
With best regards,
DA-SOFT Technologies Team
http://www.da-soft.com
 
GeneralCodePorting Data Manager securely manages your C# and translated java projects Pin
Tuesday, August 14, 2012 7:09pm by codeporting
Codeporting team has added more features to enlarge user’s code translation experience and to secure their source code. The most important thing that is required during the translation of code is User Code Security. Codeporting makes sure that code is secure and no unauthorized person can access it. Codeporting offers the exact sort of security that any web-based code conversion application should offer.
 
Using CodePorting Data Manager, users can now manage their projetcs, libraries and data. Users can now delete their completed projects, libraries, analysis reports and repository data from codeporting. This feature is available for all customers, paid or non-paid. The paid customers will have the choice to delete selected data from codeporting account. It will enable them to remove only specific data that they want to remove and not the complete data. If you haven’t signed up yet for codeporting’s monthly plan, you can choose Bronze package and get more features for your project on codeporting.
 
The paid customers also have the option of private conversion the advantage of which is that they can delete anything related to project that is being converted using Visual studio plug-in, BitBucket or Github plug-ins. With private conversion option, once you delete your project, there would be no trace of any project file on our server and it would be permanently removed.
 
Codeporting keep s record of customer’s usage details and also measures the performance by managing the data for road maps. Users can send their analysis report data to our team to help us improve our service. For this, CodePorting team will require your permission to access your analyisis data report to add missing methods in our future road maps. CodePorting will also add these missing methods in Library for customer’s use.
 
CodePorting provides you highest security measures which protects your code from hackers and other competition by offering you the best code conversion experience.
Codeporting offers password protceted subscription and users can securely manage their data using Data Manager. Users can subscribe for monthly pricing plans for more features of data management and code security.
 
Newly added articles and documentation pages
 
- CodePorting Data Manager securely manages your C# and translated java projects
- CodePorting has converted more than 5 Million lines of C# code to Java
- Convert C# is Operator to instanceof Operator in Java
- List of Conversions Supported by CodePorting C#2Java Engine
 
About CodePorting C#2Java App
 
CodePorting helps you make your .NET applications cross platform compatible and allows migrating your .NET solutions, projects and files into Java in the cloud. Other than speed and accuracy of conversion; port your C# code directly either by uploading .cs files contained in a .zip file or import directly from popular version control repositories like GIT, Mercurial HG and SubVersion. You can also download a Microsoft Visual Studio plugin and convert C# code in the real time without leaving the development environment. You may also build your own customized code conversion applications using CodePorting APIs.
 
Read more about CodePorting
 
- Start converting C# Apps and source code to Java
- CodePorting Homepage
- CodePorting C#2Java Homepage
- CodePorting Documentation
- Watch out CodePorting introductory video
 

Contact Us
 
Suite 163, 79 Longueville Road
Lane Cove, NSW 2066, Australia
Codeporting – Your CodePorting Experts
Skype Name: CodePorting
Email: support [@] codeporting [dot] com
 
GeneralRevision API Changes & Improved Table Handling in .NET & Java Apps Pin
Tuesday, August 14, 2012 12:47pm by Usman Sarfraz

What's New in this Release?

 

The long awaited version of Aspose.Words for .NET & Java (11.6.0) has been released. Aspose.Words now supports revision public API. Revisions (tracked changes) are a feature built-in to Microsoft Word which stores all modifications made to a document during editing. The brand new API provides features like Access individual or all revisions in a document, Get/Set individual revision properties, Accept/Reject individual or all revision, retrieve the type of the revision and many more. Also Aspose.Words now provides the functionality to “cancel” a task if requested by the user. For instance, if a large document is deemed to be taking too long to convert then the process can be interrupted. The list of most notable new and improved features in this release are listed below


  • Revision public API ready;
  • Support for Hidden table rows;
  • Improved handling of Alternate content;
  • Different default style templates for 2003/2007 documents;
  • Significant improvement of table width handling;
  • Numerous improvements in TOC update. TOC now looks identical to MS Word in almost all test cases;
  • Child fields (including SET) located in the false argument of the IF field are not updated anymore (like MS Word does);
  • Allow rejecting revisions
  • Support signing produced PDF documents
  • Support digital signatures of documents on java.
  • Support encryption of produced Pdf documents
  • Do Font Fallback in Java as .Net does automatically
  • Make Aspose.Words for Java interruptable using Thread.interrupt()
  • Add feature to get the total count of the revisions for document and the author for each revision.
  • Hidden table becomes visible when open/save the document in WML or DOCX format.
  • Warn user during load and save operations when document contains unsupported features.
  • Consider exposing formatting revisions.
  • Consider making Aspose.Words Interruptible
  • Tables overlap each other after rendering is fixed
  • Document Body is lost on open/save is resolved
  • Implement Load and Save warnings for RTF format
  • Support comment localization
  • Support HideMark for DOC.
  • /rtl/ Add support of rotated text in RTL table
  • GroupShape is moved in previous Page in PDF
  • refine parsing indexed bitmaps with alpha
  • all digital signature tests should pass
  • red and blue swapped in some peculiar pictures with palette
  • Document.getDigitalSignatures needs to be cast before iteration
  • Rendering metafiles to bitmap needs in improved scaling to shape size.
  • Conform the crypto library license
  • Support System.Drawing.Color.Transparent
  • Extra tabs are added after open/save document using AW is now fixed
  • Table inside cell Content wrapping/fitting problem is resolved.
  • Table position changed in exported PDF file is fixed
  • Image overlaps when converting DOCX to PDF is now fixed
  • Table position change after appending one document to another is now fixed
  • Enhanced conversion of dotx to doc
  • Table widths calculation is corrected in Fixed Page Formats
  • Doc to Pdf conversion issue with text alignment in table's cell is resolved.
  • Aspose.Word do not preserve table's row options on re-save the document is fixed
  • Improved OLE refactoring.
  • Doc to Pdf conversion issue with layout and page break is fixed
  • Incorrect line Y for line starting a page is fixed
  • Update the documentation for loading TXT format
  • Automatically copy DLL to UEX for online docs is now fixed
  • Heading style changed is fixed after processing DOCX document.
  • Improved Shape fill (DOC to PDF)
  • MS Word 2003 crashes upon opening DOC file produced by Aspose.Words is now fixed
  • /table grid/ Table layout is corrected after rendering.
  • Roman page numbers shows as Arabic in TOC is now fixed
  • Line color change during rendering is resolved.
  • TOC is now correctly updated by Aspose.Words
  • Back slash is changed to ¥ after rendering.
  • TOC is corrected after update fields.
  • Numbers flip is fixed after converting RTL documents to HTML
  • EMF image squashed vertically when render in Pdf format is fixed
  • Mail merge issue with IF statement containing SET is now fixed
  • UpdateFields now updating the TOC correctly
  • List Tab position is now calculated correctly upon conversion
  • Table cell width increases is fixed upon conversion/rendering
  • Table cell widths reduction is fixed upon conversion/rendering
  • HTM to Doc conversion issue with image is fixed
  • Information lost while loading RTF file is fixed
  • Doc to Pdf conversion issue text is misplaced is fixed
  • Incorrect missing glyph font metrics leads to an extra page
  • Rendering mail merge fields in header/footer shows code instead of value.
  • Doc to PDF conversion issue with table border alignment is resolved.
  • Metafile image is rendered now correctly when saving to PDF/XPS

Other most recent bug fixes are also included in this release

Newly added documentation pages and articles


Some new tips and articles have now been added into Aspose.Words for .NET documentation that may guide you briefly how to use Aspose.Words for performing different tasks like the followings.



  • How to Specify How Fonts are Embedded in Adobe PDF Format
  • How-to Apply Custom Formatting during Mail Merge
  • Overview: Aspose.Words for .NET

    Aspose.Words is a word processing component that enables .NET applications to read, write and modify Word documents without using Microsoft Word. Other useful features include document creation, content and formatting manipulation, mail merge abilities, reporting features, TOC updated/rebuilt, Embedded OOXML, Footnotes rendering and support of DOCX, DOC, WordprocessingML, HTML, XHTML, TXT and PDF formats (requires Aspose.Pdf). It supports both 32-bit and 64-bit operating systems. You can even use Aspose.Words for .NET to build
    applications with Mono.

    More about Aspose.Words for .NET


  • Homepage Aspose.Words for .NET
  • Homepage Aspose.Words for Java
  • Download Aspose.Words for .NET
  • Download Aspose.Words for Java
  • Demos for Aspose.Words
  • Online documentation of Aspose.Words
  • Post your technical questions/queries to Aspose.Words Forum
  • Receive notifications about latest news and supported features by subscribing to Aspose.Words Blog
  • Contact Information

    Aspose Pty Ltd

    Suite 163, 79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Aspose - Your File Format Experts

    sales@aspose.com


    Phone: 888.277.6734

    Fax: 866.810.9465


     
    NewsWSO2 San Diego Workshop Explores How to Deliver Business Services Through APIs and Create an AppFactory to Drive a Vertical PaaS Pin
    Tuesday, August 14, 2012 7:38am by andrew.kinetic
    One-day workshop on August 29, will examine best practices for delivering RESTful APIs and creating new monetization models by exposing APIs on a vertical PaaS
     
    Palo Alto, CA – August 14, 2012 – Increasingly, managed APIs are at the heart of enterprise IT strategies for extending business processes and services to customers, partners, and other groups within the organization. In a one-day workshop for IT architects and developers, WSO2 http://wso2.com) will examine:
     
    * Best practices for delivering RESTful APIs, dynamic API service levels, and API governance.
     
    * New monetization models that can be achieved by deploying a vertical platform-as-a-service (PaaS) and exposing business APIs to partners and customers.
     
    * How to create an “AppFactory” to host partner applications while maintaining compliance, monetization, customer ownership, and project visibility.
     
    The one-day workshop, “Deliver Your Business as an API and Create an AppFactory,” will be held in San Diego on Wednesday, August 29, from 9:00 a.m. – 4:00 p.m. To register, visit http://wso2.com/events/workshops/2012-august-san-diego-deliver-your-business-as-an-api-and-create-an-app-factory-workshop.
     
    Maximizing API Assets
     
    The workshop is designed for IT architects and developers seeking to build effective RESTful APIs that can be used across different business domains. It will explore how to expose heterogeneous back-end assets—such as services, data, processes and rules—as RESTful APIs in a quick, simple and architecturally sound manner, using the WSO2 API Management Platform based on award-winning WSO2 Carbon enterprise middleware (http://wso2.com/products/carbon).
     
    The workshop also will examine how organizations can go beyond foundational use cases to address API lifecycle development activities, monetize API assets, and offer personalized behavior across multiple business channels. Additionally, the event will preview the WSO2 AppFactory http://wso2.com/solutions/app-factory, currently in beta, and how it can be used with the WSO2 Stratos cloud middleware platform (http://wso2.com/cloud/stratos). Among the use cases explored will be how to create domain-specific PaaS environments, connect development with deployment, and present a partner ecosystem platform that offers personalized digital business behavior across multiple business channels and partners.
     
    The workshop will be organized along six topics.
     
    Beyond the APIs: API Store and Your Business as an API will discuss how enterprise API patterns can encourage API consumption and reuse. An API store process pattern enables potential consumers to discover APIs, match business requirements, subscribe to APIs, and gain access credentials. The “Your Business as an API” pattern delivers a cloud-based API hosting infrastructure, which augments the API by enabling multi-tenancy, self-service configuration, billing and metering, and control. Overall, this pattern covers how a vertical PaaS takes business APIs into the enterprise and out to partners, suppliers and customers.
     
    Beyond the API: API Architecture and API Governance will look at how to meet business requirements by designing an elegant, consumable RESTful API using basic REST methods. The approach will follow REST methods, principles, and best practices for designing and building an API. It also will address how to enhance an API using RESTful techniques—such as Hypermedia as the Engine of Application State (HATEOS) and Multipurpose Internet Mail Extensions (MIME) types. The session also will cover API governance basics.
     
    Creating REST APIs will examine how to publish RESTful APIs that are exposed with a REST binding by using the Java REST API, JAX-RS, as well as how the WSO2 Application Server can be used to host JAX-RS.
     
    Promoting, Managing, and Protecting APIs will review how the new WSO2 API Manager (http://wso2.com/products/api-manager) exposes APIs, binds wire protocols, implements Open Authorization (OAuth) authentication, monitors API usage, and monetizes API activity. The session will look at how developers can rapidly find, subscribe to, and evaluate APIs. It also will highlight how API providers can secure, protect and monitor API resource interactions.
     
    API Adoption Plan will explore how to develop a pragmatic adoption plan to successfully build, publish, govern, configure, personalize and monetize APIs.
     
    AppFactory Acceleration will present common software delivery and ecosystem challenges, and explain how an environment that connects software delivery gaps can accelerate business delivery. Additionally, the session will demonstrate how an AppFactory providing a domain-specific PaaS can increase business agility.
     
    Workshop Presenters
     
    Chris Haddad, WSO2 vice president of technology evangelism, works closely with developers, architects, and C-level executives to increase WSO2 technology adoption, improve the middleware platform, and maximize customer value. He has been charting a vision toward “Cloud 2020,” both in his current role and as a former research vice president at the Burton Group and Gartner. In his previous analyst roles, Chris also led research teams in advising Fortune 500 enterprise organizations and technology infrastructure vendors on adoption strategies, architecture, product selection, governance, and organizational alignment.
     
    Asanka Abeysinghe, WSO2 director of solutions architecture, provides consulting and training for enterprise IT architects and developers. He also focuses on the company’s vertical market capabilities, including financial services. Asanka has more than a decade of experience implementing projects, from desktops and Web applications to highly scalable distributed systems and SOAs, mobile platforms, and business integration solutions.
     
    About WSO2
     
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
     
    NewsLEADTOOLS Press Release Announcement Pin
    Tuesday, August 14, 2012 3:32am by LEADTOOLS Support
    LEAD Technologies is about to issue a press release announcing a major update to LEADTOOLS Version 17.5 on Tuesday, August 14th.

    LEAD Technologies is pleased to announce the release of a major update to LEADTOOLS Version 17.5. This free upgrade, available to registered v17.5 users and LEADTOOLS annual maintenance customers, is highlighted by many new features and enhancements within the Document, Medical, Imaging and Vector product lines.
    After the successful release of HTML5 toolkits for Document and Medical imaging earlier this year, LEAD has added significant new features, enhanced the user-interface tools and accelerated the overall performance of these toolkits. Both the document and medical HTML5 image viewer controls received major improvements to their ease of use, image display quality, and browser compatibility. Additionally, many new features and enhancements were added to the Zero Footprint HTML5 DICOM Viewer and its customizable web application, further establishing LEADTOOLS as the most powerful zero footprint DICOM SDK on the market.
    "The positive response and feedback we received when we first brought our HTML5 SDK to market was outstanding," stated Otis Goodwin, Manager of LEADTOOLS Developer Support. "The great thing about HTML5 is that it is extremely extensible and our design takes into account that our customers will want us to add features quickly. In just a few short months, we have been able to add significant new functionality to our HTML5 offerings, with many features being added based on inventive feature requests made by our early adopters."
    In addition to the HTML5 modules, various technologies throughout the LEADTOOLS product line were revamped and upgraded including OCR, PDF, Barcode, Medical Viewer, DICOM, PACS, 3D, formats and more. The extensive and diverse technology in the LEADTOOLS Document Engine received many improvements in speed, recognition accuracy, document formats supported and searchable text output quality. Medical Imaging developers will enjoy some incredible new features and enhancements to the Medical Viewer Control, which was significantly upgraded across all programming interfaces. Finally, the Imaging and Vector engines received several updates improving and extending their file format support.
    For more details on all of the additions, updates and enhancements to LEADTOOLS 17.5, please visit http://www.leadtools.com/corporate/new-in-v175-update.htm.
    About LEAD Technologies
    Since 1990, LEAD Technologies, Inc. has been a global leader in the imaging developer toolkit market, providing programmers with feature-rich tools to image-enable their software applications. LEAD Technologies pioneered the fastest software-only image compression and continues to lead the field in advancing new imaging technologies and offering those technologies to programmers worldwide.
    LEADTOOLS Support
    LEAD Technologies Inc.
    LEADTOOLS Imaging SDK Home Page

     
    GeneralViklele Associates releases Black Diamond SCADA 1.6 Pin
    Monday, August 13, 2012 6:42am by Vikram Lele
    Black Diamond SCADA 1.6 is packed with innovative features to simplify building robust industrial process control and monitoring solutions. Key enhancements in Black Diamond 1.6 include:
     
    * Enhanced Data Logging Support: Report data can now be logged to MS SQL Server and MS Access besides existing support for MySQL.
    * Simplified data collection: Innovative accumulator tags that allow you to perform time counting, pulse counting and consumption calculation without having to write complex scripts. These are common everyday requirements in a production environment which typically require elaborate scripting.
    * Enhanced security that allows complete control on actions that can be performed by different users.
    * Enhanced Windowing support with different windowing modes for various SCADA screens.
    * More pre-canned reports: Now create shift wise aggregation report generation besides daily, monthly and yearly reports.
    * More symbols for professional mimic diagrams. Enhanced symbol library includes new container symbols.
    * Improved usability in alarm management. Alarm grouping, filtering and acknowledgement access control.
    * Improved Project Protection with support for project encryption / protection through password for safeguarding your intellectual property.
     
    Black Diamond SCADA v1.6 is available for immediately download.
     
    Further details regarding features of Black Diamond SCADA v1.6 can be obtained from our website http://www.remocs.com or by contacting at info@remocs.com
     

    ###
    About Viklele Associates
     
    Viklele Associates is a software solutions provider based in Pune, India. We specialize in process monitoring, process control and industrial automation solutions across multiple industry verticals. Our Reporting Monitoring and Control Solutions (REMOCS) are highly scalable, configurable and easy to use. We closely work with our system integration partners to provide the most optimal solutions for your requirements.
     
    All product and company names herein may be trademarks of their respective owners.
     

    For more information:
     
    Viklele Associates,
    Plot No. 17, Satprakash Bungalow; Survey No. 46/5,
    Advait Nagar, Paud Road
    Pune 411038, INDIA
     
    Phone: +91 (20) 2543 5138,
    Email: info@remocs.com
    Web: http://www.remocs.com
    ______________________________________________________
    Black Diamond SCADA - Process Automation Easy As It Should Be
    http://www.remocs.com

     
    GeneralAdding Watermarks Images & Text to Word Documents Using REST API Pin
    Sunday, August 12, 2012 12:47pm by saaspose

    What’s new in this release?

    Saaspose development team is very happy to announce the new release of Saaspose.Words. This release allows developers an exciting and useful feature for your documents. You can add watermarks to documents including Word documents using Saaspose.Words REST API. You can give your documents more professional and refined look by adding watermark image or text to the documents. Saaspose.Words provides the best solution to customize your documents through these simple yet useful features. You can add watermark images to your documents or you may choose to add watermark text to the documents. Using Saaspose.Words REST API, adding watermark images and text to your documents is quick, reliable and the quality of document formatting is retained.We have SDK and REST examples for Saaspose.Words REST API that help you utilize it for your applications in the cloud. You can refer to Saaspose.Words documentation for more information about its examples and features. Using Saaspose.Words API, you can customize and enhance the appearance of your documents with the valuable addition of image watermarks or text watermarks.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose.Words documentation that may guide you briefly how to use Saaspose.Words for performing different tasks like the followings.

    Overview: Saaspose.Words

    Saaspose.Words is a platform independent REST API used for cloud based document creation, manipulation & conversion. It allows converting document to DOC, DOCX, XPS, TIFF, PDF, HTML, SWF & many other formats. It can be used languages like .NET, Java, PHP, Ruby, Rails, Python, jQuery & many others. It can also be integrated with other cloud services to process documents. Other features include Create & modify watermark, content & formatting manipulation, mail merge abilities, reporting features.

    More about Saaspose.Words

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465


     
    GeneralFederal Bank selects Fiorano ESB for Infosys Finacle core banking and retail channel integration Pin
    Friday, August 10, 2012 7:03am by Mainten33
    Banking leader to revolutionize customer service levels and rapidly roll-out new revenue channels with Fiorano middleware integration layer
     
    (Palo Alto, CA) — Fiorano Software (www.fiorano.com), a leader in enterprise integration and messaging middleware solutions, announced today that the Fiorano ESB has been deployed by Federal Bank, a major Indian commercial bank with a network exceeding 1000 branches, to streamline its operations and accelerate roll- out of value added services through multiple channels.
     
    “Competing in the banking and financial services market today requires cutting edge technology, said Mr. K.P. Sunny, Head of Information Technology at Federal Bank. “ Customers are no longer content to wait so responsiveness, accuracy and customer service delineates the leaders from the laggards. Federal Bank made a conscious decision to invest in Fiorano ESB as its solution of choice. The power of the product is in its architectural simplicity which allows the Bank to put in place a flexible architecture that will scale linearly and allow business decisions to be speedily implemented at the IT level,” he added.
     
    Federal Bank is using over 30 retail banking related applications from various vendors including Infosys’ Core banking platform FINACLE running on mixture of hardware including IBM AIX servers. As part of their expansion plans to increase the number of value added services to its customers, the bank wanted to provide near real-time availability of foreign exchange remittances through SWIFT and had ambitious plans to build a multichannel payment gateway, besides expanding their kiosk facilities and ATM network.
     
    After a detailed evaluation, the bank concluded that many of the offerings from traditional large stack vendors, though feature rich, were not simple and cohesive. Implementation and deployment with such traditional stacks would necessarily require significant custom coding and extensive use of consulting services leading to a high cost structure.
     
    After conducting a rigorous proof-of-concept, the Architectural and IT team at Federal Bank picked Fiorano as the preferred solution that met all of its criteria. Fiorano was selected over larger traditional stack solutions primarily for its ease of use, low learning curve, near linear scalability, software-based high availability, reliability, security and error handling capabilities. The end result will be massive savings in maintenance of their current integration code.
     
    Using the Fiorano ESB to integrate their core banking infrastructure, Infosys FINACLE and multiple retail channels including their SWIFT partners, the bank can now rapidly roll out a myriad of value added services through multiple delivery channels including ATMs, kiosks, hand-held devices, mobile and internet. Fiorano’s architecture supports an incremental deployment model, enabling deployments to be more modular and standardized, less risky and less expensive.
     
    “With readily available, reasonably priced consulting services in India there is always a temptation to try and continue custom development for every project with a point-to-point style of integration,” said Sunny. “The question is how big you want to be and how fast you want to grow. The largest and best banks have shown that a solid middleware infrastructure is the secret to building an agile bank ready to roll out any new service that the market asks for. Revenue acceleration is only possible through cutting edge technology. This is the bottom line for us and we have chosen to go with Fiorano for precisely this reason,” he concluded.
     
    Read the detailed case study at www.fiorano.com/customers/casestudies/federal-bank.php.
     
    About Federal Bank (www.federal-bank.com)
    Federal Bank Limited (NSE: FEDERALBNK, BSE: 500469, LSE: FEDS) is a major commercial bank listed on the Bombay and London stock exchanges and is headquartered in India. As of July 2012, it has over 1000 branches spread across 24 states in India and 1029 ATMs around the country (across 108 metro centers, 224 urban centers, 384 semi-urban locations and 87 rural areas). Federal Bank, with its wide range of products and services, is a financial supermarket providing banking services, e-trading (Fed –e-trade), foreign currency, internet banking (FedNet) and mobile banking (Fedmobile) among others.
     
    About Fiorano (www.fiorano.com)
    Founded in 1995, Silicon Valley based Fiorano is a California Corporation with proven leadership in enterprise middleware and peer-to-peer distributed systems. Fiorano's innovative event-driven, dataflow SOA platform integrates applications and complex technologies into an enterprise nervous system, increases business process performance, yields higher message throughput and enhances availability through agent-based visual composition that bridges the capability gap between business models and their implementation – the model is the application, ready to run.
     
    Global leaders including ABN AMRO, Credit Agricole, Rabobank, SSP Insurance, EHL, Markit, Thomas Weisel Partners, YLE, Schlumberger, Fraikin, Toyota, DHL Aviation, US Coast Guard, NASA, Kent County Council, United Spirits, Takata, POSCO Steel, Vodafone and Korea Telecom have deployed Fiorano to drive innovation through open, standards-based, dataflow SOA applications built in just days, yielding unprecedented productivity.
     
    Fiorano Enterprise Service Bus (ESB) and FioranoMQ (Message Queue) deliver the industry fastest, lowest latency, highest throughput real-time messaging (asynchronous and synchronous) to power high performance, highly available, and collaborative workflow applications whose application services are distributed throughout the IT landscape. Fiorano Cloud Platform, built on the Fiorano Cloud ESB (Enterprise Service Bus), a hybrid ESB Platform integrates applications across SaaS, PaaS and on-premise worlds.
     
    Media Contact: Media and Analyst Relations, mediarelations@fiorano.com
     
    GeneralGet Color Scheme & Formatting Info of a Slide or Presentation in Cloud Pin
    Thursday, August 9, 2012 12:44pm by saaspose

    What's New in this Release?

    Saaspose development team is proud to announce the new release of Saaspose.Slides. This release provides the ability to get formatting information of a slide using Saaspose.Slides REST API. Saaspose.Slides allows you to get color scheme of your presentation or a particular slide.  You may choose to get font scheme of the slides in your presentation. Saaspose.Slides offers the best services to provide you the best solutions for manipulating your presentation and getting the formatting information in the cloud. You can refer to our documentation for a complete overview of Saaspose.Slides features and examples. Getting started with Saaspose.Slides is quite simple and quick, download the required SDKs and take your document manipulation experience to next level. You can utilize our SDK and REST examples to get the formatting information of a slide by using Saaspose.Slides features in your applications and enhance the performance and productivity. Saaspose.Slides is a platform independent REST API and can be used on any platform of your choice to manipulate various aspects of your presentations. You can also integrate Saaspose.Slides with other Saaspose APIs to combine the powerful features of multiple APIs and achieve quality goals in the cloud.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose.Slides documentation that may guide you briefly how to use Saaspose.Slides for performing different tasks like the followings.

    Overview: Saaspose.Slides

    Saaspose.Slides is a REST based API that allows developers to read, write & modify a PowerPoint presentations in cloud. It is platform independent API & can be used by developers in web, desktop, mobile & cloud applications alike. It provides a rich set of features like creating presentation from scratch, modify various aspect of a presentation & converting a presentation to PDF, XPS, TIFF, SVG, HTML, PNG, JPEG, GIF & BMP formats. It helps you add, modify or extract text from the presentation.

    More about Saaspose.Slides

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465


     
    GeneralSoftFluent announces release of CodeFluent Entities for Visual Studio 2012 in August Pin
    Thursday, August 9, 2012 6:27am by SoftFluent
    Paris, FR — August 9th, 2012 — SoftFluent announces today that CodeFluent Entities and its Visual Studio integrated graphical editor will run within the final version of Visual Studio before August 31st 2012. CodeFluent Entities was updated to following the look & feel of Visual Studio 2012.
    CodeFluent Entities allows developers to generate components such as scripts (e.g. T-SQL, PL/SQL), code (C#, VB), web services (e.g. WCF, ASMX, JSON) and UIs (e.g.ASP.NET, SharePoint, WPF, Silverlight). The code generation process is model-first and continuous: from your declarative model, a meta-model will be inferred which code generators will then translate into code. Over 20 code generators (a.k.a. ‘producers’) are provided ‘out of the box’ and that can be combined to obtain your own application following your desired architecture, using your desired technologies.
    Since your application development is driven from this model, your business logic is decoupled from the technology and allows you to absorb changes faster and smoother: apply changes in your model to update all your layers consistently or add/switch technology by changing your used code generators. CodeFluent Entities is designed for the .NET platform and empowers users to streamline developments on major Microsoft platforms and technologies such as SQL Server, C#, VB.NET, WCF, ASP.NET, WPF, Windows 8, SharePoint, SQL Azure, third-party databases and more.
    “Aligning closely to Microsoft Visual Studio 2012, the latest version of Microsoft’s integrated development environment (IDE), we are demonstrating our commitment to the Microsoft developer community to help them keep up with the quick innovation pace” said Daniel Cohen-Zardi, SoftFluent Chief Executive Officer. “Embracing the upcoming Windows 8 wave, CodeFluent Entities already implements a similar design style and will help you generate both .NET and WinRT applications with a consistent approach.”
    “Core to Visual Studio 2012 is its focus on integrating teams, streamlining development and providing developers a complete tool box to build leading applications efficiently," said Tom Lindeman, Director of the Visual Studio Industry Program at Microsoft Corp. "SoftFluent's innovative CodeFluent Entities, released in time with our new products, reduces the effort required by developers to stay up to date with technology and remain productive."
     
    About SoftFluent
     
    Created in 2005, SoftFluent is a software engineering company. Its CodeFluent Entities software factory generates ready-to-use components starting from a both industrial and pragmatic modeling approach.
    #########
    All product and company names herein are trademarks of their respective owners
     
    GeneralExtract Non-English Characters from PDF & PDF Conversion to Image Format Pin
    Wednesday, August 8, 2012 12:52pm by Usman Sarfraz

    What's New in this Release?

    The latest version of Aspose.Pdf for .NET (7.2.0) has been released. This new release provides support for converting PDF files to image formats. Please note that recently we have fixed many issues with PDF to PNG, JPEG and TIFF conversion to improve the memory use and performance of this feature. The product has been tested in a multi-threaded environment and now supports this   support than earlier versions. The text extraction feature is also improved to where it can easily extract non-English characters from PDF files. We have also improved the PDF printing. Other improved features are PDF file concatenation, HTML to PDF conversion, PDF form signing, text stamping, PDF to PDF/A conversion and many other features. This release includes plenty of new and improved features as listed below

    • Turn on the "Extend Forms Fill-In & Save in Adobe Reader" privilege
    • Request to add a function which return a list of the fields imported or not imported by Aspose.Pdf.Facades.Form.ImportXfdf method
    • Provide support to get byte[] buffer from Aspose.Pdf.Document
    • Disabling showing of CheckBox border
    • CreateBookmarks Error is fixed after migrating to Aspose.Pdf
    • Problem resolved while printing the PDF document with images
    • Formatting Issues in Xsl-FO to PDF Conversion is resolved
    • After fields were filled with values from XML radio buttons become usability is fixed
    • An error exists on this page. Acrobat may not display the page correctly
    • PXDecode fails with out of memory with large images
    • PDF to Image Conversion Problem
    • Conversion problem from PDF document to TIFF image is fixed
    • PDF to JPG conversion issues are resolved.
    • Text displaying on resultant Image generated from PDF file is not in good quality
    • Problem resolved when opening the attachments in PDF file
    • Flatten Method is now working properly
    • Signature missing is fixed when printing the PDF document
    • Fix transparent images blending in CMYK color space
    • Hidden layers visibility in PDF is fixed when converted JPEG
    • Unicode text is now properly being extracted from PDF file
    • Once the BarCode is added over PDF file, an error message is appearing while opening it is fixed
    • Improved HTML to PDF conversion
    • Accentuated characters issue in signature is fixed
    • Images are present when converting PDF to DOC format is fixed
    • Printing the attached PDF file, produces invalid results
    • Watermark is now added on all pages of PDF
    • Document margin disturbance is fixed when PDF document is printed using Aspose
    • PDF AddStamp. Text is truncated even page has sufficient space to accommodate it
    • PDF to Doc conversion formatting issues are resolved.
    • When extracting pages from PDF file, the contents get corrupted is now fixed
    • Problems with Aspose.Pdf.Facades.Form and import xml is fixed
    • StampInfo loses fixed while rotation of pdf page
    • PDF/A to JPG - missing text issue is fixed
    • Issue while converting PDF to PDF/A
    • Leading spaces dropped in output PDF
    • Error accessing FormFieldFacade for PDF Fields

    Other most recent bug fixes are also included in this release.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Aspose.Pdf for .NET documentation that may guide you briefly how to use Aspose.Pdf for performing different tasks like the followings.

    Overview: Aspose.Pdf for .NET

    Aspose.Pdf is a .Net Pdf component for the creation and manipulation of Pdf documents without using Adobe Acrobat. Create PDF by API, XML templates & XSL-FO files. It supports form field creation, PDF compression options, table creation & manipulation, graph objects, extensive hyperlink functionality, extended security controls, custom font handling, add or remove bookmarks; TOC; attachments & annotations; import or export PDF form data and many more. Also convert HTML, XSL-FO and MS WORD to PDF.

    More about Aspose.Pdf for .NET

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Aspose - Your File Format Experts

    sales@aspose.com

    Phone: 888.277.6734

    Fax: 866.810.9465


     
    NewsWSO2 to Present Technical Webinar on Moving eGovernment to the Cloud Pin
    Wednesday, August 8, 2012 7:25am by andrew.kinetic
    WSO2 webinar on August 15, examines a cloud architectural approach for distributed organizations to optimize scalability, minimize costs, and ensure governance and security

    Palo Alto, CA – August 8, 2012 – Today eGovernment promises a means for cost effectively delivering information and enabling transactions among the citizens residing within a local geography, as well as the different governmental groups supporting them. However, the role of eGovernment has been limited by the inherent cost and complexity of integrating and managing traditional server-based systems. To address this challenge, WSO2 will present a free webinar on how government agencies can harness the cloud to radically scale the delivery of services while minimizing the expenses related to IT infrastructure, application development and deployment, and operations.

    The one-hour technical session, “Moving eGovernment to the Cloud," is being held twice on Wednesday, August 15: 9:00 a.m. – 10:00 a.m. PDT for the Americas and 10:00 a.m. – 11:00 a.m. GMT for Europe and Asia-Pacific. For more information, visit http://wso2.org/library/webinars/2012/08/moving-egovernment-cloud.

    Moving eGovernment to the Cloud
     
    The webinar will explore an architectural approach for maintaining a central platform-as-a-service (PaaS) that works in concert with local private cloud platforms to efficiently leverage computing resources across platforms and locations—while ensuring proper governance. The session also will examine how this architectural model works equally well in the government and in the private sector among enterprises with multiple locations.

    A related white paper, “Moving eGovernment to the Cloud,” can be downloaded at http://wso2.com/whitepapers/moving-egovernment-to-the-cloud.

    The webinar will be presented by Chintana Wilamuna, WSO2 senior technical lead on the WSO2 solution architecture team, who focuses on infrastructure development. Chintana is an Apache Stonehenge committer, who specializes in cloud computing, distributed and parallel computing, high scalable architectures, programming languages, and functional programming. Additionally, he started the WSO2 Web Services Frameworks for Ruby and Perl.
     
    About WSO2
     
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
     
    GeneralAdd, Modify & Delete Single or Multiple Charts in Worksheets in Cloud Pin
    Tuesday, August 7, 2012 12:43pm by saaspose

    What’s new in this release?

    The latest version of Saaspose.Cells allows developers to add charts in worksheets to give a graphical representation of your data. You can add single or multiple charts in your worksheets. These charts can be placed anywhere in the workbook, resized and you may choose to customize the charts settings. You can also delete charts from worksheets using Saaspose.Cells REST API. You can delete a single or multiple charts from the workbook. Saaspose.Cells is a platform independent REST API that can be used in any language, across any platform. You can add & delete charts in workbooks easily using the feature rich Saaspose.Cells REST API. We have SDK and REST examples for Saaspose.Cells REST API that help you utilize it for your applications in the cloud. Saaspose.Cells collaborates with other File Format APIs to enhance your experience of document manipulation in different file formats such as word processing, images, slides and PDF based file formats. Also, Saaspose.Cells integrates easily with other Saaspose APIs for working with BarCode, Email and OCR.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose documentation that may guide you briefly how to use Saaspose APIs on Amazon S3 Storage for performing different tasks like the followings.

    Overview: Saaspose.Cells

    Saaspose.Cells is a REST based API for processing spreadsheets in the cloud. It allows creating, manipulating and converting spreadsheets in your web, desktop, mobile and cloud applications. It supports rows, columns, cells, text, data, images, hyperlinks, comments, formulas & many other aspects of spreadsheet. It can be used with any language to incorporate the spreadsheet processing features in any type of business application. It is a platform independent API & can be used with any language.

    More about Saaspose.Cells

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465


     
    NewsWSO2 Workshop on WSO2 Integration Platform Discovery and Role of the ESB Within an SOA Comes to Palo Alto and Colombo Pin
    Tuesday, August 7, 2012 8:23am by andrew.kinetic
    One-day technical workshop will explore how to successfully implement a service broker pattern for connectivity, mediation, process orchestration, and security using an ESB model

    Palo Alto, CA – August 7, 2012 – Today enterprise application integration (EAI) best practices are based on service-oriented architecture (SOA) principles and a flexible, highly capable enterprise service bus (ESB). In a one-day workshop for IT architects and developers, WSO2 technology executives will explore how to successfully implement a service broker pattern for connectivity, mediation, process orchestration, and security with an ESB model. The workshop, “WSO2 Integration Platform Discovery,” which runs 9:00 a.m. – 4:00 p.m., is being held in two locations:
     
    * Palo Alto, Wednesday, August 15, 2012, to register, visit: http://wso2.com/events/workshops/2012-august-palo-alto-wso2-integration-platform-discovery-workshop
     
    * Colombo, Wednesday, August 22, 2012, to register, visit: http://wso2.com/events/workshops/2012-august-colombo-wso2-integration-platform-discovery-workshop

    The Role of an ESB within a SOA
     
    The workshop is designed for IT architects and developers seeking to obtain a high-level architectural understanding of how ESBs fit within an SOA. It will explore how enterprises can connect, mediate, orchestrate and manage interactions between application integration consumers and providers using the WSO2 Enterprise Service Bus in conjunction with other components of the WSO2 Carbon enterprise middleware platform (http://wso2.com/products/carbon). Workshop session topics will include:
     
    * An overview of ESB architecture, the role of an ESB within an SOA, and the benefits of loosely coupled application architectures.
     
    * Understanding core ESB capabilities, including mediation, transformation, routing, messaging, queuing and eventing.
     
    * How to connect to services and APIs using lightweight JSON/XML, HTTP APIs, and adapters for the Health Level 7 (HL7) interface, Financial Information eXchange (FIX) protocol, SAP, Salesforce.com, and PayPal.
     
    * The role of an ESB in process orchestration, security, governance, complex event processing (CEP), and business activity monitoring (BAM).

    Palo Alto Workshop Presenter
     
    Asanka Abeysinghe, WSO2 director of solutions architecture, provides consulting and training for enterprise IT architects and developers. He also focuses on the company’s vertical market capabilities, including financial services. Asanka has more than a decade of experience implementing projects, from desktops and Web applications to highly scalable distributed systems and SOAs, mobile platforms, and business integration solutions.

    Colombo Workshop Presenters
     
    Samisa Abeysinghe, WSO2 vice president of engineering, leads the development of WSO2’s three open source platforms: the WSO2 Carbon enterprise middleware platform, WSO2 Stratos cloud middleware platform, and WSO2 StratosLive platform-as-a-service (PaaS). Samisa has more than a decade of proven industry experience, working for systems integrators and software vendors with global exposure.

    Selvaratnam "Shankar" Uthaiyashankar, WSO2 senior software architect and chair of the WSO2 cloud technologies management committee, focuses on development of WSO2 Stratos and the WSO2 Carbon enterprise middleware kernel. Shankar also provides technology consulting on customer engagements, including cloud, enterprise service bus (ESB), governance, and mobile integration solutions.
     
    About WSO2
     
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
     
    GeneralEmbedded EMF+ Metafiles Rendering & Table Width Handling for HTML & PDF Pin
    Monday, August 6, 2012 12:57pm by Usman Sarfraz

    What’s new in this release?

    Aspose.Words for SharePoint 2.6.0 has been released. This new release of Aspose.Words includes support for Implementing embedded EMF+ metafiles rendering and font style simulation while rendering to PDF. This release also improved rendering of gray colors to PDF for proper printing, PDF A1/B compatibility, EMF rendering and numerous improvements in TOC update. TOC now looks identical to MS Word in almost all test cases. Moreover this release also added better validation of generated DOCX documents through OpenXML SDK 2.0 and support for signature image rendering for digital signature line in rendered PDF documents. Some very important features and fixes in this release are given below

    • Implemented embedded EMF+ metafiles rendering;
    • Implemented font style simulation while rendering to PDF;
    • Improved rendering of gray colors to PDF for proper printing;
    • Improved PDF A1/B compatibility;
    • Improved EMF rendering;
    • Better validation of generated DOCX documents through OpenXML SDK 2.0;
    • Office Math formulas are preserved during DOCX>DOC>DOCX and OCX>WML>DOCX roundtrip scenarios;
    • Table/row revisions are supported in DOCX;
    • Improvements in table width handling for HTML and PDF;
    • Supported signature image rendering for digital signature line in rendered PDF documents;
    • Enhanced rendering of Office MathML;
    • Fixed problem with CMYK image export to PDF;
    • Fixed problem with decreased metafile size in some documents (PDF);
    • Fixed problem with disappearing metafile images in rendered documents (PDF);
    • Support for Hidden table rows;
    • Improved handling of Alternate content;
    • Significant improvement of table width handling;
    • Numerous improvements in TOC update. TOC now looks identical to MS Word in almost all test cases;
    • Child fields (including SET) located in the false argument of the IF field are not updated anymore (like MS Word does).

    Other most recent bug fixes are also included in this release.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Aspose.Words for SharePoint documentation that may guide you briefly how to use Aspose.Words for performing different tasks like the followings.

     

    Overview: Aspose.Words for SharePoint

    Aspose.Words for SharePoint allows you to convert documents within the Microsoft SharePoint applications and supports multiple document formats like PDF, DOCX, DOC, RTF, MHT, TXT, XML, ODT, EPUB and XPS. It is designed to be used with Windows SharePoint Services and Microsoft Office SharePoint Server 2007 (standard and enterprise). You can also avail different valuable options during conversion setup like; converting files in subfolders, saving destination folder options etc.

    More about Aspose.Words for SharePoint

    Contact Information

    Aspose Pty Ltd

    Suite 163, 79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    http://www.aspose.com/

    sales@aspose.com

    Phone: 888.277.6734

    Fax: 866.810.9465l


     
    NewsWSO2 Launches 100% Open Source WSO2 API Manager, Breaking the Barriers to Effective API Management Pin
    Monday, August 6, 2012 6:00am by andrew.kinetic
    Over 140 developers applied to join WSO2 API Manager Beta Program and experience easy API Store access while ensuring control over how customers and partners use APIs

    Palo Alto, CA – August 6, 2012 – Managed APIs can provide a door into an enterprise’s business capabilities, enabling new opportunities for monetization and ecosystem development by extending processes and services to customers, partners, and other groups within the organization. However, the cost and complexity of using traditional API management solutions have raised significant barriers to adoption. Today, WSO2 breaks down those barriers with the launch of WSO2 API Manager, the first 100% open source API management product that combines easy, managed API access with full API governance and analysis (http://wso2.com/products/api-manager/).
     
    General availability of WSO2 API Manager follows an oversubscribed beta program, which attracted more than 140 applicants seeking to take advantage of the product’s innovation in managing APIs. WSO2 API Manager reinvents the API management experience by providing:
    * The first full-featured open source API management product, expanding the benefits of managed APIs to enterprises of all sizes.
    * The API Store, which lets IT organizations set up their own Apple or Google Marketplace-like store where developers can easily subscribe to and consume APIs.
    * Simple installation of a single download versus the multiple product installations required with some API management solutions.
    * Full support of the API lifecycle, not just an API key approval workflow.
    * Secure authorization of subscribed applications via the OAuth 2.0 key model, providing a key management and revocation model for subscribing applications.
    * Throttling and service-level agreement (SLA) management based on the application key, which is an important approach for managing SLAs and monetizing API offerings.
    * Easy expansion of features, such as business activity monitoring (BAM), as part of WSO2 Carbon, the industry’s first fully componentized OSGi-compliant enterprise middleware platform.
    * Proven scalability in a 1.0 product, since WSO2 API Manager uses the same core technologies and runtime of WSO2 Carbon already being used by enterprises around the world (http://wso2.com/about/customers?032012a), including a Global 1000 company that is handling more than 1 billion API calls per day (http://wso2.com/casestudies/ebay-uses-100-open-source-wso2-esb-to-process-more-than-1-billion-transactions-per-day?032012a).
     
    “Today there is a huge divide between the enterprises that are driving revenues, customer loyalty, and organizational efficiencies through managed APIs and the many more that are not,” said Dr. Sanjiva Weerawarana, WSO2 founder and CEO. “We have been working closely with IT architects and developers to help them close that gap. The result is our 100% open source WSO2 API Manager, which democratizes API management by making it affordable to acquire the software, easy to control APIs and manage the API lifecycle, and simple to find and subscribe to APIs.”
     
    WSO2 API Manager Simplifies Developer Experience
    The debut version of WSO2 API Manager is a full featured API management product that provides complete API lifecycle governance—from creating to publishing, deprecating and retiring APIs. IT organizations can publish both production and sandbox keys for APIs to enable easy developer testing, and developer interactions with APIs can be managed via comments and ratings. Governance is complemented by capabilities for monitoring API use, performance and SLA compliance. Secure authorization of APIs is provided using the OAuth 2.0 standard for key management. 


     
    Analytics and metrics can be viewed by user, API, and more. Enterprises can define their own key performance indicators (KPIs) on top of the ones provided out-of-the-box with WSO2 API Manager, as well as easily plug-in the API analytic data from their own existing reporting engines to create dashboards against the analytical data. Additionally, organizations can plug-in their billing engines and use them in combination with monitoring in WSO2 API Manager to enable monetization of their APIs.


     
    The API Store in WSO2 API Manager allows enterprises to create a graphical experience similar to the Android Marketplace or Apple App Store that makes it easy for internal users, customers and partners to access APIs. With the API Store, developers can browse APIs by provider, tags or name; self-register to the developer community; subscribe APIs and manage those subscriptions on a per-application basis; and browse API documentation or download helpers for easy consumption. At the same time, enterprise IT organizations can manage subscriptions on a per-developer level, as well as offer subscriptions at different service tiers based on expected levels of use. Because WSO2 API Manager is highly customizable, organizations also can create skins for the API Store that align with their corporate or product branding.
     
    

“The online store is such a successful model that has been widely embraced by consumers. It was an obvious step to extend it to developers,” said Paul Fremantle, WSO2 co-founder and CTO. “The kind of power and ease of use that our WSO2 API Store brings to the enterprise has the potential to radically change how people build out a B2B ecosystem.”


     
    WSO2 API Manager supports SOAP, REST, JSON and XML-style APIs, and it enables one-click deployment to the API gateway for immediate publishing. This gateway within WSO2 API Manager provides extremely high-performance pass-through message routing with low latency; it is horizontally scalable with easy deployment into a cluster using the proven routing infrastructure, and it scales to support millions of developers and other users. The API gateway supports API authentication with OAuth 2.0, and it enables IT organizations to enforce rate limits and throttling policies for APIs by consumer.
     
    Developer Community Cites WSO2 API Manager Advantages
    JDM’s experience with the WSO2 API Manager beta software has been extremely positive from the very beginning,” said Marco Carnevale, chief architect at JDM Systems Consultants, Inc. (http://www.jdmconsulting.com/). “The API Store provides developers an excellent place to discover new APIs and learn about their capabilities, and we particularly liked the way we could control and version the published APIs independently from the API implementations. Overall, the WSO2 API Manager is an innovative, useful, and feature-rich application, which we will continue to utilize in the future with our new and existing customers.”
     
    “I was looking for a full open source API platform tool, and it appears WSO2 has what I was looking for,” said Kin Lane, founder of API Evangelist (http://www.apievangelist.com). “WSO2 API Manager is a simple, easy to understand API platform, but has all the hardened enterprise goodness many developers will be looking for when it comes to security, governance, policy enforcement, etc. I also like that it acknowledges how many APIs are not born out of technical departments, and it allows for duel ownership of any API from the technical and business disciplines—which is very important to the success of an API.”
     
    Availability and Support
    WSO2 API Manager is available today as a software download, and the WSO2 Cloud Virtual Machine running on the Amazon Elastic Computing Cloud (EC2), Linux Kernel Virtual Machine (KVM), and VMware ESX will be released within the next week. WSO2 API Manager also will be available in a multi-tenant cloud version with the next release of the WSO2 Stratos cloud middleware platform in Fall 2012. As a fully open source solution released under the Apache License 2.0, it does not carry any licensing fees.
     
    WSO2 API Manager is backed by a world-class technical team in which the experts that helped create the software provide support, leading to direct and immediate access to the people with in-depth knowledge of the middleware. WSO2 service and support options include evaluation support, a special QuickStartSM consulting program, development support, and production support.
     
    About WSO2
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com and the WSO2 OxygenTank developer portal at http://wso2.org, or check out WSO2 on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
    ###
     
    NewsSyncfusion Adds over 800 New Icons to Metro Studio 2 Pin
    Monday, August 6, 2012 5:58am by Daniel_Jebaraj
    Release of Metro Studio 2 coincides with launch of educational e-book series for Microsoft Developers
     
    RTP, NC, August 6, 2012—Syncfusion, Inc., a leading provider of components for Windows development, today announced the release of Metro Studio 2™, the only utility of its kind for Windows 8 development. The studio, which is free for members of the development community, contains more than 1,700 vector-based Metro icons that are easy to customize. Additionally, the company is adding a series of free e-books to its Technology Resource Portal. The books are written for Microsoft developers seeking to broaden their knowledge. Both initiatives reflect Syncfusion’s commitment to give back to the development community.

    Metro Studio 2™, which was originally released in May of 2012, is a collection of Metro-style icon templates that can be easily customized to create thousands of unique Metro icons using an intuitive customization tool. To date, it has been downloaded over 22,000 times. The latest version includes significant enhancements and improvements such as:
     
    Ability to customize and export multiple icons at the same time.
    Icon sprites for web developers.
    Ability to copy icons to Clipboard for easy integration with Microsoft Office applications.
    Serialized icon customization for manipulation at a later time.
    Ability to customize text as icon shapes.

    Beth Massi, senior program manager on the Microsoft Visual Studio BizApps team, recently used Metro Studio to update the icons in the Contoso Construction application. "Syncfusion Metro Studio is a huge time-saver—all the icons you create are royalty-free, even forcommercial applications. Thank you, Syncfusion, for supporting the community(and particularly the developers who can’t draw!)," stated Massi.

    Download Metro Studio 2 at http://www.syncfusion.com/metrostudio.

    Syncfusion is releasing a series of e-books called the Succinctly series. These concise technical books, which range from 50-100 pages, can be read on any Amazon Kindle or downloaded as a PDF. New e-books will be rolled out on a regular basis. The most popular e-books include:
    jQuery Succinctly by Cody Lindley: Conveys the concepts essential to intermediate and advanced jQuery development
    HTTP Succinctly by Scott Allen: Explains HTTP from a developer’s perspective
     
    CampusMVP, an online training company for Microsoft developers, uses jQuery Succinctly as part of its curriculum. “Syncfusion’s jQuery Succinctly is a perfect supplement for our jQuery online course because of its direct and to-the-point approach. It contains tons of practical examples, which reinforce what our students learn,” stated Jose Manuel Alarcon, managing director at CampusMVP.

    Download Succinctly series e-books at http://www.syncfusion.com/resources/techportal/ebooks.

    About Syncfusion, Inc.
    Syncfusion is the enterprise technology partner of choice for Windows development, delivering a broad range of .NET components and controls coupled with a service-oriented approach throughout the entire application lifecycle. Known for its extremely fast grid control and breaking new ground in ASP.NET MVC and mobile development, Syncfusion has established itself as the trusted partner worldwide for use in mission-critical applications. In an effort to support small and growing businesses, Syncfusion recently partnered with Microsoft’s WebsiteSpark and BizSpark programs.

    With releases every quarter, 24-hour support, and flexible licensing, Syncfusion meets the changing needs of enterprises across the globe. Founded in 2001 and headquartered in Research Triangle Park, North Carolina, Syncfusion has more than 7,000 customers including large financial institutions, Fortune 100 companies, and global IT consultancies.

    For questions about products, pricing, and licensing, please contact sales@syncfusion.com or call +1 919.481.1974.
     
    GeneralGenerate Barcode Image with Custom Size, Better Quality & Readability Pin
    Sunday, August 5, 2012 12:21pm by saaspose

    What's New in this Release?

    Saaspose development team is proud to announce the new release of Saaspose.Barcode. Saaspose.Barcode API allows developers to customize barcode size and set the x and y dimensions of barcode as per your requirements. Configuring the size of barcode is an important aspect as it helps in scanning the image with more clarity. You can provide custom values for width and height of barcode image to generate images with better quality and readability. The term size and image resolution of the barcode is often used together as it determines the appearance of barcode image. Saaspose.Barcode allows you to configure the horizontal and vertical dimensions of the barcode image for better resolution. You can set resolution for the barcode image based on your printer resolution. You can customize barcode size and image resolution easily using the feature rich Saaspose.Barcode REST API. We have SDK and REST examples for Saaspose.Barcode REST API that help you utilize it for your applications in the cloud.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose.Barcode documentation that may guide you briefly how to use Saaspose.Barcode for performing different tasks like the followings.

    Overview: Saaspose.Barcode

    Saaspose.Barcode is a cloud based REST API that helps developers to generate new barcode images from scratch, recognize barcodes from images, specify barcode text attributes, set barcode image characteristics like width, height, border style, output format etc. Developers can create barcode using more than 40 symbologies like (1D) EAN13, EAN8, UPCA, UPCE barcode, MSI & Code11 (2D) like PDF417, DataMatrix, Aztec, QR, Italian Post 25 & postal types like Postnet, Planet, USPS OneCode & many more.

    More about Saaspose.Barcode

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465


     
    GeneralAugust 2012 Edition of Saaspose.Newsletter is Launched! [modified] Pin
    Thursday, August 2, 2012 2:14pm by saaspose

    Saaspose Newsletter for August 2012 has now been published that highlights all newly added information, exciting new features & informative blogs about Saaspose APIs & SDKs. This month Saaspose.Words, Saaspose.Cells & Saaspose.Slides have introduced new features for finding & replacing text inside workbooks, Word documents & PowerPoint presentations.  Apart from that Saaspose team have also added features for word documents, PowerPoint presentations & PDF files conversion to other file formats.

    Tip of the Month: Integrate Amazon S3 Storage with Saaspose API

    Saaspose team has recently integrated Amazon S3 Storage with Saaspose API. Now, you can keep your files on Amazon S3 and use Saaspose API to process those files. It is quite simple and easy to configure Amazon S3 Storage with Saaspose. Once setup you can use Saaspose API to manage those files. We have also integrated Saaspose.Slides with Amazon S3 so you could upload your presentations on Amazon S3 Storage and process them using Saaspose.Slides. We have added examples to work with this external storage as well. Our team is working on integrating other Saaspose APIs with Amazon S3. We’re also integrating our APIs with other cloud storage services. Please keep in touch for the latest information about external storage integration. Click here to read complete blog post about Integrate Amazon S3 Storage with Saaspose API.

    Best of Saaspose API Blogs

    Stay tuned with the recent updates, features and announcements of Saaspose APIs through Saaspose Blog.

    Latest From the Documentation

    We have added many examples for various features of Saaspose File Format APIs in our documentation during the month of July. Our team has put great efforts to update the documentation for Saaspose.Words, Saaspose.Pdf, Saaspose.Cells, Saaspose.Barcode, Saaspose.Slides and Saaspose.OCR. We have added examples related to various features of these file format APIs; for example, find and replace text in workbooks, convert presentations to other file formats, extract image text from local file, create barcode and save image, get OLE drawing objects, shapes and charts, execute mail merge template, add watermark text and image, delete all slides from a presentation etc. You may view a complete list of examples for each API in the following announcement posts

    Saaspose API SDK Updates

     During the month of July 2012, we have introduced new features in our SDKs for different programming languages like .NET, Java, and PHP. There is a list of features available for each API on Github and you can download the required SDK. The new features are added in most of our APIs such as Saaspose.Words, Saaspose.Cells, Saaspose.Slides etc. These features include replacing text in a slide, merging two PDF documents, getting a specific chart from the worksheet, deleting all slides from a presentation, save a specific picture from a specific worksheet as image, etc. For more details, you may refer to the announcement about Saaspose REST API Features Implemented in SDKs during the Month of July 2012

    Collect your copy of Saaspose Newsletter, August 2012 edition

    Keep in Touch

    There are several ways for you to keep in touch with us. The monthly newsletter
    is a way for us to keep in touch with you, but we are always interested in
    hearing from you.

    - Ask your question from Saaspose Development Team

    - Connect with us on Post a question on our Facebook

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465



    modified 2-Aug-12 20:26pm.

     
    NewsVintaSoft Barcode SDK v7.0 for .NET, WPF and Silverlight Released!! Pin
    Wednesday, August 1, 2012 9:54pm by VintaSoft Ltd
    01/08/2012 Rostov-on-Don
     

    NEWS
     
    VintaSoft Ltd releases the major version 7.0 of Barcode SDK for .NET, WPF and Silverlight which includes series of enhancements and improvements.
     
    The following new 2D barcodes were added in barcode reader and barcode generator algorithms: MaxiCode and Micro QR Code.
     
    As the result the VintaSoft Barcode .NET SDK can now recognize \ write about 50 linear (1D) and 7 two-dimensional (2D) barcodes from \ to image files and image resources of PDF documents.
     
    2D matrix barcode symbology QR Code recognition speed increased. Improved algorithm of PDF417, Laetus Pharmacode, EAN and UPC barcode recognition.
     
    The assemblies in the new version are provided natively for all 3 platforms AnyCPU, x86 and x64.
     
    Releasing this version VintaSoft Ltd has reached the highest possible quality standard on the market of barcode recognition and generation components. VintaSoftBarcode.NET SDK official page: http://www.vintasoft.com/vsbarcode-dotnet-index.html
     

    PRODUCT INFO
     
    VintaSoftBarcode.NET SDK is the professional .NET barcode reader and barcode generator component for software developer. It recognizes and writes 1D & 2D barcodes in digital images and PDF.
     
    The Barcode .NET SDK is available for .NET, WPF and Silverlight.
     

    Features:
     
    1. Programming environments: .NET Framework 2.0 or higher, WPF 3.5 or higher, Silverlight 4.0
    2. This is a fully-managed .NET library to guarantee the fast working in .NET Framework
    3. Generate a barcode in both Image and Vector form
    4. Create a barcode image with specified size and resolution
    5. Create custom barcode writer control or use available standard .NET, WPF or Silverlight barcode control
    6. Many optional barcode writer settings give you complete control over .NET barcode printing
    7. Supports multi-threading in barcode reader
    8. Recognizes barcodes from image object, image file, image stream or image resources of PDF document
    9. Recognizes all barcodes anywhere from entire image or from a region of interest
    10. Identifies the type of recognized barcode
    11. Returns the string value of recognized barcode
    12. Returns a confidence value for each of recognized barcodes
    13. Detects the orientation of recognized barcode automatically
    14. Returns coordinates of the recognized barcode bounding rectangle
    15. Read and write non-data flags (FNC1, ECI, Structure Append ...) in some barcodes
    16. Reed-Solomon error correction algorithm fixes damaged Aztec, Data Matrix, Maxicode, Micro QR Code, PDF417 and QR Code barcode barcode during .NET barcode recognition
    17. Provides advanced document cleanup functions to improve barcode recognition in .NET
    18. Supports ISO/IEC 15415 barcode printing quality test for Aztec, DataMatrix and QR Code barcodes
     

     
    Supported 1D barcode types: Code 11, Code 39, Code 93, Code 128, Codabar, EAN-8, EAN-13, UCC/EAN-128, GS1-128, Industrial standard 2 of 5, Interleaved 2 of 5, ISBN, ISMN, ISSN, Laetus Pharmacode, MSI modified Plessey, Patch code, Plus 2, Plus 5, RSS / GS1 DataBar, Telepen, UPC-A, UPC-E
     
    Supported postal barcode types: Australian Post, Intelligent Mail, Planet, Postnet, Royal Mail/RM4SCC
     
    Supported 2D barcode types: Aztec, Data Matrix, GS1 Data Matrix, MaxiCode, PDF417, PDF417 Compact, QR Code, Micro QR Code
     
    You can use this library in your programs written in any programming languages compatible with .NET technology.
    VintaSoft Barcode .NET SDK was tested and has examples of use for:
    - Microsoft Visual Basic .NET 2005 / 2008 / 2010
    - Microsoft Visual C# 2005 / 2008 / 2010
    - ASP.NET 2005 / 2008 / 2010
    - Microsoft Office SharePoint Server 2007

     
    System requirements: .NET Framework / Microsoft Visual Studio .NET / Internet Explorer
     

    Supported platforms: Windows 2000 / XP / 2003 / Vista / 2008 / 7, 32-bit / 64-bit, .NET Framework 2.0 / 3.0 / 3.5 / 4.0, WPF 3.5 / 4.0, Silverlight 4.0
     

    More info about features: http://www.vintasoft.com/vsbarcode-dotnet-index.html
     


    ABOUT VINTASOFT
     
    Mission of the company is to develop software components with the optimal price-quality ratio for software developers. VintaSoft's components are intended for usage in end-user applications and help our customers save time and cost of applications development. The components provide ready-to-use functionality for digital image acquisition and processing, barcoding, electronic document circulation and other imaging areas. Much attention is paid to provide easy integration of produced software components into final applications, speed optimization and adding high functionality which is responsive to the realities of use in practice. VintaSoft products possess small size, perfect functionality and performance.
     
    VintaSoft Ltd.
    344068, M.Nagibina Ave. 33a/47,
    Rostov-on-Don, Russian Federation
    http://www.vintasoft.com
     

    # # #
     
    GeneralAspose.Newsletter August 2012 Edition is out Now Pin
    Wednesday, August 1, 2012 1:33pm by Usman Sarfraz

    Aspose Newsletter for August 2012 has now been published that highlights all the newly supported features offered in the recent releases of its JasperReports exporters, SQL Server rendering extensions, .NET, Java & SharePoint components. This month’s technical article shows rendering reports programmatically with Aspose.Words for SSRS &  a migration tip adding or removing comments on cells with Aspose.Cells or VSTO. The video tutorial shows generating barcodes with Aspose.Total with ASP.NET MVC.

    We pride ourselves on producing products that save our customers time and effort. We implement our file format expertise so that developers at other companies can focus on their core business and don’t have to worry about coding solutions for working with files. We’d love to hear from you on how we’re doing. We are looking for case studies, testimonials and videos. There are lots of ways you can tell us what you think: praise us in the forums, write about us if you’re a reviewer, or talk to us about case studies. Stay in touch

    Product Spotlight: Aspose.Total for SharePoint

    Aspose.Total collects together all of our products for a platform. Aspose.Total for SharePoint contains all of our SharePoint components: Aspose.Cells, Aspose.Words, Aspose.Slides, Aspose.Email, Aspose.Pdf and – the latest product to join the family – Aspose.BarCode. With these components in your toolbox, you greatly extend the file format and features that your SharePoint site supports. View complete details.

    Technical Article – Rendering Reports Programmatically with Aspose.Words for SSRS

    Sometimes you can’t use the Report Manager or Report Viewer interface to create reports, but need to render SSRS reports programmatically. This article explains how to use Aspose.Words for Reporting Services do it. Click below to read the complete article about Rendering Reports Programmatically.

    Updates about new product releases


    1. Aspose.Total for .NET – a compilation of our latest .NET products.
    2. Aspose.Cells for .NET 7.3.0 – adds support for reading and writing MHT files and XML maps.
    3. Aspose.Words for .NET– our monthly Aspose.Words release.
    4. Aspose.Pdf for .NET 7.1.0 - add tables to PDF files, validate the PDF version and convert between linearized and non-linearized files.
    5. Aspose.Slides for .NET 6.4.0 - adds thumbnail update and other enhancements and features.
    6. Aspose.BarCode for .NET 4.9.0 – adds support for several Databar formats and OPC and IATA2of5 barcode generation for Silverlight.
    7. Aspose.Diagram for .NET 2.4.0 – adds support for exporting diagrams to SVG and improves font output and connector handling.
    8. Aspose.Tasks for .NET 4.4.0 – write updated resource assignment data back to MPPs and work with exceptions when writing tasks.
    9. Aspose.Imaging for .NET 1.6.0 - adds feature for saving each TIFF frame to different format and other enhancements.
    10. Aspose.Email for .NET 1.9.0 - adds a number of enhancements that improves stability.
    11. Aspose.Total for Java – a compilation of our latest Java products.
    12. Aspose.Cells for Java 7.3.0 –adds support for XML maps, lets you read and write MHT files and apply themes to charts.
    13. Aspose.Words for Java – our monthly Aspose.Words release.
    14. Aspose.Email for Java 1.9.0 –adds a number of fixes and enhancements.
    15. Aspose.Total for SharePoint – a compilation of our latest SharePoint products.
    16. Aspose.Total for Reporting Services – a compilation of our latest Reporting Services products.
    17. Aspose.Slides for SSRS 4.3.0 - a number of fixes and enhancements.
    18. Aspose.Total for JasperReports – a compilation of our latest JasperReports products.

    Tutorial Video –Generate Barcodes with Aspose.Total for .NET with ASP.NET MVC

    Aspose.Total for .NET lets you use all of Aspose’s tools in your applications. Using a sample music store from ASP.NET MVC, we show how to set up a project so that you can use Aspose.Total and then go on to show you how to add barcodes to the album information. Click below to watch the Video.

    Migration Tip – Add or Remove Comments on Cells with Aspose.Cells for .NET or VSTO

     Comments help users remember how complex formulas are constructed and store other useful information in spreadsheets. With Aspose.Cells for .NET, it is possible to add and remove comments to cells in spreadsheets from within an application. In this article, we compare how these tasks are achieved using Aspose.Cells and VSTO. Read the complete migration tip about adding or Removing Comments on Cells.

    Collect your copy of Aspose Newsletter, October 2012 edition

    Keep in Touch

    There are several ways for you to keep in touch with us. The monthly newsletter
    is a way for us to keep in touch with you, but we are always interested in
    hearing from you.

    - Post a question on our forums

    - Connect with us on Post a question on our Facebook

    Contact Information

    Aspose Pty Ltd
    Suite 163,

     79 Longueville Road
    Lane Cove,

    NSW, 2066
    Australia

     Aspose - Your File Format Experts


    sales@aspose.com

    Phone: 888.277.6734

     Fax: 866.810.9465


     
    NewsWSO2 to Present Technical Webinar on Using the WSO2 Elastic Load Balancer to Optimize Cloud Performance Pin
    Wednesday, August 1, 2012 6:30am by andrew.kinetic
    WSO2 webinar on August 8, explores how to configure a load balance between multiple service domains with multiple clusters using the WSO2 Elastic Load Balancer

    Palo Alto, CA – August 1, 2012 – An enterprise platform-as-a-service (PaaS) allows businesses to support multi-tenancy, scaling up to thousands of tenants or more. However, organizations must deploy tenant partitioning on different clusters to effectively scale up to any number of tenants. To facilitate this effort, WSO2 will present a free webinar on how developers can configure a load balance between multiple service domains with multiple clusters with the forthcoming WSO2 Elastic Load Balancer (currently in beta).

    The one-hour technical session, “WSO2 Product Release Webinar – Introduction to the WSO2 Elastic Load Balancer," is being held twice on Wednesday, August 8: 9:00 a.m. – 10:00 a.m. PDT for the Americas and 10:00 a.m. – 11:00 a.m. GMT for Europe and Asia-Pacific. For more information, visit http://wso2.org/library/webinars/2012/08/wso2-product-release-webinar-introduction-wso2-elastic-load-balancer.

    Multi-tenancy with the WSO2 Elastic Load Balancer
     
    The webinar will introduce the WSO2 Elastic Load Balancer (http://wso2.com/products/elastic-load-balancer) and examine its core capabilities, explaining how it can help organizations support their multi-tenancy needs. The session then will discuss how the WSO2 Elastic Load Balancer’s non-blocking connection architecture enables pure streaming and on-demand processing of messages. Additionally, the webinar will cover key features of the WSO2 Elastic Load Balancer, including:
    · Tenant-aware load balancing
    · Auto-scaling
    · Private jet mode for tenants
    · Infrastructure independent elasticity
    · WSO2 Stratos and customer deployment use cases

    The webinar will be presented by Chintana Wilamuna, WSO2 associate technical lead on the WSO2 development technologies team, who focuses on infrastructure development. Chintana is an Apache Stonehenge committer, who specializes in cloud computing, distributed and parallel computing, high scalable architectures, programming languages, and functional programming. Additionally, he started the WSO2 Web Services Frameworks for Ruby and Perl.
     
    About WSO2
     
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
     
    NewsLeading Medical Software Provider Adopts MadCap Flare to Cut Production of Print Manuals and Online Help from Two Months to One Week, Easily Add QR Codes, and Ensure Government Healthcare Compliance Pin
    Wednesday, August 1, 2012 6:03am by andrew.kinetic
    New case study from MadCap Software examines how Compressus Inc. has streamlined content development and publishing and simplified compliance by replacing two legacy tools with MadCap Flare
     
    La Jolla, CA, USA – August 1, 2012 – MadCap Software, Inc. (www.madcapsoftware.com), the leader in multi-channel content authoring and a showcase company for Microsoft (NASDAQ: MSFT) Visual Studio and Microsoft XPS, today announced that it has published a new case study on Compressus Inc. A leader in digital medical solutions software, Compressus is using MadCap Flare to create online Help and PDF print user manuals while realizing a four-fold reduction in project time. The full Compressus case study is available at: http://www.madcapsoftware.com/casestudy/Compressus.aspx.
     
    Compressus delivers MEDxConnect software, the first solution that indexes, integrates and routes all relevant patient medical information to the healthcare professional in real time, thus dramatically improving physician efficiency, reducing enterprise costs and increasing patient safety. Recently the company replaced its legacy authoring tools—one for print, one for online Help—with MadCap Flare for single-source multi-channel publishing (http://www.madcapsoftware.com/products/flare/overview.aspx). Today, Compressus is using Flare to produce print manuals and online Help from the same project, ensure the consistency of content and provide the necessary backups to support compliance, and publish Quick Response (QR) codes for instant access to answers on the Web. Among key benefits Compressus has realized:
     
    * In the first three projects alone, content reuse and single-sourcing have cut project time from two months to one week.
     
    * Single-sourcing and one-button back-up facilitate annual compliance check-ups to address US mandates, such as the Health Insurance Portability and Accountability Act (HIPAA), international standards, and Compressus company best practices.
     
    * The ability to run multiple versions of Flare-based online Help supports the option to revert back to a previous product and documentation.
     
    * Easy creation of QR codes enables wider use of codes to help end users quickly reach the Web information they need.
     
    * Tight integration between Flare and MadCap Lingo translation management software will facilitate future translation and localization.
     
    * MadCap Platinum Support shortens learning curve for the MadCap Flare platform, providing a rapid gain in productivity and faster return on investment.
     
    Flare Users at Compressus Share Their Experiences
     
    “Madcap Flare has enabled the team to expedite updates in an accurate manner with the required backup and documentation, increasing productivity,” observes Janine Broda, Compressus chief marketing officer. Looking ahead, she adds, “We envision providing end users with an online knowledge base with all of our documentation in a single location. Madcap Flare is a solution that can readily adjust with our future market requirements.”

    “The ease of documentation conversion is critical to our business,” explains Laszlo Gasztonyi, Compressus chief technology officer. “Madcap has provided our technical documentation team with flexible tools and the ability to accurately manage our operations, including the support of the development, deployment and support activities of our products, while maintaining compliance with standards and regulations.”

    With ‘Save Project’, I click one button, and Flare creates a template from a completed work, which allows me to be instantly halfway to two-thirds done with the project,” says Pam Coca, Compressus documentation manager. “I also love having the QR code as a snippet because it is the epitome of single-sourcing. If any of the support information changes, I just edit the snippet, and the content updates itself.“

    “Compressus is an innovator in delivering software that seamlessly integrates the diverse output of medical IT solutions to provide health professionals with a 360-degree view of their patients,” said Anthony Olivier, MadCap founder and CEO. We are thrilled by Compressus’ similar innovation in using our state-of-the-art MadCap Flare to publish QR codes that give these users convenient and immediate access to information they need on the Web. For our medical supply and healthcare customers, meeting strict US federal requirements, such as HIPAA, and international standards, such as those from the EU, are just as important as increasing productivity. By using our software, Compressus is a shining example of how companies can benefit from rapid gains in productivity, information continuity, and enhanced compliance to effectively address the complex documentation issues faced by the healthcare industry.”

    About Compressus Inc.
     
    Established in 2000, Compressus Inc. (www.compressus.com) is a medical software company offering a proven interoperability and workflow platform to the rapidly growing healthcare IT market. Its MEDxConnect software is the first solution that indexes, integrates and routes all relevant patient medical information to the healthcare professional in real time, thus dramatically improving physician efficiency, reducing enterprise costs and increasing patient safety. The solutions workflow flexibility enables users to rapidly accommodate new environments, markets and regulations. The MEDxConnect products address the problems associated with integrating healthcare enterprises plagued by the challenges of workflow, and a lack of connectivity and interoperability between disparate islands of data in all specialties of medicine. The MEDxConnect System is a suite of offerings designed to manage the workflow of an imaging healthcare enterprise. It has the power to connect disparate HIS/RIS/PACS systems and provide automated interoperability to the enterprise and allows an organization with disparate multi- vendor systems function as one virtual enterprise.
     
    About MadCap Software

    MadCap Software, Inc. is a leading technical communication software firm specializing in integrated applications for end-to-end content development, delivery and management. MadCap’s software products provide state-of-the-art content workflow solutions for multi-channel publishing, including the Web, print, desktop and mobile. Through its strategic partner Microsoft Corp. (NASDAQ: MSFT), MadCap delivers solutions optimized for Microsoft Windows, Visual Studio, and the .NET environment. Headquartered in La Jolla, CA, MadCap is home to some of the most experienced software architects and product experts in the documentation industry. Learn more about MadCap Software at www.madcapsoftware.com.
     
    MadCap Software, the MadCap Software logo, MadCap Flare, and MadCap Lingo are trademarks or registered trademarks of MadCap Software, Inc., in the United States and/or other countries.
     
    GeneralProtect & improve .Net apps with Crypto Obfuscator’s obfuscation and automatic exception reporting Pin
    Tuesday, July 31, 2012 10:46pm by LogicNP
    LogicNP Software has released Crypto Obfuscator For .Net 2012 R2 which provides superior code protection, obfuscation, optimization and automatic exception reporting for your .Net assemblies. Crypto Obfuscator combines powerful obfuscation, encryption and optimization techniques to provide the very best protection to your .Net code against reverse-engineering.
    Automatic Exception Reporting makes it extremely easy to catch any unhandled exceptions and for your users to easily report these exceptions to you with a single click of a button.
     
    The exception reports include all pertinent information including full stack trace info along with the values of all method arguments and local variables, system information and optional developer defined custom data like log files, screenshots, etc. All exception reports can then be automatically download from the exception reporting service and viewed within Crypto Obfuscator.
     
    Crypto Obfuscator’s metadata reduction, assembly & resource compression and dependency embedding functionality simplifies and reduces the deployment of your software.
     
    Crypto Obfuscator supports all versions of the .Net framework from v1.0 to v4.0 and Visual Studio 2002 to Visual Studio 2010. It also supports the WPF, Silverlight, Windows Phone 7, .Net Compact Framework, .Net Micro Framework, and XNA. It can protect assemblies created with any .Net language including C#, VB.Net, Managed C++, J#, etc. It supports direct XAP file obfuscation, XAML/BAML obfuscation, improved control flow obfuscation, support for PDB files, a Visual Studio Project Integration Wizard, Support for Windows Phone 7 obfuscation, automatic authenticode signing, Test Mode obfuscation, improved COM Interop support and more!
     
    The new version features Method Encryption (hide MSIL code in method body) as well as Constant/Array Encryption. This version also has improved .Net Micro Framework support, improved automatic exception reporting and bugfixes.
     
    Here are its features at a glance:
     
    * Symbol Renaming
    * Advanced Overload Renaming
    * Method Encryption (Hide & Encrypt IL Code)
    * Method Call Hiding
    * String Encryption
    * Constant/Array Encryption
    * Control Flow Obfuscation
    * ILDASM Protection
    * Automatic Exception Reporting
    * XAML/BAML Obfuscation
    * XAP File Support
    * Anti-Reflection Protection
    * Anti-Decompiler Protection
    * Advanced Tamper Detection
    * Advanced Anti-Debug & Anti-Tracer Protection
    * Resource Encryption & Compression
    * Assembly Embedding, Encryption & Compression
    * Digital Watermarking For License Tracking
    * Metadata Reduction
    * Runtime Performance Optimizations
     
    Crypto Obfuscator is available directly from LogicNP Software and available in Standard, Professional and Enterprise editions. Development licenses can be purchased starting from US $149. Multi-developer licenses, site licenses and Support and Upgrade Subscriptions are also available.
    For Product Information, visit,: http://www.ssware.com/cryptoobfuscator/obfuscator-net.htm
     
    GeneralMake the best of Code Review with New Visual Studio Add-in by Devart! [modified] Pin
    Tuesday, July 31, 2012 10:13pm by Devart
    Welcome the final release of Review Assistant - code review tool from Devart. This tool was developed to facilitate code review process and will comply with the requirements of the most demanding developers.
    Devart Team has been developing and perfecting Review Assistant by using it in the everyday working process, in hope it will help other companies, striving to improve code quality while saving time and money.
    Key features:
  • Integration into Visual Studio allows users to concentrate on the working process, inspection of colleagues work and leaving notes within the project context. Track other users' comments right in the IDE.
  • Simple code review process relieves developers of the tedious formal meetings. Our Visual Studio add-in is easy in setting up and usage, flexible workflow settings can be adapted to your existing review schemes.
  • Integration with popular VCS's makes it easy for all users to start code review whether you use TFS, SVN or Hg.
  • Threaded code discussion enables developers to mark comments as defects, discuss comments, track discussions – all this without formal meetings.
  • Formal reviews include primary roles, defined but non-restrictive work-flows.
  • Ad-hoc reviews provide an opportunity to leave an inline comment, mark it as a defect and assign a person to fix it – without starting formal review process.
  • Integration with code comparison tools means that Review Assistant integrates with code comparison software to facilitate code change tracking. Developers can try out Code Compare Pro, Devart's popular tool.
  • Free Edition makes it possible to try out a product version in a small team to evaluate a product, benefiting from the full version's features, only having a max user limitation.
  • Availability
    Check out Review Assistant purchase page and learn about the editions available.
    Download code review tool now and evaluate the benefits of the fully-featured trial version for free during a 30-day period.
    Join Devart Forum and participate in the discussions around Review Assistant and other software.

    About Devart
    Devart is a widely recognized provider of database connectivity solutions and tools for the most popular databases, including MS SQL Server, MySQL, Oracle, PostgreSQL, InterBase, Firebird and SQLite.
    Since 1998, Devart has been focused on the development of native database data access solutions, development and database tools for a wide range of databases and development technologies. Now, Devart solutions provide the fastest data access available on the market and the broadest database support to many thousands of industry professionals.
    For additional information about Devart, visit the official web site.



    modified 21-Aug-12 10:06am.

     
    GeneralApply Excel Themes & Colors to Chart, Open/Save MHT Files in .NET Apps [modified] Pin
    Tuesday, July 31, 2012 1:52pm by Usman Sarfraz

    What’s new in this release?

    The long awaited version of Aspose.Cells for .NET 7.3.0 has been released. In this release, we have included some valuable new features, enhancements to existing features and resolution of the reported issues. One of the new features introduced in this release is the ability to open and save MHT files. We have also introduced a feature that lets you apply MS Excel Themes / Colors to Charts. Another one is a long awaiting feature, Support XML maps. The component also supports the settings for Transition Formula Evaluation. We have worked to improve Excel to PDF conversion. We have also enhanced the Formula Calculation Engine. We fixed number of issues and performed other enhancements regarding different features of MS Excel as well.  This release includes few enhanced features and plenty of bug fixes as listed below

    • Support Reading and Writing MHT files
    • Support XML Maps
    • Mono supported version issue is fixed
    • Can use formula as parameter of CustomFunction
    • Can custom functions return ranges that can be used to SUM on
    • Applying themes to Charts
    • Problem with Formula referencing an image is fixed
    • SheetRender’s XPS and custom Number format issue
    • Chart’s legend items wrapping when saving as an image
    •  Bug sheet charts are not showing up
    • A serious problem with Pivot Table is resolved.
    • PDF rendering of business shapes (text inside) is improved
    • Issue with XLS table of contents based on the number of printed pages is fixed
    • The PDF conversion misses the values ​​of the named areas is resolved.
    • Referencing cells with values from array formulas now properly working
    • Cells Formatting Problem is resolved.
    • Problem with formula referencing an image is fixed
    • Improved Array Formulas in SpreadsheetML when converting to XLSX
    • Losing named ranges bug in XLSM is resolved.
    • An issue with CellCommand hyperlinks is fixed
    • Aspose.Cells.GridWeb control crashing issues for an Excel file is resolved.

    Other most recent bug fixes are also included in this release.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Aspose.Cells for .NET documentation that may guide you briefly how to use Aspose.Cells for performing different tasks like the followings.

    Overview: Aspose.Cells for .NET

    Aspose.Cells is a .NET component for spreadsheet reporting without using Microsoft Excel. It supports robust formula calculation engine, pivot tables, VBA, workbook encryption, named ranges, spreadsheet formatting, drawing objects like images, OLE objects and importing or creating charts. You can also create Excel file using designer spreadsheet, smart marker or API and apply formulae and functions. It supports CSV, SpreadsheetML, PDF and all file formats from Excel 97 to Excel 2007.

    More about Aspose.Cells for .NET

    Contact Information

    Aspose Pty Ltd,

    Suite 163, 79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Aspose - Your File Format Experts

    sales@aspose.com


    Phone: 888.277.6734

    Fax: 866.810.9465



    modified 31-Jul-12 20:29pm.

     
    NewsWSO2 to Present Technical Webinar on How to Pay for PaaS Adoption Pin
    Tuesday, July 31, 2012 6:59am by andrew.kinetic
    WSO2 webinar on August 7, examines an architecture design framework and TCO methodology for optimizing a cloud-enabled deployment model

    Palo Alto, CA – July 31, 2012 – When adopting a platform-as-a-service (PaaS), IT professionals need to determine how to pay for the new technology, environments and tooling that will be required to support this implementation. A cloud friendly deployment model—one that is based on shared resource pools instead of traditional middleware platform silos—will reduce the operations expense and minimize the PaaS investment cost. To address these issues, WSO2 will present a free webinar that describes an architecture decision framework, a total cost of ownership (TCO) methodology, and example scenarios highlighting how to pay for PaaS adoption.

    The one-hour technical session, “Paying for Platform-as-a-Service," is being held on Tuesday, August 7, from 9:00 a.m. – 10:00 a.m. PDT. For more information, visit http://wso2.org/library/webinars/2012/08/paying-for-platform-as-a-service.

    The webinar will be presented by Chris Haddad, WSO2 vice president of technology evangelism, who works closely with developers, architects, and C-level executives to increase WSO2 technology adoption, improve the middleware platform, and maximize customer value. He has been advising Fortune 500 companies and charting a vision toward “Cloud 2020,” both in his current role and as a former research vice president at the Burton Group and Gartner.
     
    About WSO2
     
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
     
    NewsBeta Enhances dtSearch® Document Filters to Display Highlighted Hits in Context with Document Images (as well as Text) in Popular “Office” and Email Formats Pin
    Tuesday, July 31, 2012 3:46am by dtSearch
    Beta has additional enhancements regarding multi-level nested files and emails; dtSearch proprietary document filters also support a wide range of web-ready file types, dynamic website data, and databases

    dtSearch Corp., a leading supplier of enterprise and developer text retrieval along with document filters, announces beta testing of Version 7.70 of the dtSearch product line. The new version adds multiple improvements to the document filters spanning the dtSearch product line. For customers in need of data parsing, conversion and extraction only, the dtSearch Engine APIs (native 64-bit/32-bit, Win/Linux C++, Java and .NET through 4.x) also make the document filters available for separate OEM licensing.
     
    Document Filters. dtSearch’s proprietary document filters support a broad range of data types (many of which already include combined image and text support):
    • “Office” documents: MS Office, OpenOffice, RTF, PDF, etc.; the beta also adds support for Japanese Ichitaro documents
    • Emails: MS Exchange, Outlook, Thunderbird, etc., all with nested attachments
    • Compression formats: ZIP, RAR, GZIP/TAR, etc.
    • Web-ready data: HTML, XML/XSL and PDF—all already with full image (in addition to text) support
    • Dynamic data: PHP, ASP.NET, SharePoint, etc.— all already with full image (in addition to text) support
    • Databases: SQL including BLOB data (through the dtSearch Engine APIs), MS Access, XBASE, XML, CSV, etc.
    The document filters support parsing of all of the above data types as well as text extraction and/or conversion to HTML as required for browser display with highlighted hits.
     
    Embedded Image Enhancements. The new beta extends the document filters to add image support to Word (.doc/.docx), PowerPoint (.ppt/.pptx), Excel, (.xls/.xlsx), Access (.mdb/accdb), RTF, and email files including Thunderbird (mbox/.eml), and Outlook (.pst/.msg) files. The beta displays these formats showing highlighted hits in context with both text and now images.
     
    Multi-Level Nested File Enhancements. The dtSearch document filters also support documents and images in multi-level nested configurations. For example, the beta would support not only viewing images in an email file, but also images in a PowerPoint embedded in a Word document attached as a zipped file to an email message. A new “object extraction” API lets developers navigate through the structure of each embedded object as a hierarchy, and optionally extract each object.
     

    Spider. The Spider works with local and remote, static and dynamic web content. Hit-highlighted searching can span any level of site depth, across any number of public and private or secure sites, including support for log-ins and forms-based authentication. The Spider is built into the dtSearch product line, and accessible through a .NET API for programmers.

    Terabyte Indexer. dtSearch enterprise and developer products can index over a terabyte of text in a single index, spanning directories, databases, online data, and emails. The products can create an unlimited number of indexes, and simultaneously search them. Indexed search time is typically less than a second, even across terabytes of data. Online indexed searching operates in a “stateless” environment, supporting unlimited concurrent search threads.
     
    Search Options. The dtSearch product line includes 25+ full-text and fielded data search types, including special forensics search options. dtSearch products offer federated or distributed searching with integrated relevancy ranking across any number of different data repositories. The dtSearch Engine APIs also support faceted searching and other advanced data classification objects.
     
    International Language Support. dtSearch products support all Unicode languages, including both right-to-left languages, and special Chinese/Japanese/Korean character options.

    The dtSearch Engine. The dtSearch Engine for Win & .NET and the dtSearch Engine for Linux make available dtSearch document filters and instant searching for a wide range of Internet, Intranet and other commercial applications. The SDKs include native 64-bit and 32-bit C++, Java and .NET (through 4.x) APIs. For over a hundred developer case studies, please see www.dtsearch.com/casestudies.html. In addition to standard OEM licenses, the SDK also makes available the document filters for separate OEM licensing.
     
    Other dtSearch Products. The new release also covers dtSearch Web with Spider for quickly publishing instantly searchable data to an Internet or Intranet site, dtSearch Network with Spider for instantly searching across a network, dtSearch Publish for publishing searchable data to portable media, and dtSearch Desktop with Spider for desktop search.
     
    For more information, or to download fully-functional evaluations, please call 1-800-IT-FINDS (or 301/263-0731), email info@dtsearch.com or visit www.dtsearch.com.
     

    # # #
     
    About dtSearch, www.dtsearch.com
    The Smart Choice for Text Retrieval® since 1991, dtSearch offers over 21 years of experience in parsing and searching data. The dtSearch product line includes enterprise and developer text search products, meeting some of the largest-capacity text retrieval needs in the world. dtSearch products have received hundreds of excellent case studies and press reviews. (Please see www.dtsearch.com for these.) The company has distributors worldwide, including coverage on six continents.
     
    GeneralProtect Workbook from Unauthorized Access by Assigning Password in Cloud Pin
    Monday, July 30, 2012 12:49pm by saaspose

    What’s new in this release?

    The latest version of Saaspose.Cells now offers to secure your workbooks from unauthorized access. You can protect your workbook to prevent others from making changes to the layout of the worksheets in a workbook. Saaspose.Cells allows you to assign password to your workbook to make sure that only authorized access is permitted to edit the structure and layout such as moving, adding or deleting worksheets in a workbook. Similarly, you can unprotect workbook to allow the access for making any changes to the workbook. Once you unprotect your workbook by providing the existing password, the layout and structure of the workbook can be modified by anyone. You can refer to our comprehensive documentation that guides you through the complete features and examples of Saaspose.Cells. All you need to do is download the required SDKs of Saaspose.Cells and enhance the productivity of your applications in the cloud.You can protect and unprotect your workbooks easily using the feature rich Saaspose.Cells REST API. Following is list of Saaspose.Cells REST examples that can be used for protect and unprotect requirements of your spreadsheets.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose documentation that may guide you briefly how to use Saaspose APIs on Amazon S3 Storage for performing different tasks like the followings.

    Overview: Saaspose.Cells

    Saaspose.Cells is a REST based API for processing spreadsheets in the cloud. It allows creating, manipulating and converting spreadsheets in your web, desktop, mobile and cloud applications. It supports rows, columns, cells, text, data, images, hyperlinks, comments, formulas & many other aspects of spreadsheet. It can be used with any language to incorporate the spreadsheet processing features in any type of business application. It is a platform independent API & can be used with any language.

    More about Saaspose.Cells

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465


     
    GeneralIntegrate Amazon S3 Storage with Saaspose REST APIs & Process Your Files Pin
    Sunday, July 29, 2012 1:42pm by saaspose

    What’s new in this release?

    Saaspose development team is very happy to announce the Amazon S3 Storage Integration with Saaspose File Format REST API. Saaspose provides you REST based file format APIs to process your documents in the cloud. You can create, manipulate, and convert documents, presentations, spreadsheets, PDF files, barcodes, and images etc. All of these file formats can be processed with the help of feature rich REST APIs provided by Saaspose. We do understand that many of our customers already use services of external storage providers or want to keep their files with other storage provides. That’s why we have decided to provide flexibility in our APIs to process the files from these external storage providers. We have recently introduced the support for Amazon S3 Storage. Amazon S3 allows you to store your files in the cloud. You can integrate your existing Amazon S3 account with Saaspose cloud API. You can configure Amazon S3 storage with Saaspose using our web interface quickly and easily. You only need to select ‘Amazon S3 Storage’ from ‘Create New Storage’ menu. On create Amazon S3 Storage page, you can enter access key and secret key. Once the form is saved, you’ll be able to use your Amazon S3 storage with Saaspose API.

    You can then use Saaspose.Storage API to work with your files. For example, you can create new folder on Amazon S3 storage, upload a file, get storage usage, delete a file or a folder etc. We have also integrated Amazon S3 Storage with Saaspose.Slides API. This means, you can upload your presentations on Amazon S3 and use Saaspose.Slides to process those presentations. You can perform various operations on your presentations present on Amazon S3 including converting presentations to other formats, extracting shapes from presentations, getting image count from slides, and getting text items from presentations.  With the integration of Amazon S3 Storage with Saaspose API, you have got more flexibility to retain your files on external storage provider and use the Saaspose API to process those files. You can get a free Saaspose account for evaluation purposes, so please sign up today and start working with our file format APIs.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose documentation that may guide you briefly how to use Saaspose APIs on Amazon S3 Storage for performing different tasks like the followings.

    About Saaspose

    SaaSpose is a cloud-based document generation, conversion and automation platform for developers. Using SaaSpose makes it easy for Web & Mobile Developers to work with Microsoft Word documents, Microsoft Excel spreadsheets, Microsoft PowerPoint presentations, Adobe PDFs, OpenDocument formats, and email formats and protocols in their Apps.  The SaaSpose REST API enables you to quickly integrate the following into your Web: Document Assembly & Mail-Merge, Reporting, Document Conversion, Text and Image Extraction, Device Targeting, Metadata Removal, Barcode Recognition, Generation & Embedding, Email Templating & Tracking. The REST API can be called from any platform: .NET, Java, Ruby, Salesforce, Amazon etc.

    More about Saaspose

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465


     
    GeneralConvert CSharp enums to Java using CodePorting App Pin
    Thursday, July 26, 2012 6:15pm by codeporting
    With the help of CodePorting C#2Java you can fix small changes by editing your code in source code editor. CodePorting provides built-in source code viewer with syntax highlighter which enables you to read and access your code from anywhere, everywhere. With the help of this feature you can fix your code by using your iPad or smart phone while you are travelling or away from your machine.
     
    In C#, enum keyword is used to declare enumeration which consists of different types of name constants. This list is called enumerator list. Each enumeration element contains underlying type, default is int. This underlying type is used to decide how much storage should be allocated to each enumerator.
     
    Let me give you an example to show you how Codeporting engine converts C# enum to java.
     
    C# code:
     
    namespace CsPorter.Examples.Convert.Enums
    {
    /// <summary>
    /// Enum summary.
    /// </summary>
    public enum Example0
    {
    /// <summary>
    /// The first.
    /// </summary>
    One,
    /// <summary>
    /// The second.
    /// </summary>
    Two,
    //Third.
    Three
    }

    internal enum Example1: byte
    {
    OneByte,
    TwoByte,
    ThreeByte
    }

    internal enum Example2{
    One,
    Two,
    Three
    }

    internal enum Example3 {One, Two, Three}
    }
     

    Ported Java code:
     
    package CsPorter.Examples.Convert.Enums;

    // **** THIS CODE IS AUTO PORTED FROM C# TO JAVA USING CODEPORTING.COM TECHNOLOGY ****

    import com.codeporting.csharp2java.java.Enum;

    /**
    * <p>
    * Enum summary.
    * </p>
    */
    public /*enum*/ final class Example0 extends Enum
    {
    private Example0(){}
    /// <summary>
    /// The first.
    /// </summary>
    public static final int ONE = 0;
    /// <summary>
    /// The second.
    /// </summary>
    public static final int TWO = 1;
    //Third.
    public static final int THREE = 2;

    static {
    Enum.register(new Enum.SimpleEnum(Example0.class, Integer.class) {{
    addConstant("ONE", ONE);
    addConstant("TWO", TWO);
    addConstant("THREE", THREE);
    }});
    }

    }

    /*enum*/ final class Example1/*: byte*/ extends Enum
    {
    private Example01(){}
    public static final byte ONE_BYTE = 0;
    public static final byte TWO_BYTE = 1;
    public static final byte THREE_BYTE = 2;

    static {
    Enum.register(new Enum.SimpleEnum(Example01.class, Byte.class) {{
    addConstant("ONE_BYTE", ONE_BYTE);
    addConstant("TWO_BYTE", TWO_BYTE);
    addConstant("THREE_BYTE", THREE_BYTE);
    }});
    }

    }

    /*enum*/ final class Example2 extends Enum{
    private Example2(){}
    public static final int ONE = 0;
    public static final int TWO = 1;
    public static final int THREE = 2;

    static {
    Enum.register(new Enum.SimpleEnum(Example2.class, Integer.class) {{
    addConstant("ONE", ONE);
    addConstant("TWO", TWO);
    addConstant("THREE", THREE);
    }});
    }

    }

    /*enum*/ final class Example3 extends Enum {
    private Example3(){}
    public static final int ONE = 0;
    public static final int TWO = 1; public static final int THREE = 2;
     
    static {
    Enum.register(new Enum.SimpleEnum(Example3.class, Integer.class) {{
    addConstant("ONE", ONE);
    addConstant("TWO", TWO);
    addConstant("THREE", THREE);
    }});
    }
     
    }
     
    It is clear from the above example that Codeporting C#2Java engine uses final classes to replace enum. Although java language has enums but Codeporting converts enum to integer constant because enum appeared in java v1.5 only and before java v5 the acceptable way to translate enum is by using classes with integer constant.
     
    Newly added articles and documentation pages
     
    - Convert CSharp enums to Java using CodePorting App
    - CodePorting has converted more than 5 Million lines of C# code to Java
    - Convert C# is Operator to instanceof Operator in Java
    - Codeporting has improved CSharp to Java library and mapping coverage
     
    About CodePorting C#2Java App
     
    CodePorting helps you make your .NET applications cross platform compatible and allows migrating your .NET solutions, projects and files into Java in the cloud. Other than speed and accuracy of conversion; port your C# code directly either by uploading .cs files contained in a .zip file or import directly from popular version control repositories like GIT, Mercurial HG and SubVersion. You can also download a Microsoft Visual Studio plugin and convert C# code in the real time without leaving the development environment. You may also build your own customized code conversion applications using CodePorting APIs.
     
    Read more about CodePorting
     
    - Start converting C# Apps and source code to Java
    - CodePorting Homepage
    - CodePorting C#2Java Homepage
    - CodePorting Documentation
    - Watch out CodePorting introductory video
     

    Contact CodePorting

     
    Suite 163, 79 Longueville Road
    Lane Cove, NSW 2066, Australia
    Codeporting – Your CodePorting Experts
    Skype Name: CodePorting
    Email: support [@] codeporting [dot] com
     
    GeneralExtract, Modify & Convert Drawing Objects in Word Documents in the Cloud [modified] Pin
    Thursday, July 26, 2012 1:32pm by saaspose

    What’s new in this release?

    Saaspose development team is very happy to announce the new release of Saaspose.Words. This release allows developer to manipulate drawing objects such as lines and shapes in their documents including MS Word documents using Saaspose.Words REST API. Saaspose.Words has offered a suite of features for manipulating the drawing objects in documents in the cloud. You can convert drawing object to image and use the converted image as required. You can extract all the drawing objects from a document or you may choose to extract a single drawing object. Saaspose.Words allows you to get the images from document, you can either extract a single image or all images from the document. By using Saaspose.Words API, you can also get the OLE drawing object from document using Saaspose.Words REST API in your applications. We have SDK and REST examples for Saaspose.Words REST API that help you utilize it for your applications in the cloud. You can refer to Saaspose.Words documentation for more information about its examples and features. Saaspose.Words has made working with drawing objects in documents a simple and quick experience with its powerful and reliable features. Being a platform independent REST API, Saaspose.Words can be used across any platform using programming language of your coice. You can also integrate Saaspose.Words with other File Format APIs to combine different features for better productivity and performance of your applications.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose.Words documentation that may guide you briefly how to use Saaspose.Words for performing different tasks like the followings.

    Overview: Saaspose.Words

    Saaspose.Words is a platform independent REST API used for cloud based document creation, manipulation & conversion. It allows converting document to DOC, DOCX, XPS, TIFF, PDF, HTML, SWF & many other formats. It can be used languages like .NET, Java, PHP, Ruby, Rails, Python, jQuery & many others. It can also be integrated with other cloud services to process documents. Other features include Create & modify watermark, content & formatting manipulation, mail merge abilities, reporting features.

    More about Saaspose.Words

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465



    modified 26-Jul-12 20:18pm.

     
    GeneralExtract Images from Entire PDF File or Single PDF Page Using REST API [modified] Pin
    Wednesday, July 25, 2012 1:41pm by saaspose

    What's New in this Release?

    Saaspose development team is proud to announce the new release of Saaspose.Pdf. This new release now supports extracting images from PDF files. You can extract a single image or multiple images from a PDF document. While extracting the image, you may choose to extract the image from whole PDF document or a single PDF page. Saaspose.Pdf supports an important aspect of image extraction; size of extracted image. You can extract the image from PDF file with default size, also, you may specify a particular size for image extraction. You can utilize our SDK and REST examples to get started with image replacement of PDF files in the cloud. It requires a simple step, download the required SDK from Github.com and take your PDF files manipulation experience to next level. Saaspose.Pdf is a perfect choice for PDF manipulation as it provides the required solutions for your PDF files. This feature-rich API works well with other File Format APIs of Saaspose to give you access to powerful engines and take document processing and manipulation experience to another level.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose.Pdf documentation that may guide you briefly how to use Saaspose.Pdf  for performing different tasks like the followings.

    Overview: Saaspose.Pdf 

    Saaspose.Pdf is a REST API to create, edit & manipulate PDF files. It also convert PDF file to DOC, DOCX, HTML, XPS, TIFF etc. You can create a new PDF either from scratch or from HTML, XML, template, database, XPS or an image. A PDF file can also be rendered to JPEG, PNG, GIF, BMP, TIFF and many other image formats. It works with any language like .NET, Java, PHP, Ruby, Python and many others. It is platform independent REST API & working with web, desktop, mobile or cloud applications alike.

    More about Saaspose.Pdf

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com


    Phone: 1.214.329.1520


    Fax: 866.810.9465



    modified 26-Jul-12 20:24pm.

     
    GeneralImproved Recognition Accuracy in Barcode Xpress v8 [modified] Pin
    Wednesday, July 25, 2012 8:04am by Pegasus Imaging
    TAMPA, Fla. – July 25, 2012 – Accusoft, the leading provider of document, content and imaging solutions, announces the release of Barcode Xpress v8, barcode SDK, with improved QR code, DataMatrix and PDF417 recognition for easy integration of barcode functionality into applications.
     
    Barcode Xpress v8 equips software developers with a fast, accurate and easy-to-use barcode SDK that simplifies adding barcode reading and writing into applications. It is designed for a wide range of industries, including medical, financial, technology, retail and transportation.
     
    ”We continue to invest a significant amount of science and development in our Barcode Xpress engine in order to ensure our customers have the best barcode capabilities,” said Tom Setzer, Director of Recognition Technologies at Accusoft. “These improvements ensure that customers can read correctly even in the most extreme cases of damage to barcodes. This reduces the need for human interaction within many of our customers’ software systems.”
     
    Use Barcode Xpress to seamlessly integrate high-speed 1D and 2D barcode reading and writing into high-volume software applications with ease. Barcode Xpress can also be used to locate and decode multiple instances of barcodes anywhere on the page, return the content, and report recognition confidence values.
     
    Popular uses of barcode include auto-indexing, forms processing, inventory tracking, and batch separation. Barcode Xpress handles all of these barcode uses with speed and ease.
     
    Barcode Xpress SDK support is available for .NET 32-bit/64-bit, ActiveX 32-bit, ActiveX 64-bit, Java and Java ME. For more information or to download Barcode Xpress, visit http://www.accusoft.com/barcodexpress.htm[^].

    Accusoft is a registered trademark and Barcode Xpress is a trademark of Accusoft Corporation in the United States and/or other countries. Other trademarks are the property of their respective owners.
     
    About Accusoft
    Accusoft provides a full spectrum of document, content and imaging solutions. With its broad range of solutions, Accusoft is committed to delivering best-in-class, enterprise grade and fully-supported applications and a globally recognized suite of software development kits (SDKs). Accusoft products work reliably behind the scenes for capturing, processing, storing and viewing images, documents and more. Add barcode, compression, DICOM, image processing, OCR/ICR, forms processing, PDF, scanning, video, and image viewing to your applications. Products are delivered as applications and toolkits for multiple 32-bit/64-bit platforms and development environments, including iOS, Android, .NET, Silverlight, ASP.NET, ActiveX, Java, Linux, Solaris, Mac OSX, and IBM AIX. For more information, please visit www.accusoft.com.
    ###
    Accusoft Corporation


    modified 25-Jul-12 14:13pm.

     
    NewsWSO2 Workshop on Using the WSO2 API Manager Comes to Colombo Pin
    Wednesday, July 25, 2012 6:46am by andrew.kinetic
    One-day, hands-on workshop offers IT professionals best practices for installing, configuring and using advanced features of the WSO2 API Manager

    Palo Alto, CA – July 25, 2012 – Many traditional service-oriented architecture (SOA) and integration platforms enable rapid development, but they provide little support for collaboration, sharing and re-use. As a result, IT teams often experience rapid portfolio proliferation and sprawl rather than enhanced business agility. In a hands-on workshop for IT professionals, WSO2 (http://wso2.com) will explore how to use the WSO2 API Manager (currently in beta) to address these challenges and optimize an organization’s API interactions.

    To participate in the one-day workshop, “Discover the WSO2 API Manager,” attendees will need to bring a laptop capable of running a virtual machine (4 GB memory recommended). The workshop will be held in Colombo on Wednesday, August 8, 2012, from 9:00 a.m. – 4:00 p.m. To register, visit http://wso2.com/events/workshops/2012-august-colombo-discover-the-wso2-api-manager-practical-workshop.

    Discover the WSO2 API Manager
     
    The workshop is designed for IT architects and developers seeking to understand how to use WSO2 API Manager’s capabilities for publishing APIs, creating and managing a developer community, and scalably routing API traffic. Attendees will get hands-on experience in how to install, configure, use and manage the WSO2 API Manager (http://wso2.com/products/api-manager) product. Additionally, participants will learn how to take advantage of advanced features, such as creating service-level agreements (SLAs).

    Key topics will include:
    · Introduction to the WSO2 API Manager
    · Installing, configuring and using the WSO2 API Manager
    · Clients and API keys, sandbox and production
    · Analytics and activity monitoring
    · Advanced features for versioning, branding/skin development, deployment, and SLAs
    · Next steps, futures, and how to engage with WSO2

    Workshop Presenters
     
    Sumedha Rubasinghe is a WSO2 software architect and chair of the WSO2 data technologies management committee. He focuses on the development of the WSO2 Carbon Core, WSO2 Data Services, WSO2 Governance Registry, WSO2 Business Activity Monitor, and WSO2 API Manager. Sumedha also has contributed to the successful implementation of data, SAP and repository-based integration projects, as well many WSO2 QuickStart development consulting engagements.

    Hiranya Jayathilaka is the WSO2 Enterprise Service Bus product lead and a member of the WSO2 integration technologies management committee. He is a long-time committer on the Apache Synapse and Apache Xerces2/J projects; author of the FIX transport for Apache Synapse; and a contributor to several other open source projects, including Apache Derby and Apache Web Services.
     
    About WSO2
     
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
     
    GeneralAdd Table While Generating PDF, Stable Extraction of PDF Text & Images Pin
    Tuesday, July 24, 2012 1:49pm by Usman Sarfraz

    What's New in this Release?

    The latest version of Aspose.Pdf for .NET (7.1.0) has been released. This new release provides a long awaited feature to add a table inside an existing PDF document. With the introduction of this feature Aspose.Pdf for .NET can add a table while generating PDF document from scratch, and it supports adding tables inside existing PDF documents. This release version also supports the feature to add a tooltip to a form field. But that’s not all. We have also added a feature that allows you to convert a linearized file into a non-linearized document (and vice-versa: convert a non-linearized file into a linearized document). We’ve made text and image extraction features more stable. Furthermore, we have greatly improved the image and text stamping feature. The feature to convert PDF files into PDF/A format has also been improved. Please note that in this release, we have specifically focused on memory management when dealing with existing PDF documents. This release includes plenty of new and improved features as listed below

    • Add table inside an existing PDF document
    • Provide facility to validate PDF file version
    • Add a property in GraphInfo class for object FillPatern
    • How to get Font information from a widget annotation?
    • Convert Linearized Pdf to non-linearized
    • Get / Set form field tooltips
    • Embed Font in Existing PDF file
    • Get / Extract Javascript code from Submit button
    • Support Non-Latin character sets when extracting text from Pdf
    • Get Alternate Text of Image
    • Improved Memory utilization is during PDF concatenation
    • Implement Image property for FigureElement class
    • Enhanced Page rendering that requires windows authentication
    • Margins of some cells have improper color is fixed
    • TextFragmentAbsorber is now returning correct font size of text
    • PDF to PNG conversion is rendering complete page contents
    • Text missing is fixed when PDF is converted into Jpeg
    • Text added to PDF is being displayed upside down is now fixed
    • Words are doubled when retrieving text from pdf is fixed
    • Improved Font/Cropping in Multiline
    • HTML2PDF Table width now properly shown
    • PDF2Jpeg Conversion. Converted Image problem
    • Improved Convert HTMl to PDF
    • Cell Padding now working properly
    • HTML to PDF conversion problem is fixed
    • Extracting Accessibility Information
    • Errors in log  are fixed during PDF to PDF/A conversion process
    • Page orientation is being honored during printing
    • Text is lost is fixed when converting a PDF to a series of PNGs
    • Enhanced PDF Print Quality
    • Improved attachments extract from PDF document
    • XPS to PDF conversion issue with images is resolved
    • Convert HTML to PDF - missing buttons is fixed
    • Problem resolved with special characters and very slow printing
    • Form fields values visibility is fixed in Appended PDF pages
    • Add CheckBox to PDF file
    • Aspose.Pdf for .NET v6.9 Hangs issue is fixed, when opening the PDF document
    • Concatenated file errors  on opening are fixed (Evaluation Mode)
    • Improved printing a document (signatures at the end are upside down after printing)
    • Extremely slow page stamping with Aspose.PDF 6.9 is fixed
    • Unnecessary spaces in PDF to HTML conversion is fixed
    • Edit Multiple PDF documents
    •  Stamping breaks document (Corrupt Content Exception)
    • Text is being added upside down inside an existing PDF document
    • Aspose PDF 7.0.0.0 Stamp Opacity is ignored when Converting to Image
    • Improved accessing attachments in PDF
    • Issue in setting Form Fields to Read Only
    • Required Field now triggering after updating PDF Form
    • Issue is resolved while importing data from XML to PDF
    • Incorrect Font detection is fixed
    • Convert HTML to PDF missing image
    • XSL-FO to PDF layout and missing text issue is fixed
    • How to fill form fields on per-existing interactive PDF form
    •  Extended features lost are fixed when opening and saving XFA form
    • PDF sign locks source file is fixed now
    • PdfFileMend is now adding BarCode Image stored in MemoryStream

    Other most recent bug fixes are also included in this release.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Aspose.Pdf for .NET documentation that may guide you briefly how to use Aspose.Pdf for performing different tasks like the followings.

    Overview: Aspose.Pdf for .NET

    Aspose.Pdf is a .Net Pdf component for the creation and manipulation of Pdf documents without using Adobe Acrobat. Create PDF by API, XML templates & XSL-FO files. It supports form field creation, PDF compression options, table creation & manipulation, graph objects, extensive hyperlink functionality, extended security controls, custom font handling, add or remove bookmarks; TOC; attachments & annotations; import or export PDF form data and many more. Also convert HTML, XSL-FO and MS WORD to PDF.

    More about Aspose.Pdf for .NET

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Aspose - Your File Format Experts

    sales@aspose.com

    Phone: 888.277.6734

    Fax: 866.810.9465


     
    NewsWSO2 to Present Technical Webinar on Using Cloud-Enabled WSO2 Application Server for Business Scalability Pin
    Tuesday, July 24, 2012 6:51am by andrew.kinetic
    WSO2 webinar on August 2, examines how to build cloud-enabled Web applications and services using the WSO2 Application Server and WSO2 Developer Studio

    Palo Alto, CA – July 24, 2012 – An elastic cloud infrastructure allows businesses to rapidly deploy applications while minimizing costs. However, the traditional application servers deployed in most organizations do not meet the requirements necessary for them to move to the cloud. What enterprises need instead are application servers that support a wide range of deployment options, including installation on public and private clouds in addition to standalone uses. To facilitate this effort, WSO2 will present a free webinar on how developers can optimize their business scalability with the cloud-enabled WSO2 Application Server (http://wso2.com/products/application-server).

    The one-hour technical session, “WSO2 Intro Webinar - Scale your Business with the Cloud-Enabled WSO2 Application Server," is being held twice on Thursday, August 2: 9:00 a.m. – 10:00 a.m. PDT for the Americas and 10:00 a.m. – 11:00 a.m. GMT for Europe and Asia-Pacific. For more information, visit http://wso2.org/library/webinars/2012/07/wso2-intro-webinar-scale-your-business-cloud-enabled-wso2-application-server.

    Scaling Your Business with the Cloud
     
    The webinar will begin with an architectural overview of the WSO2 Application Server, which is part of the WSO2 Stratos cloud middleware platform that provides cloud-native features, such as self-provisioning, multi-tenancy, elasticity and metering. The session then will examine how to develop Web applications and Web services together with the WSO2 Developer Studio. Additionally, the webinar will cover key features of the WSO2 Application Server, including:
    * Multi-tenancy support
    * Lazy loading and resource sharing
    * Dependency management and class loading
    * Clustering and session replication
    * Seamless integration with the WSO2 SOA platform, user management, WSO2 Governance Registry, and Jaggery integrated developer environment (IDE).

    The webinar will be presented by Sagara Gunathunga, WSO2 technical lead and a member of the WSO2 development technologies team, who focuses on the WSO2 Application Server. An expert in Web services and distributed systems, Sagara is vice president of the Apache Web Services project, a Project Management Committee (PMC) member, and a committer on a number of Apache projects.
     
    About WSO2
     
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
     
    GeneralDevart announces New Entity Developer Pin
    Monday, July 23, 2012 10:48pm by Devart
    In midsummer Devart Team is not resting and works up a sweat to deliver you the most up-to-date and profound product. So here it is, the new Entity Developer 4.5 with support for named queries and stored procedures in NHibernate models.
    New version of Entity Developer extends NHibernate mapping support, now providing an opportunity to create methods from SQL queries. For this named SQL queries feature of NHibernate is used. Entity Developer interprets named SQL queries as methods of the model, for which a helper class containing the corresponding methods will be generated.
    Entity Developer allows creating methods returning scalar or entity results or no result. The named SQL queries feature can also be used for creating methods calling stored routines. For stored routines, you don't need to write SQL manually, just specify the name of the routine and Entity Developer will generate the query automatically.
    Developers who use Database First Approach will gain even more with the new Entity Developer, e.g. an opportunity to generate methods from stored routines just by selecting them in the Create Model Wizard when creating model. It is also possible to create a method in the model by dragging the corresponding stored procedure or function from Database Explorer to the diagram area or in the Model Explorer window. Moreover, with the help of Update From Database Wizard it is possible to add new and modify the existing methods in the model.
    To demonstrate the simplicity and utility of the implementation and use of named SQL queries along with many other kinds of NHibernate mapping, Devart Team presents NHibernate Mapping Samples application, which demonstrates 50 different mapping cases, the way they are mapped using both fluent and XML mapping, and their usage. Visit the NHibernate Mapping Samples blog article to read more about this application and download it.
    Pricing and availability
    Download and evaluate the new version of Entity Developer on the Download Page.
    For purchasing Entity Developer visit product's Ordering Page. The price for a single license starts at $99.95.
    To provide feedback on the new version visit Devart  forums or use a  contact form. There is also a feedback form, and Devart Team is always glad to hear users' comments and take into account their development needs.Feel free to share ideas about new Entity Developer features, that can be done on theUserVoice. See Devart blog article for more information.
    About Devart
    Devart is a widely recognized provider of database connectivity solutions and tools for the most popular databases, including MS SQL Server, MySQL, Oracle, PostgreSQL, InterBase, Firebird and SQLite.
    Since 1998, Devart has been focused on the development of native database data access solutions, development and database tools for a wide range of databases and development technologies. Now, Devart solutions provide the fastest data access available on the market and the broadest database support to many thousands of industry professionals.
    For additional information about Devart, visit the official web site.
     
    NewsAutomatically converts CSharp Out and Ref Keyword to Java using CodePorting Engine Pin
    Monday, July 23, 2012 6:32pm by codeporting
    In my Previous Blog I have told you that CodePorting C#2Java Application uses a powerful and absolute parsing engine. It can parse and converts thousands of lines of code from C# to Java in just few seconds. Parsing engine is fully compatible to International standards like ECMA 334 and 335.It supports syntax and significs of latest version for Microsoft C# language and can easily translate it to Java.
     
    Following are some features of CodePorting Parsing Engine:
     
    • Provide most accurate conversion
    • Preserves code formatting
    • Support customized library mapping
    • Its extensible library mapping allows you to add maps for third party libraries
    • It has already mapped thousands of .Net libraries and converted to java and count is still going on
    • Requires no installation just sign-in and start converting C# code to Java
    • It converts your code instantly, just paste your code and it will be converted in seconds
    • Fastest conversion, converts mega projects with million of lines of code in few minutes.
    Support projects/solutions from all versions of Visual Studio(2002, 2003, 2005, 2008, 2010)
    • Automatically handle partial classes and partial methods
    • Input code formatting does not matter, can convert badly formatted code easily
    • Automatically renames members to Java style
    • Supports default arguments and automatic properties
    • Supports complex language constructs like Out, Ref, multidimensional arrays, enums, lifted nullable types
     
    In C# out keyword is used while passing some arguments by reference. Out is somewhat similar to ref keyword. The only difference is that ref requires variable that needed to be passed. Both out and ref are not available in Java. Lets learn how C#2Java engine handles them while converting code to Java.
     
    The following code represents the example:
     
    C# Code:
     
    namespace C#2Java.Examples.Convert.LanguageConstructs.OutRef
    {
    public class Example26
    {
    //single-line statement
    void Method()
    {
    int i;
    do
    MethodRef(out i);
    while (true);
    }
     
    //workaround of above that can be autoported
    void Method2()
    {
    int i;
    bool ret;
    do
    {
    MethodRef(out i);
    ret = MethodRef(out i);
    }
    while (ret);
    }
     
    bool MethodRef(out int outI)
    {
    outI = 42;
    return true;
    }
    }
    }
     
    Generated Java Code:
     
    package C#2Java.Examples.Convert.LanguageConstructs.OutRef;
    // ***** THIS CODE IS AUTO PORTED FROM C# TO JAVA USING CODEPORTING.COM TECHNOLOGY ******
    public class Example26
    {
    //single-line statement
    private void method()
    {
    int i = 0;
    do
    {
    int[> referenceToI = { i };
    methodRef(/*out*/ referenceToI);
    i = referenceToI[0>;
    }
    while (true);
    }
    //workaround of above that can be autoported
    private void method2()
    {
    int i = 0;
    boolean ret;
    do
    {
    int[> referenceToI = { i };
    methodRef(/*out*/ referenceToI);
    i = referenceToI[0>;
    referenceToI[0> = i;
    ret = methodRef(/*out*/ referenceToI);
    i = referenceToI[0>;
    }
    while (ret);
    }
     
    private boolean methodRef(/*out*/ int[> outI)
    {
    outI[0> = 42;
    return true;
    }
    }
     
    It is clear from the above example that CodePorting Engine use java arrays where values are sent by reference. This perfectly imitates the functionality of the out and ref keywords.
     
    GeneralFind, Replace Text in Word Document & Retain Original Text Formatting Pin
    Monday, July 23, 2012 1:35pm by saaspose

    What’s new in this release?

    Saaspose development team is proud to announce the new release of Saaspose.Words. This release gives a detail overview of text replacement in documents including MS Word documents. Text replacement is a simple but an important feature used in our daily document manipulation tasks. Saaspose.Words provides a reliable and quick solution for replacing text in documents, independent of the application platform and language. You can find required text in your documents and replace the results returned by search function. Saaspose.Words assures that text replacement within a document is accurate and text formatting like font, color and type are retained during text replacement. You can replace text in documents at a single instance or you may choose to replace it at multiple or all instances in the document. We have our helpful documentation for Saaspose.Words that is composed of features and examples of this REST API. You can get started with incorporating text replacement feature in your applications by simply downloading the required SDKs.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose.Words documentation that may guide you briefly how to use Saaspose.Words for performing different tasks like the followings.

    Overview: Saaspose.Words

    Saaspose.Words is a platform independent REST API used for cloud based document creation, manipulation & conversion. It allows converting document to DOC, DOCX, XPS, TIFF, PDF, HTML, SWF & many other formats. It can be used languages like .NET, Java, PHP, Ruby, Rails, Python, jQuery & many others. It can also be integrated with other cloud services to process documents. Other features include Create & modify watermark, content & formatting manipulation, mail merge abilities, reporting features.

    More about Saaspose.Words

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465


     
    GeneralRapid Growth of Customers Betting their Business on Citrusleaf’s Real-Time NoSQL Database Leads Company to Attract Four-Time CEO as New Chief Executive Pin
    Monday, July 23, 2012 10:29am by andrew.kinetic
    Mountain View, CA – July 23, 2012 – In markets where companies live or die by the success of their Web interactions, more firms are betting their business on the Citrusleaf real-time NoSQL database. This rapid growth of customers in production within some of the industry’s most data-intensive environments has enabled Citrusleaf to attract new CEO Bruce Fram. A seasoned chief executive, Bruce brings a long track record of success in driving company growth by making customers the top priority.
     
    “Citrusleaf provides great database technology, but what stunned me was the incredible customer traction that this company has seen. These users’ passion and willingness to bet their business on Citrusleaf speaks volumes,” said Bruce Fram, Citrusleaf CEO. “I am excited to work with the Citrusleaf team in expanding the value we bring to these customers and to meeting our mission of adding 1,000 more passionate customers in production in the next three years.”
     
    “We started Citrusleaf because of our direct understanding and experience with the challenges of managing big data in real-time. Our mission is to take the pain out of that process,” said Citrusleaf Co-founder and CTO Brian Bulkowski. “Bruce’s decades of experience in data management and analytics—plus his career-long commitment to building companies through customer satisfaction—immediately grabbed our attention. We’re thrilled to have Bruce join us in delivering on our vision to meet companies’ growing demands for reliable real-time big data management.”
     
    About Bruce Fram
    Bruce is a self-described serial entrepreneur who brings 25-plus years of proven executive leadership experience in the data management, operating system, networking, enterprise software, and software as a service (SaaS) industries. Most recently, he served as founder, CEO and president of GridIron Systems, a leader in big data acceleration. Prior to GridIron, he was founder, CEO and president of Luminate Software, a SaaS pioneer. As president and CEO of Network General, Bruce led the company’s successful $275 million private equity purchase from McAfee in 2004. Additionally, he served as president and CEO of Mantara Inc., and as vice president of Open Software Operations at EMC Corporation. Bruce graduated magna cum laude with a BS in management from Syracuse University, and he holds an MBA from the Wharton School, University of Pennsylvania.
     
    About Citrusleaf
    Citrusleaf, Inc. offers the only real-time NoSQL database that delivers predictable high performance for mission-critical, Web-scale applications. Citrusleaf’s flash-optimized, shared-nothing architecture scales linearly, consistently processing over 200k transactions per second per node with sub-millisecond latency. With automatic fail-over, replication, and cross data center synchronization, the Citrusleaf database reliably stores billions of objects and terabytes of data—while providing 100% uptime and a 10x improvement in TCO over other NoSQL databases. Today customers accelerating their business with Citrusleaf include adMarketplace, AppNexus, eXelate, Sony’s So-net, and The Trade Desk. For more information, visit http://citrusleaf.net.
     
    Citrusleaf is a registered trademark of Citrusleaf, Inc., in the United States and/or other countries. All other trademarks and registered trademarks are the properties of their respective owners.
     
    NewsWSO2 CTO to Present Webinar on How OEMs Can Take Advantage of WSO2’s Cloud Enabled SOA Middleware Pin
    Monday, July 23, 2012 9:36am by andrew.kinetic
    Free webinar will share how other OEMs are using WSO2’s award-winning middleware today and explain business and technology benefits available to OEMs

    Palo Alto, CA – July 23, 2012 – OEMs face several challenges in implementing software strategies that meet the market demands of today and can adapt to demands of the future. Incorporating new industry standards, migrating between on-premise and the cloud, and entering into licensing agreements that won’t limit opportunities are just a few of the factors OEMs need to consider. A webinar led by WSO2 Co-founder and CTO Paul Fremantle will discuss how several OEM customers are taking advantage of the WSO2 platform (http://wso2.com/products/platforms) to address these requirements and how other OEMs can benefit as well.
     
    The webinar, “Expanding OEM Opportunities with WSO2,” will be held Wednesday, July 25, from 9:00 a.m. – 10:00 a.m. Pacific. For more information, visit: http://wso2.org/library/webinars/2012/07/expanding-oem-opportunities-wso2.

    In the webinar, Paul will examine how WSO2 provides OEMs with cloud-enabled middleware that supports service-oriented architecture (SOA) best practices on which they can build their vertical applications. Key questions he will in address in the session are:
    * What is the WSO2 stack?
    * How have other companies adopted WSO2 technology as OEMs?
    * What are the benefits of WSO2 as an OEM partner?
    * How does an OEM relationship work with open source software licensing?
    * What are the normal commercial approaches that WSO2 and OEM partners take together?

    Webinar presenter Paul Fremantle is WSO2 co-founder and CTO. Recognized by InfoWorld as a Top 25 CTO, Paul was responsible for simultaneously leading development of the groundbreaking WSO2 Enterprise Service Bus and Apache Synapse ESB. He currently is co-chair of the OASIS Web Services Reliable eXchange Technical Committee, as well as vice president of the Apache Synapse Project.
     
    About WSO2
     
    WSO2 is the lean enterprise middleware company. It delivers the only complete open source enterprise SOA middleware stack purpose-built as an integrated platform to support today’s heterogeneous enterprise environments—internally and in the cloud. WSO2’s service and support team is led by technical experts who have proven success in deploying enterprise SOAs and contribute to the technology standards that enable them. For more information, visit http://wso2.com, or check out the WSO2 community on the WSO2 Blog (http://wso2.com/blogs), Twitter, LinkedIn, Facebook, and FriendFeed.
     
    Trademarks and registered trademarks are the properties of their respective owners.
     
    GeneralKeyoti release RapidSpell Silverlight v2.0 Pin
    Monday, July 23, 2012 4:40am by Keyoti
    Keyoti are pleased to release RapidSpell Silverlight v2.0
     
    Improvements in v2.0
     
    - Added Silverlight 5 DLL
    - Sentence capitalization correction
    - Small bug fixes
     
    RapidSpell Silverlight allows developers to add a dialog spell checker to Silverlight applications (SL v3, v4 and Windows Phone 7).
     
    RapidSpell Silverlight spell checks plain text boxes, rich text boxes (SL v4) and 3rd party controls. Designed to have a minimal foot-print, uncompressed, the DLL and English dictionary total only 570KB.
     
    Full Details and Evaluation Download can be found here;
    http://keyoti.com/products/rapidspell/silverlight/[^]
     
    GeneralLinqConnect Now Supports Metro Application Development Pin
    Monday, July 23, 2012 1:37am by Devart
    This July Devart presents the new edition of LinqConnect – LinqConnect for Metro. Developers often face the situation when they have to create web services and data through them, because metro applications can not connect to databases directly. And many find it really inconvenient. New LinqConnect releases developers of the excess work. It offers an embedded database engine, based on SQLite, that allows Metro Style applications to store data in a fully relational database. Now XAML Metro applications can be developed with true ORM data access.
    Moreover, LinqConnect allows using ADO.NET interface for working with data, which was not available for Metro before.
    Storing data in a relational database provides developers a number of advantages - such as transactions, constraints, indexes, and generally provides higher performance and lesser file size. The use of relational transactional database also increases reliability of local data storage. Small and efficient, and at the same time powerful SQLite database engine together with ADO.NET and LINQ interfaces for data access make LinqConnect a perfect choice to store data locally in Metro applications.
    Devart Team puts maximum efforts to facilitate developers work with our tools. See LinqConnect for Metro: Quick Start Guide, tutorial that shows how to use LinqConnect for working with data and to bind data to user interface elements, for more information.
    Download
    Download
    Feel free to  download LinqConnect and don't forget to provide feedback on the new version using Devart's  forums or the  contact form. There is also a feedback form, and Devart Team is always glad to have users comments and take into account their development needs.
    Have any ideas about new LinqConnect features, go to  UserVoice on Devart web-site.
     
    GeneralSearch, Modify & Extract Text from a Presentations Using REST API Pin
    Sunday, July 22, 2012 1:25pm by saaspose

    What's New in this Release?

    Saaspose development team is proud to announce the new release of Saaspose.Slides. This release provides the ability to add text, modify text or extract text from the presentation through the REST API. Using Saaspose.Slides, you can replace text in presentations with new text at a single instance or all instances. Saaspose.Slides is a REST API that efficiently supports the replace text feature for your presentations in the cloud.

    You can find text in whole presentation or you may choose to find the text in a specific slide. Once you have found the required text in presentation in search results, you can replace the text with new text in whole presentation. You may choose to replace text in a single slide at a single instance. Saaspose.Slides assures accuracy; speed and reliability in its search operations used for text replacement requirements. Saaspose.Slides assures complete flexibility to replace multiple texts in your presentations having several pages. You can refer to our documentation for a complete overview of Saaspose.Slides features and examples.

    Newly added documentation pages and articles

    Some new tips and articles have now been added into Saaspose.Slides documentation that may guide you briefly how to use Saaspose.Slides for performing different tasks like the followings.

    Overview: Saaspose.Slides

    Saaspose.Slides is a REST based API that allows developers to read, write & modify a PowerPoint presentations in cloud. It is platform independent API & can be used by developers in web, desktop, mobile & cloud applications alike. It provides a rich set of features like creating presentation from scratch, modify various aspect of a presentation & converting a presentation to PDF, XPS, TIFF, SVG, HTML, PNG, JPEG, GIF & BMP formats. It helps you add, modify or extract text from the presentation.

    More about Saaspose.Slides

    Contact Information

    Aspose Pty Ltd, Suite 163,

    79 Longueville Road

    Lane Cove, NSW, 2066

    Australia

    Saaspose - Your File Format Experts 2.0

    sales@aspose.com

    Phone: 1.214.329.1520

    Fax: 866.810.9465


    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   


    Advertise | Privacy | Mobile
    Web04 | 2.6.130619.1 | Last Updated 19 Jun 2013
    Copyright © CodeProject, 1999-2013
    All Rights Reserved. Terms of Use
    Layout: fixed | fluid