|
SCADA Software Source Code Component Solution for C/C++, .NET
The quick and simple way to building SCADA Software with VC++, and the .NET platform
Download this scada & Hmi Sample 0
Download this SCADA Sample 1
Download this SCADA Sample 2
Product Tour E-XD++ and UCCDraw product walkthrough
Screenshots Applications built on E-XD++ ToolKit
Product feature comparison
UCanCode provides a complete set of services, consisting of design tools and a software development kit (SDK), for developers who want to create a user interface for industrial monitoring and process control drawing SCADA applications. These displays feature highly customized graphical objects that connect to underlying real-world data.
Developers prefer ucancode's solutions because they are easy to use, completely customizable, and can deploy to both the desktop and the Web. ucancode is the industry’s leading real-time SPC software, automating quality data collection and analysis
Add Diagrams and SCADA to your applications. E-XD++ Diagrammer brings accurate and intuitive diagrams and dashboards to your c++ desktop applications. It offers a comprehensive set of tools, components and graphic objects for creating visualization, editing and monitoring Windows applications.
It is very quickly and easily to use E-XD++ to build any SCADA Software:
1. Design the SCADA symbols:
With E-XD++ full edition, there is a shapedesigner application shipped, with this diagramming tool, you can use many advance features to build any kind of SCADA Software symbols, The Symbol Editor is an interactive point-and-click editor that creates, edits and organizes intelligent symbols to populate a user interface, as below:
When one composite symbol is designed, just use Copy/Paste to place it within the toolbox window at left side. These SCADA Symbols will be ready for use in future. The Shape Designer offers graphics editing capabilities and is fully interoperable with authoring tools, such as Adobe Illustrator or Inkscape, to ensure that the visual elements of the symbol are as appealing as possible. It then adds dynamics to graphics with rules describing how the elements of the symbol will react to data changes. For example, rules can define the alarm conditions that will cause a part of a factory symbol to blink, or how far a needle on a rotary gauge will rotate. The newly created symbol can then be cleanly organized in palettes and reused by the other design tools. By default, the Shape Designer contains palettes of fully functional symbols for diagramming and monitoring applications, such as gauges, buttons, meters, dials and more.
What is a "Symbol?" A symbol is a self-contained graphic object that represents a physical or conceptual element in the underlying application. For example, symbols can represent trucks, factories, network elements, dials or gauges.. They have built-in behavior and an exposed interface, like a graphic VC++ control. When an application executes, its symbols connect to real-world objects and are "data-aware"—when the underlying data changes in a meaningful way to the user, the overlying symbols change their appearances. For example, if a component in a data network reaches a pre-defined critical threshold, the symbol associated with it might display a red alarm. Or if an airplane has moved, then its symbol will move on a map display.
2. Design SCADA Software Screen:
With E-XD++ full edition, there is also a ready to use SCADA Screen design tool shipped, with this tool, you can use any symbols within the toolbox window at left side to build any screen as you want, just drag and drop, very simple and easy:
Diagram Editor is well-suited for defining the look and feel of applications that must automatically create a diagram—such as a business process, a network typology, a workflow, a dataflow, or entity-relational diagrams—from a data source.
If you want to identify any shape on the screen, just use the following dialog to define some key value. There are three key values that can be used to do this work, as below:
We change it's key value 1 to K2.
After one SCADA Software Screen is finished, you can save it to a xdg file. You can design as many screen as you want.
3. Building your SCADA Software:
With full edition of E-XD++ Visualization Component, there is an appwizard that will help you building a base framework of SCADA Software without written a line of codes, after the base framework of your application is finished, you can import any XDG files into your application, (Please remember the resource type must be XDGRes), to load a SCADA Screen just call the following codes, it is very easy:
LoadXdgFromResource(IDR_MAIN, _T("XdgRes"), FALSE);
In fact, this line of code can be called at any place if you want to load any new screen at any time.
4. Update the screen with data:
Mostly we can use the WM_TIMER of CWnd to recieve the data and refresh the SCADA Screen, if you want to update only one shape, just call UpdateControl of this shape, but if you want to update a list of shapes one time, we recommend you to call UpdateShapes, this will works more effective, below is the sample codes:
void CAutoDemoView::OnTimer(UINT nIDEvent)
{
// TODO: Add your message handler code here and/or call default
if(nIDEvent == ID_TIMER_ID)
{
CFODrawShapeList lstUpdate;
int xx0 = rand() % 20;
int xx1 = rand() % 18;
int xx2 = rand() % 25;
int xx3 = rand() % 16;
int xx4 = rand() % 12;
int xx5 = rand() % 21;
if(pK1 != NULL)
{
CString strText;
strText.Format(_T("%u mcA"), xx0 * xx1);
pK1->SetLabelText(strText);
lstUpdate.AddTail(pK1);
}
if(pK2 != NULL)
{
CString strText;
strText.Format(_T("%u C"), xx0 * xx2);
pK2->SetLabelText(strText);
lstUpdate.AddTail(pK2);
}
if(pK3 != NULL)
{
CString strText;
strText.Format(_T("%u Nm/h"), xx0 * xx3);
pK3->SetLabelText(strText);
lstUpdate.AddTail(pK3);
}
if(pX1 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx0 * xx4);
pX1->SetLabelText(strText);
lstUpdate.AddTail(pX1);
int nValue = xx0 * xx4;
if(nValue > 200)
{
pX1->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX1->SetBkColor(RGB(255,255,0));
}
else
{
pX1->SetBkColor(RGB(0,0,0));
}
}
if(pX2 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx0 * xx5);
pX2->SetLabelText(strText);
lstUpdate.AddTail(pX2);
int nValue = xx0 * xx5;
if(nValue > 200)
{
pX2->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX2->SetBkColor(RGB(255,255,0));
}
else
{
pX2->SetBkColor(RGB(0,0,0));
}
}
if(pX3 != NULL)
{
CString strText;
strText.Format(_T("-%u"), xx1 * xx5);
pX3->SetLabelText(strText);
lstUpdate.AddTail(pX3);
int nValue = xx1 * xx5;
if(nValue > 200)
{
pX3->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX3->SetBkColor(RGB(255,255,0));
}
else
{
pX3->SetBkColor(RGB(0,0,0));
}
}
if(pX4 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx2 * xx3);
pX4->SetLabelText(strText);
lstUpdate.AddTail(pX4);
int nValue = xx2 * xx3;
if(nValue > 200)
{
pX4->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX4->SetBkColor(RGB(255,255,0));
}
else
{
pX4->SetBkColor(RGB(0,0,0));
}
}
if(pX5 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx2 * xx4);
pX5->SetLabelText(strText);
lstUpdate.AddTail(pX5);
int nValue = xx2 * xx4;
if(nValue > 200)
{
pX5->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX5->SetBkColor(RGB(255,255,0));
}
else
{
pX5->SetBkColor(RGB(0,0,0));
}
}
if(pX6 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx3 * xx5);
pX6->SetLabelText(strText);
lstUpdate.AddTail(pX6);
int nValue = xx3 * xx5;
if(nValue > 200)
{
pX6->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX6->SetBkColor(RGB(255,255,0));
}
else
{
pX5->SetBkColor(RGB(0,0,0));
}
}
if(pChartShape != NULL)
{
pChartShape->UpdateData(xx0 * xx1, xx0 * xx2, xx0 * xx3);
lstUpdate.AddTail(pChartShape);
}
if(lstUpdate.GetCount() > 0)
{
UpdateShapes(&lstUpdate);
}
}
else
{
CFODrawView::OnTimer(nIDEvent);
}
}
If you want to handle the click event, you can DoButtonClickEvent to do that.
That's all, below is the running - time mode of this sample.
SCADA Software Component
Process Control Diagram
Full VC++ Source Code
Real - time Drawing
Very easy to use shape Designer
SVG Import
The following is another sample on SCADA Application:
State 1:
State 2:
State 3:
With E-XD++ Component, you can add advanced SCADA functionality to your applications. The E-XD++ Library is a 100% VC++ data rendering and visualization system, built specifically for Visual Studio .NET and designed to bring your User Interface to the printed page. Now you only need a few days for building a very powerful label print or report print application.
The leader in visualization component -- FULL VC++ Source Code Shipped!
XD++ Diagrammer Suite is the the world’s leading VC++ and .NET visualization component. Renowned for incredibly rich graphics, XD++ helps thousands developers build applications that offer unparalleled functionality. Outstanding productivity lowers project risk and reduces maintenance headaches. With 10 years of dedicated research and development, UCanCode leads the market for visualization technologies, providing outstanding customer support.
Powerful, flexible, and easy to use Diagram Components.
Powerful and flexible enough to create diagrams exactly the way you want them to appear. So easy to use that you will be able to prototype your application in just a few minutes.
Feature rich.
With features such as automatic layout, multiple layers, collapsible sub-graphs, snap-to connection points, XML, SVG, and more, E-XD++ Have the power and flexibility you need to create sophisticated diagrams, quickly and easily. Events such as click, double-click, hover, select, rubber-band select, copy, delete, resize and move are supported. Operations such as drag-and-drop, unlimited undo/redo, and clipboard operations are common and complex, and are expected by today's sophisticated users. it full supports importing ArcGis, SVG and DXF File format.
Performance and Scalability.
UCanCode E-XD++ Capable of handling many thousands of nodes and edges, up to hundreds of thousands depending upon the complexity of the nodes you wish to draw and the operations you wish to allow. Our graphical classes are extremely lightweight objects enabling outstanding performance.
Save Time and Money and gain Reliability.
A diagram is worth 1,000 words, and E-XD++ is shipped with more than 500,000 lines of well designed and well tested code! It is used by hundreds of the world's most quality conscious companies. It will saves you thousands of hours of complex coding and years of maintenance.
Download this scada & Hmi Sample 0
Download this SCADA Sample 1
Download this SCADA Sample 2
The VC++ source codes of this sample is shipped with E-XD++ Library Enterprise Edition, order it now.
--------------------------------------------------------------------------------
Contact UCanCode Software
To buy the source code or learn more about with:
Product Inquiry
E-mail to (sales@ucancode.net)
Or call us at: +86-28-8535-4545
Fax us at: +86-28-8535-4645
Technical support online with msn messager: ucancode@hotmail.com
Download a trial solution http://www.ucancode.net/SCADA_Software_Tool_Source_Code.htm[^]http://www.ucancode.net/SCADA_Software_Tool_Source_Code.htm[^]
|
|
|
|
|
Free webinar-based training on July 30, provides IT professionals with best practices for optimizing API life-cycle management using WSO2 API Manager
Palo Alto, CA – July 25, 2013 – Increasingly, enterprises are implementing API best practices to expose business functionality and grow their revenue generation streams. The third WSO2 Summer School class of 2013 will examine how organizations can take advantage of managed APIs to enable new opportunities for monetization and ecosystem development by extending processes and services to customers, partners, and other groups within an organization.
The interactive online class, “API-Centric Enterprises,” is being offered at no cost as a part of the WSO2 Summer School 2013 program. It will be held on Tuesday, July 30, 2013 from 9:00 a.m. – 10:00 a.m. Pacific. To participate, register at: http://wso2.com/library/webinars/2013/07/api-centric-enterprises.
The class will begin by examining the emerging API landscape and how enterprises are becoming more API-centric. The session then will explore key building blocks of the WSO2 API Manager and how they can be utilized to create enterprise-ready business APIs. The class will highlight how WSO2 API Manager (http://wso2.com/products/api-manager/) offers a complete solution for publishing APIs, creating and managing a developer community, and enabling scalable routing of API traffic. Additionally, the session will discuss how WSO2 API Manager fosters new business models for monetizing APIs and provides unmatched flexibility for deploying on servers and in the cloud.
Leading the session will be Sumedha Rubasinghe, WSO2 senior architect and chair of the WSO2 data technologies management committee, who focuses on the development of the WSO2 Carbon Core, WSO2 Data Services, WSO2 Governance Registry, WSO2 Business Activity Monitor, and WSO2 API Manager. Sumedha has contributed to the successful implementation of data, SAP and repository-based integration projects, as well many WSO2 QuickStart development consulting engagements.
About Summer School 2013
Since 2009, the popular WSO2 Summer School program has helped more than 2,000 enterprise IT architects and developers become more familiar with service-oriented architecture (SOA) technologies and best practices. The all-new classes for 2013 will focus on the building a next-generation platform system to meet business demand, reduce time to market, and generate business opportunity. Taught by some of the industry’s leading technical experts, the classes offer an opportunity to obtain thousands of dollars worth of professional training at zero cost. For details on the program and how to sign up, visit http://wso2.com/landing/summer-school-2013.
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, Twitter, LinkedIn, Facebook, and FriendFeed
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
Webinar on July 31, will examine best practices for optimizing the automation and scalability of a SUSE Cloud private IaaS using a WSO2 Stratos private PaaS
Palo Alto, CA – July 24, 2013 – Increasingly, enterprises are adopting private infrastructure as a service (IaaS) clouds to take advantage of the scalability and flexibility inherent in cloud environments while avoiding the security and latency issues associated with publicly hosted settings. As a result, organizations are also reevaluating how to optimize their future application delivery models. To help facilitate this effort, WSO2 and SUSE will jointly present a webinar on how IT professionals can efficiently address modern enterprise challenges and changing business demands using SUSE Cloud, the first enterprise OpenStack distribution, and WSO2 Stratos, the most complete open platform as a service (PaaS).
The one-hour technical session, “SUSE Cloud and WSO2 Stratos - Bridging OpenStack and PaaS to Deliver the Service-Oriented Data Center,” is being held twice on Wednesday, July 31: 9:00 a.m. – 10:00 a.m. PDT for the Americas and 1:00 p.m. – 2:00 p.m. GMT for Europe and Asia-Pacific. For more information, visit http://wso2.com/library/webinars/2013/07/suse-cloud-and-wso2-stratos-bridging-openstack-and-paas-to-deliver-the-service-oriented-data-center.
Open Stack IaaS and PaaS for the Service-Oriented Data Center
The webinar will explore how IT professionals can efficiently and flexibly tackle the challenges of the modern connected enterprise using a combination of the SUSE Cloud (https://www.suse.com/products/suse-cloud) private IaaS solution and WSO2 Stratos private PaaS (http://wso2.com/cloud/stratos). The session will begin by examining why running a private PaaS enables an organization to get the most out of its IaaS investment. The webinar then will discuss how WSO2 Stratos can leverage the automation and scalability of SUSE Cloud to deliver secure, standardized development environments that enable migration to an agile, service-oriented delivery model. Additionally, the session will cover best practices for deploying and configuring WSO2 Stratos on a SUSE Cloud OpenStack private cloud environment.
Webinar Presenters
Chris Haddad is 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. Prior to joining WSO2, Chris led research teams as a research vice president at the Burton Group and Gartner advising Fortune 500 enterprise organizations and technology infrastructure vendors.
Frank Rego is business development manager at SUSE, the original provider of the enterprise Linux distribution and the most interoperable platform for mission-critical computing. Since 1999, Frank has worked closely with SUSE technology partners to define and bring to market best-of-breed solutions for enterprise and cloud computing.
About SUSE
SUSE®, a pioneer in open source software, provides reliable, interoperable Linux and cloud infrastructure solutions that give enterprises greater control and flexibility. More than 20 years of engineering excellence, exceptional service and an unrivaled partner ecosystem power the products and support that help our customers manage complexity, reduce cost, and confidently deliver mission-critical services. The lasting relationships we build allow us to adapt and deliver the smarter innovation they need to succeed—today and tomorrow. For more information, visit us at www.suse.com.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
SCADA and Industrial HMI Displays, Process Flow
Diagram Component Solution, Source Code Kit for C/C++, .NET
http://www.ucancode.net/Process-Flow-Diagram-Component-Control-SCADA-HMI-C-Source-Code.htm[^]
Product Tour E-XD++ and UCCDraw product walkthrough
Screenshots Applications built on E-XD++ ToolKit
Product feature comparison
SCADA and Industrial Process Diagram Component with 100% VC++ Source Code!
Download this solution 1.(Updated)
Download this solution 2.(New)
Here you can find a full VC++ Component (Library) for building any kind of Process Control diagram application or SCADA drawing application!
Monitoring GUIs for C++, VB, Java, and the .NET platform
UCanCode XD++ provides a complete set of services, consisting of design tools and a software development kit (SDK), for developers who want to create a user interface for industrial monitoring applications. These displays feature highly customized graphical objects that connect to underlying real-world data.
Fast, easy animation
Supports fast object animation with an easy mechanism for invalidating areas and updating relevant views. Ideal for displaying moving objects, blinking objects or objects that must update a status in real time.
Developers prefer UCanCode XD++'s solutions because they are easy to use, completely customizable, and can deploy to both the desktop and the Web.
E-XD++ Library is a powerful diagram drawing component for creating professional-looking business, technical drawings and illustrations for your documents quickly and easily. E-XD++ Library is the ideal program for creating a wide variety of flow charts, organization charts, data flow drawings, and diagrams. Specifically, E-XD++ Can be used for building any applications that can produce:
Business diagrams, presentations and illustrations
Circuit diagram drawing and printing
Organization and workflow charts
Software and process flowcharts
Database structures
Engineering schematics and technical drawings
Web-site structures and network diagrams
Schematic diagrams
Research layouts and maps
Floor plans, street and directional maps, traffic routings.
With E-XD++ Component, you can add advanced diagram drawing and layout functionality to your applications. The E-XD++ Library is a 100% C++ data rendering and visualization system, built specifically for Visual Studio .NET and designed to bring your User Interface to the printed page. Now you only need a few days for building a very powerful HMI and SCADA Process Conrol diagram based applications.
It has the following main features:
1. Ships with 100% VC++ / MFC Source Codes
2. Template setting for process control diagram drawing.
3. Load and save document file.
4. Multiple pages drawing and printing
5. Create connectors at any side of any symbols.
6. Make link line between any two connectors.
7. Over 15 new style links for drawing.
8. Link route when bridge.
9. Real - Time reflesh, you can add time for any shapes on the canvas.
10. All the source codes of the following screen shot's features will be sent to you.
11. It also has all the features of the following link:
Diagramming framework, 2D graphics, multiple pages, Drag and Drop, Microsoft Visio, Measurement units, Print, Print preview, Drawing line, Drawing Rectangle, Drawing Ellipse, Drawing Bezier Line, Drawing Polyline, Drag / Drop OLE Object, Lines Connect, Line and Curve Connect, Visio 2007 like Ruler, Drawing Arc Line, Draw Pie Shape, Open and play GIF89a file, Double buffer drawing, Database Design Diagram Solution, curve line, VC++ Source Code
The following screen shot is a power electric diagram demo:
with full edition, you will recieve the following circult drawing symbols freely, and you can also use ShapeDesigner.exe to design any kind of symbols by yourself.
1. Industrial Equipment Components.
2. Heating Equipment Components
3. Pumps Components.
And sample:
and flow sample:
E-XD++ Component is a comprehensive set of C++ classes that allow you to add interactive graphics to your application with a very minimal amount programming. The library encapsulates not only the drawing of graphical objects, but it also handles user interaction with the graphical views of your information. Such as moving, resizing, rotating, alignment, etc.
Download this solution 1.
Download this solution 2.(New)
The leader in visualization component -- FULL VC++ Source Code Shipped!
XD++ Diagrammer Suite is the the world’s leading VC++ and .NET visualization component. Renowned for incredibly rich graphics, XD++ helps thousands developers build applications that offer unparalleled functionality. Outstanding productivity lowers project risk and reduces maintenance headaches. With 10 years of dedicated research and development, UCanCode leads the market for visualization technologies, providing outstanding customer support.
Performance and Scalability.
UCanCode E-XD++ Capable of handling many thousands of nodes and edges, up to hundreds of thousands depending upon the complexity of the nodes you wish to draw and the operations you wish to allow. Our graphical classes are extremely lightweight objects enabling outstanding performance.
Save Time and Money and gain Reliability.
A diagram is worth 1,000 words, and E-XD++ is shipped with more than 500,000 lines of well designed and well tested code! It is used by hundreds of the world's most quality conscious companies. It will saves you thousands of hours of complex coding and years of maintenance.
The source codes of this sample is shipped with E-XD++ Library Enterprise Edition, order it now.
http://www.ucancode.net/Process-Flow-Diagram-Component-Control-SCADA-HMI-C-Source-Code.htm[^]
Contact UCanCode Software
To buy the source code or learn more about with:
Product Inquiry
E-mail to (sales@ucancode.net)
Or call us at: +86-28-8535-4545
Fax us at: +86-28-8535-4645
Technical support online with msn messager: ucancode@hotmail.com
Download a trial solution
|
|
|
|
|
CloudMunch
Launches First Open DevOps Management Platform for OpenStack
Uniting
Development & Operations Teams with the Open Source Cloud for Improved Agility
& IT Productivity
PORTLAND, OR FROM OSCON. – [July 23, 2013] –
CloudMunch, the DevOps management platform provider, announced today that it is releasing the world’s first Open DevOps platform for OpenStack. The CloudMunch Open DevOps solution makes it possible for software developers to deploy applications rapidly onto OpenStack cloud infrastructure. CloudMunch enables developers and IT operations to use virtually any preferred tool chain for development and continuous integration with continuous deployment to OpenStack. A free trial is available today by signing up on the CloudMunch website.
“With the addition of OpenStack to our DevOps management platform, we’re making the vision of Open DevOps a reality,” said Pradeep Prabhu, CEO CloudMunch. “At CloudMunch, we know it’s about choice so we focus on giving development and operations the freedom to choose whichever tools that make sense for their functions while uniting them into a powerful DevOps management platform to facilitate cross-team delivery.”
The CloudMunch platform provides a plug-n-play framework that integrates with industry leading open source tools and provides deep integration with such popular tools as Jenkins, Chef, Selenium and others. Adding the openness, flexibility and economic advantages of OpenStack - built using community
OpenStack code – further enables CloudMunch to enable Open DevOps and its potential to confer major productivity gains on IT organizations.
“As OpenStack becomes more broadly deployed across private and public clouds, a vibrant ecosystem of companies with complimentary solutions is
maturing,” said Heidi Bretz, Director of Business Development for the OpenStack Foundation. "We welcome technology platforms like CloudMunch that make it even easier for users to do Continuous Integration, Deployment and Delivery of their applications to OpenStack clouds.”
CloudMunch makes Open DevOps a reality, enabling customers to orchestrate and manage the entire DevOps process with any tool, moving application code and infrastructure code from source code repositories to testing and to production environments in any cloud:
- Project Level Self-Service Provisioning lets project teams
control the usage and management of infrastructure at the project level rather
than having operations do this at organizational level.
- DevOps App Builder makes possible rapid creation and
deployment of new apps, integrations, tests or deployments. Apps are
discoverable, context specific, and ready for self-service usage.
- Customizable Software Delivery Progression Workflow ensures
that application and infrastructure software builds go through all checks and
balances in a transparent way from development, test to release.
- Integrated Open Dashboard gives code progression project
visibility and alerts to project managers, testers, operations, and
developers.
- Cloud Scale DevOps Engine enables deployment and continuous
integration with enterprise class scalability and performance, enabling
master-master and master-slave clusters.
Supporting OpenStack for continuous delivery is the initial phase of CloudMunch’s Open Stack support. The company expects to enable users to test and
deploy OpenStack clouds in their next release. To download the free trial of CloudMunch for Open DevOps, visit https://www.coudmunch.com/openstack.
About CloudMunch
CloudMunch is democratizing DevOps by providing a powerful and open DevOps Management Platform. Its full stack platform makes continuous delivery of
applications and infrastructure fast and easy, letting development teams large and small focus on application code versus managing development and test
environments, continuous integration servers, deployment, or ongoing operations. Focus on Code. CloudMunch the rest. www.cloudmunch.com
modified 23-Jul-13 16:15pm.
|
|
|
|
|
Presentation will examine how to take advantage of cloud-native platforms, DevOps and APIs to evolve enterprise architecture and application best practices
Palo Alto, CA – July 23, 2013 – WSO2 today announced that WSO2 Vice President of Technology Evangelism Chris Haddad will deliver a presentation at the Gartner Catalyst Conference 2013, “Driving Enterprise Architecture Redesign: Cloud-Native Platforms, APIs, and DevOps.” WSO2 is a platinum sponsor of the Gartner Catalyst Conference, which will run July 29 - August 1, 2013 at the Manchester Grand Hyatt in San Diego, CA.
Transforming Enterprise Architecture for Today’s Demands
Today, high-performance enterprise architecture is rapidly changing due to three fundamental drivers: cloud-native platforms, APIs and DevOps. This session will explore how IT professionals can take advantage of these drivers to transform and optimize their enterprise architecture. It will examine how organizations can change the way they think about operational infrastructure, application life cycle practices, and successfully integrate and evolve infrastructure and applications, especially mobile applications.
• Time: 2:15 - 2:45 p.m. on Wednesday, July 31, 2013
• Location: Manchester Grand Hyatt in San Diego, CA
Many of the concepts that Chris will examine in the workshop are introduced in a white paper he recently developed, "DevOps meets ALM in the Cloud – Cloud DevOps PaaS." The paper can be downloaded at http://wso2.com/whitepapers/devops-meets-alm-in-the-cloud-cloud-devops-paas.
About the Presenter
Chris Haddad is 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. Prior to joining WSO2, Chris led research teams as a research vice president at the Burton Group and Gartner advising Fortune 500 enterprise organizations and technology infrastructure vendors.
Open Approaches to API Management, DevOps and the Cloud
The WSO2 booth at the Gartner Catalyst Conference will bring together Chris Haddad, WSO2Mobile (http://wso2mobile.com) CEO Harsha Purasinghe, and other cloud, API management, DevOps, mobile, and service-oriented architecture (SOA) experts to share best practices for:
• Building applications that can seamlessly and smoothly migrate between local servers, public clouds, private clouds, and cloud hybrid environments.
• Addressing common enterprise mobile challenges, ranging from the proliferation of diverse smart devices to building mobile applications.
• Using DevOps and API management to take advantage of new opportunities for monetization and ecosystem development by extending processes and services to customers, partners, and other groups within the organization.
• Enabling the robust life cycle management, governance and collaboration to continuously create develop and deploy enterprise applications into cloud environments.
• Encouraging adoption and reuse through the deployment of an intuitive Apple or Google Marketplace-like storefront that lets developers easily subscribe to and consume APIs, applications and gadgets.
WSO2 will demonstrate these use cases with solutions based on WSO2’s award-winning 100% open source software, including: the WSO2 Carbon (http://wso2.com/products/carbon) enterprise middleware platform, WSO2 Stratos (http://wso2.com/cloud/stratos) platform as a service (PaaS), and WSO2 App Factory (http://wso2.com/cloud/app-factory), which enables continuous cloud delivery through a shared, self-service, multi-tenant and elastic enterprise DevOps platform. Additionally, the booth will feature a preview of the WSO2Mobile enterprise mobile platform slated to launch in Q4 2013.
About the Gartner Catalyst Conference
The Gartner Catalyst Conference is known for its in-depth and comprehensive content, high-profile speakers, attendee-driven agenda, and independent point of view. The three and a half day event will showcase the convergence of mobile, cloud, and how big data is transforming IT, reshaping the way business is conducted with actionable advice, replicable best practices, peer–to–peer interaction, and high–profile analysts and guest speakers in an environment specifically designed for practical problem–solving and collaboration. The conference is dedicated to the “game-changing storm” of social media collaboration that transforms business necessities, creating agility and optimizing the way work gets done. For more information, visit: http://www.gartner.com/technology/summits/na/catalyst.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
WSO2 webinar on July 25, will examine business process capabilities and governance, life cycle, API, identity and user management best practices of a cloud DevOps platform
Palo Alto, CA – July 22, 2013 – Increasingly, enterprises seek to harness the cloud to optimize managed application development practices across their business units, partners and customers. A new webinar examines how WSO2 addresses this demand with WSO2 App Factory, which launched earlier this month.
The one-hour technical session, "In the Spotlight – WSO2 App Factory," will explore how the open source WSO2 App Factory enables continuous cloud delivery through a shared, self-service, multi-tenant and elastic enterprise DevOps platform. The webinar is being held Thursday, July 25, from 9:00 a.m. – 10:00 a.m. PDT. For more information, visit http://wso2.com/library/webinars/2013/07/in-the-spotlight-wso2-app-factory.
Implementing Cloud-enabled DevOps With App Factory
The webinar will introduce participants to the WSO2 App Factory architecture and examine how it empowers teams to collaboratively create, develop and deploy enterprise applications into the cloud while ensuring corporate and government compliance. The session also will review core features of WSO2 App Factory, such as governance, life cycle management, API management, identity and user management, and business process capabilities.
Additionally, the webinar will explore key functions of WSO2 App Factory, including:
• Provisioning application projects.
• Accelerating development iterations.
• Increasing best practice adoption and establishing agile application governance processes.
• Adopting a cloud platform and offering a PaaS.
• Obtaining an integrated DevOps experience.
• Delivering management dashboards for CXOs and project managers.
Jointly presenting the webinar will be Ramith Jayasinghe and Dhanushka Fernando, both members of the WSO2 App Factory team. Ramith is a WSO2 technical lead, who has provided technology consulting on customer engagements, including QuickStart programs focused applications and integration projects running on-premises and in the cloud. Dhanushka is a WSO2 software engineer, who brings extensive experience using Microsoft .NET, C++, WIX, Microsoft SQL Server, and ASP.NET related technologies.
About WSO2 App Factory
WSO2 App Factory provides an open source, open standards approach to cloud-enabled enterprise DevOps that enables continuous cloud delivery. It is built on—and integrates with—the award-winning 100% open source WSO2 Carbon enterprise middleware platform and WSO2 Stratos, the most complete platform as a service (PaaS) available.
A shared, self-service, multi-tenant and elastic enterprise DevOps platform, WSO2 App Factory empowers teams to collaboratively create, develop and deploy enterprise applications into cloud environments—without the delay of server provisioning. Robust governance and lifecycle management, including the ability to integrate with any software development lifecycle (SDLC) tools, ensure compliance with IT, corporate and government policies. At the same time, the ability to create an intuitive Apple or Google Marketplace-like storefront means developers can easily subscribe to and consume APIs, applications and gadgets.
For more information, see the July 10, 2013 press release, “WSO2 Debuts WSO2 App Factory Cloud-enabled Enterprise DevOps Platform,” or visit the WSO2 App Factory Web page at http://wso2.com/cloud/app-factory.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
WSO2 User Engagement Server combines powerful server-side capabilities with a store for easy access and the simplicity of visually creating dashboards
Palo Alto, CA – July 22, 2013 – Through the wealth of data generated from Web interactions, mobile devices, and sensors, enterprises have never had more information about their business. The challenge has been gaining the visibility to convert that information into knowledge. With today’s launch of WSO2 User Engagement Server (WSO2 UES), WSO2 provides these organizations a powerful new portal platform for converting volumes of data into valuable business insights.
The comprehensive and 100% open source WSO2 UES enables users to rapidly create visually appealing and engaging Web components for presenting data, such as dashboards, microsites and gadgets. Users have the flexibility to use the built-in Jaggery JavaScript integrated development environment (IDE) for advanced server-side capabilities, as well as HTML, cascading style sheets (CSS), and pre-built gadgets. As a result, the same platform enables business professionals to assemble gadgets and dashboards in minutes and empowers developers to deliver rich microsites for consolidating, monitoring and analyzing enterprise data.
WSO2 UES also features an Enterprise Store that provides users with easy, intuitive access to Open Social Gadgets; third-party data sources; and even other gadgets, microsites and dashboards published there by authorized users. The socially enabled Enterprise Store allows users to rate and comment on the available assets, helping others in the organization to select the resources that best suit their own needs.
“Business agility demands that more people in the enterprise have access to the tools they need to present data in a meaningful, easily accessible way,” said Dr. Sanjiva Weerawarana, WSO2 founder and CEO. “With WSO2 User Engagement Server, enterprises now have a single platform that business professionals and developers alike can use to quickly create feature-rich dashboards, microsites and gadgets for viewing, monitoring and analyzing their enterprise information and turn it into valuable insights.”
WSO2 User Engagement Server Features
The fully open source WSO2 User Engagement Server portal platform is built on the same modular, fully componentized OSGi-compliant code base as the award-winning WSO2 Carbon enterprise middleware platform. Like all WSO2 middleware products, it is inherently multi-tenant and cloud-enabled.
Key components of WSO2 UES are the Dashboard Composer, Jaggery IDE, Enterprise Store and UES Site Browser, which are all supported by enterprise-class security.
Dashboard Composer is the interface that lets users create dashboards graphically. With it, non-technical users can simply choose the layout for the dashboard and decide which gadgets they wish to include. The visual dashboard composer also enables these users to set up their own layouts apart from the standard one available in the editor mode.
Jaggery IDE is the open source Web IDE that comes with WSO2 UES and enables developers to create or edit microsites over the Web interface. A pure JavaScript server-side scripting engine, Jaggery combines the strength of JavaScript with the flexibility and freedom of PHP-like scripting environments. It also closes the gap between Web applications and Web services by allowing a developer to create both applications and APIs at the same time.
The Enterprise Store provides a central repository for gadgets, JavaScript libraries, and microsite and dashboard URLs, which developers and users can apply to their own sites. Developers and users also can publish dashboards, microsites and gadgets that they have created with WSO2 UES to the store. Meanwhile, subscribers of these resources can use the built-in social capabilities to rate and comment on them.
UES Site Browser is the interface where users can see the dashboards and microsites they created. This view provides the details of the site’s directory structure and enables all file browser operations. Authorized developers and users can publish their sites to the integrated Enterprise Store from this view.
Enterprise-class Security in WSO2 UES is delivered through identity management functionality that provides out-of-the-box single sign-on (SSO) and enables administrators to apply security policies based on users and user roles.
WSO2 User Engagement Server builds and expands upon the proven WSO2 Gadget Server portal platform first launched in December 2009. With today’s launch, WSO2 UES replaces WSO2 Gadget Server, though WSO2 will continue to support existing versions of WSO2 Gadget Server currently in use.
Availability and Support
WSO2 User Engagement Server is available today as a software download that can run directly on servers or on top of the WSO2 Stratos PaaS foundation; as a WSO2 Cloud Virtual Machine running on the Amazon Elastic Computing Cloud (EC2), Linux Kernel Virtual Machine (KVM), and VMware ESX; and as a hosted service on the WSO2 StratosLive PaaS. As a fully open source solution released under the Apache License 2.0, it does not carry any licensing fees.
WSO2 User Engagement Server 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, or check out the WSO2 community on the WSO2 Blog, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
Micro Focus, (LSE: MCRO.L), the leading provider of enterprise application modernization, testing, and management solutions announced that Edista Testing Institute (ETI), a talent partner that provides talent acquisition, management and transformation solutions in software testing, has become a Micro Focus Certified Training Partner.
Under the new partnership, ETI’s subject matter experts and consultants will provide training services on the following products from Micro Focus:
• Micro Focus Developer – COBOL and Developer Tool; and
• Silk Software Suite from Borland, a Micro Focus company
Micro Focus Visual COBOL and developer product portfolio comprises industry leading off-mainframe COBOL development and deployment tools to modernize business-critical enterprise applications. These help our customers dramatically reduce development and operating costs and increase both performance and productivity
Borland’s sole mission is to optimize software delivery. Borland has been building software delivery tools since its inception, helping people improve their requirements management, change and configuration management, test management and software quality. Silk Portfolio from Borland ensures quality throughout the software development lifecycle – from affordable testing through to test automation and management.
ETI is a venture of QAI Global and is focused on operational excellence and workforce development organization. The focus of the organization has been to enable IT organizations create a sustainable competitive advantage through interventions to solve the Workforce Challenges through innovative models and methods for building capacity, enhancing capability and engaging the community of the employed professionals in business critical skills.
Nitin Dang, Country General Manager, Micro Focus, India & SAARC says, “Micro Focus has seen solid growth in India since it began its operations. Our customer base has grown significantly and it is our prime objective to help our customers make the most out of the investment that they make in our technology and products. The partnership with ETI is a step in that direction. We believe in being a complete solution provider to our customers and not just a product supplier. The objective behind partnering with ETI is to leverage their expertise in offering Trainings, such that our customers are able to achieve optimum usage levels for the Micro Focus products that they have invested in.”
Pradeep Chennavajhula, CEO, Edista Testing Institute says, “We are quite excited by the partnership with one of the leading players in the field of Software Technology. The partnership shall enable us in leveraging the technical strengths of Micro Focus and provide trained, certified professionals to meet the need for quality workforce.”
About Micro Focus
Micro Focus, a member of the FTSE 250, provides innovative software that allows companies to dramatically improve the business value of their Enterprise applications. Micro Focus Enterprise Application Modernization, Testing and Management software enables customers' business applications to respond rapidly to market changes and embrace modern architectures with reduced cost and risk. For additional information please visit www.microfocus.com.
About Borland
Originating in 1983, Borland Software Corporation is a world-class provider of requirements, test and change management solutions. As part of Micro Focus Ltd, a member of the FTSE 250, Borland offers tools that are open, agile and work across the entire Application Development Lifecycle to enable customers to build better software, faster. For additional information please visit www.borland.com.
Follow Micro Focus and Borland on twitter | linkedin| community
About Edista Testing Institute (www.edistatesting.com)
Edista Testing Institute [ETI] is a workforce development partner for leading IT organization globally enabling Acquisition, Transformation, Recognition and Engagement solutions for Workforce Development in IT & IT Enabled Services. Setup in 2008, the focus of the organization has been to enable IT organizations create a sustainable competitive advantage through interventions to solve the Workforce Challenges through innovative models and methods for building capacity, enhancing capability and engaging the community of the employed professionals in business critical skills.
Follow Edista Testing on twitter | linkedin | community
|
|
|
|
|
WSO2Mobile CEO will lead free webinar-based training on July 23, exploring key benefits, challenges and strategies for implementing mobile technologies in the enterprise
Palo Alto, CA – July 18, 2013 – Increasingly, enterprises are implementing mobile technologies to extend interactions between employees, suppliers, partners and customers. The second WSO2 Summer School class of 2013 will examine how businesses can take advantage of the explosive growth in smart mobile devices to create new possibilities. The interactive online class, “Solving Mobile Generation Challenges with the WSO2 Enterprise Mobile Platform,” is being offered at no cost as a part of the WSO2 Summer School 2013 program. It will be held on Tuesday, July 23, 2013 from 9:00 a.m. – 10:00 a.m. Pacific. To participate, register at: http://wso2.com/library/webinars/2013/07/solving-mobile-generation-challenges-with-wso2-enterprise-mobile-platform.
The class will begin by examining the emerging mobile landscape and a new generation of mobile consumers and business users. The session then will explore how IT professionals can address common challenges, ranging from the proliferation of diverse smart devices to building mobile applications. Additionally, the class will dig into how businesses can unleash the immense opportunity to reinvent interactions with employees, suppliers, partners and customers in the new mobile enterprise.
Leading the session will be Harsha Purasinghe, CEO of WSO2Mobile (http://wso2mobile.com/), a fully owned subsidiary of WSO2 that he founded to build a suite of lean, integrated enterprise mobileware addressing today’s mobile enterprise challenges. An entrepreneur, Harsha also founded Microimage in 1993 and Microimage Mobile Media in 2007, and he has launched a number of successful products since his debut in the software industry at the age of 19. Additionally, Harsha has won several awards for leadership and entrepreneurship, recognizing his successful product development efforts.
About Summer School 2013
Since 2009, the popular WSO2 Summer School program has helped more than 2,000 enterprise IT architects and developers become more familiar with service-oriented architecture (SOA) technologies and best practices. The all-new classes for 2013 will focus on the building a next-generation platform system to meet business demand, reduce time to market, and generate business opportunity. Taught by some of the industry’s leading technical experts, the classes offer an opportunity to obtain thousands of dollars worth of professional training at zero cost. For details on the program and how to sign up, visit http://wso2.com/landing/summer-school-2013.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
Gurock today announced the release of TestRail 3.0, a new version of their web-based test management tool. The new version comes with an all-new reporting engine, a redesigned API and more integration options for bug and project management tools. According to Gurock, TestRail 3.0 introduces more than 100 new features, improvements and bug fixes and is available for new and existing customers as of today.
TestRail's new reporting engine introduces more than a dozen built-in reports to help teams answer important questions about their testing efforts. This includes reports to generate coverage statistics for requirements, test cases and defects as well as reports to compare the performance of specific test cases over time. Additional reports allow teams to gather and visualize statistics about the team's workload, to identify error-prone functional areas of projects and to produce summaries of their tests.
The new reporting engine also comes with functionality to schedule and share reports. This allows testing teams to automatically generate and email statistics to developers, the management team or customers. According to Gurock, it's now also easier for teams to customize and develop their own reports and integrate them into TestRail.
TestRail 3.0 also adds a new redesigned REST API. This API can be used to automate various parts of the application and to integrate automated testing tools such as Selenium. The new version also introduces improved support for bug and project management tools such as Rally, Assembla,
Bitbucket, GitHub, JIRA and OnTime. Testers can now directly link test results and push new bug report to these tools:
Gurock also implemented various additional improvements for the new version, such as full support for Microsoft's new web stack with Windows Server 2012, SQL Server 2012 and Internet Explorer 10. TestRail's new version also includes better support for mobile devices, adds more customization options and comes with improved navigation.
TestRail is used by software development teams and quality assurance departments to manage, organize and track their software testing efforts. TestRail is available as a web-based SaaS/cloud edition or can be installed on a local server. A free trial version of TestRail quality assurance software can be registered on Gurock's website.
|
|
|
|
|
Half-day technical workshop on July 23, will explore best practices for optimizing PaaS implementations by taking advantage of Polyglot support in WSO2 Stratos 2.0 PaaS
Palo Alto, CA – July 16, 2013 – Increasingly, enterprises are recognizing the benefits of cloud architecture and cloud services. However, legal or organizational issues often prevent enterprises from using a pure public platform as a service (PaaS). The alternative for these companies and governmental agencies is to implement either a private or hybrid PaaS. In a half-day hands-on workshop for cloud architects and developers, WSO2 Co-founder and CTO Paul Fremantle and WSO2 Vice President of Solutions Architecture Asanka Abeysinghe will explore how enterprises can build their own PaaS using WSO2 Stratos 2.0.
The “Building a Private or Hybrid PaaS with Stratos 2.0” workshop will be held on Tuesday, July 23, from 9:30 a.m. – 1:30 p.m., at Palo Alto, CA. For more information, visit: http://wso2.com/events/workshops/2013-july-palo-alto-building-a-private-or-hybrid-paas-with-stratos-2-0-workshop.
Building a Private or Hybrid PaaS with WSO2 Stratos 2.0
The hands-on technical workshop will examine how cloud architects and developers can use WSO2 Stratos 2.0 (http://wso2.com/cloud/stratos) to build a PaaS that runs within a datacenter or in an existing cloud environment, such as Amazon or Rackspace. Paul and Asanka will begin with an overview of WSO2 Stratos 2.0, which has been re-architected to support polyglot environments, including PHP and MySQL, and can be extended to support multiple cloud models. They will then examine how WSO2 Stratos can be installed, configured and used to enable a multi-tenant PaaS. Additionally, demonstrations conducted on the Amazon Elastic Computing Cloud (EC2) and local systems will highlight the benefits of WSO2 Stratos and PaaS in a private, hybrid or public cloud environment. Workshop session topics will include:
• A review of multi-tenancy and multi-tenant models.
• An overview of elastic load balancing.
• Infrastructure as a service (IaaS) configuration and how to work across heterogeneous IaaS environments, including OpenStack, VMware vSphere, Amazon EC2, and Rackspace.
• How to plugin different runtimes using the WSO2 Stratos 2.0 cartridge model.
• How the new WSO2 App Factory enterprise DevOps platform fits into the WSO2 Stratos model.
Workshop Presenters
Paul Fremantle is WSO2 co-founder and CTO, co-chair of the OASIS Web Services Reliable eXchange Technical Committee, and vice president of the Apache Synapse Project. Recognized by InfoWorld as a Top 25 CTO, he was responsible for simultaneously leading development of the groundbreaking WSO2 Enterprise Service Bus and Apache Synapse ESB. Paul has played a pioneering role in open source development, beginning with the original Apache SOAP project and his role in leading IBM's involvement in the Axis C/C++ project.
Asanka Abeysinghe, WSO2 vice president 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 Stratos 2.0
WSO2 Stratos 2.0 is the industry’s most complete, open enterprise-grade platform as a service (PaaS). Launched in June 2013, it features an all-new cartridge-based architecture that combines support for heterogeneous applications and service-oriented architecture (SOA) platform runtimes with native, secure multi-tenancy.
WSO2 Stratos 2.0 includes the WSO2 Stratos PaaS Foundation; all pre-integrated, cloud-ready, and fully multi-tenant WSO2 Carbon middleware products; and cartridges for PHP and MySQL. Through the use of jclouds, WSO2 Stratos 2.0 offers the ability to run on almost any IaaS cloud, including SUSE Cloud and other OpenStack-based offerings, VMware, Eucalyptus, and Amazon EC2.
For more information on the latest release, visit http://wso2.com/about/news/wso2-launches-wso2-stratos-the-industrys-most-complete-open-enterprise-grade-paas.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
Free webinar-based training on July 16, reviews key benefits, challenges, and best practices in implementing a cloud-native iPaaS solution
Palo Alto, CA – July 15, 2013 – Increasingly, enterprises are adopting integration platform as a service (iPaaS) solutions to deliver cloud services that address a wide range of integration and governance demands. The first WSO2 Summer School class of 2013 will examine how businesses can use a true cloud-native iPaaS to increase flexibility and reduce time to market. The interactive online class, “What is iPaaS and Why it is Important,” is being offered at no cost as a part of the WSO2 Summer School 2013 program. It will be held on Tuesday, July 16, 2013 from 9:00 a.m. – 11:00 a.m. Pacific. To participate, register at: http://wso2.com/library/webinars/2013/07/what-is-ipaas-and-why-it-is-important.
The class will begin by examining the current integration landscape. The session then will explore a true cloud-native iPaaS solution, along with key benefits, adoption pitfalls, and implementation best practices. Additionally, the class will review the role of iPaaS in WSO2's overall cloud strategy.
Jointly leading the session will be Afkham Azeez, WSO2 director of architecture, and Sameera Perera, senior manager of the WSO2 cloud technologies group. Azeez specializes in distributed computing, highly available and scalable applications, Java 2 Platform Enterprise Edition (J2EE) technologies, and service-oriented architecture (SOA). Sameera brings expertise in the cloud integration space as an architect and product manager, specializing in C#, ASP.NET, JavaScript, NetSuite CRM, C++ and software architecture.
About Summer School 2013
Since 2009, the popular WSO2 Summer School program has helped more than 2,000 enterprise IT architects and developers become more familiar with service-oriented architecture (SOA) technologies and best practices. The all-new classes for 2013 will focus on the building a next-generation platform system to meet business demand, reduce time to market, and generate business opportunity. Taught by some of the industry’s leading technical experts, the classes offer an opportunity to obtain thousands of dollars worth of professional training at zero cost. For details on the program and how to sign up, visit http://wso2.com/landing/summer-school-2013.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
SCADA Software Source Code Component Solution for C/C++, .NET
http://www.ucancode.net/SCADA_Software_Tool_Source_Code.htm[^]
The quick and simple way to building SCADA Software with VC++, and the .NET platform
Download this scada & Hmi Sample 0
Download this SCADA Sample 1
Download this SCADA Sample 2
Product Tour E-XD++ and UCCDraw product walkthrough
Screenshots Applications built on E-XD++ ToolKit
Product feature comparison
UCanCode provides a complete set of services, consisting of design tools and a software development kit (SDK), for developers who want to create a user interface for industrial monitoring and process control drawing SCADA applications. These displays feature highly customized graphical objects that connect to underlying real-world data.
Developers prefer ucancode's solutions because they are easy to use, completely customizable, and can deploy to both the desktop and the Web. ucancode is the industry’s leading real-time SPC software, automating quality data collection and analysis
Add Diagrams and SCADA to your applications. E-XD++ Diagrammer brings accurate and intuitive diagrams and dashboards to your c++ desktop applications. It offers a comprehensive set of tools, components and graphic objects for creating visualization, editing and monitoring Windows applications.
It is very quickly and easily to use E-XD++ to build any SCADA Software:
1. Design the SCADA symbols:
With E-XD++ full edition, there is a shapedesigner application shipped, with this diagramming tool, you can use many advance features to build any kind of SCADA Software symbols, The Symbol Editor is an interactive point-and-click editor that creates, edits and organizes intelligent symbols to populate a user interface, as below:
When one composite symbol is designed, just use Copy/Paste to place it within the toolbox window at left side. These SCADA Symbols will be ready for use in future. The Shape Designer offers graphics editing capabilities and is fully interoperable with authoring tools, such as Adobe Illustrator or Inkscape, to ensure that the visual elements of the symbol are as appealing as possible. It then adds dynamics to graphics with rules describing how the elements of the symbol will react to data changes. For example, rules can define the alarm conditions that will cause a part of a factory symbol to blink, or how far a needle on a rotary gauge will rotate. The newly created symbol can then be cleanly organized in palettes and reused by the other design tools. By default, the Shape Designer contains palettes of fully functional symbols for diagramming and monitoring applications, such as gauges, buttons, meters, dials and more.
What is a "Symbol?" A symbol is a self-contained graphic object that represents a physical or conceptual element in the underlying application. For example, symbols can represent trucks, factories, network elements, dials or gauges.. They have built-in behavior and an exposed interface, like a graphic VC++ control. When an application executes, its symbols connect to real-world objects and are "data-aware"—when the underlying data changes in a meaningful way to the user, the overlying symbols change their appearances. For example, if a component in a data network reaches a pre-defined critical threshold, the symbol associated with it might display a red alarm. Or if an airplane has moved, then its symbol will move on a map display.
2. Design SCADA Software Screen:
With E-XD++ full edition, there is also a ready to use SCADA Screen design tool shipped, with this tool, you can use any symbols within the toolbox window at left side to build any screen as you want, just drag and drop, very simple and easy:
Diagram Editor is well-suited for defining the look and feel of applications that must automatically create a diagram—such as a business process, a network typology, a workflow, a dataflow, or entity-relational diagrams—from a data source.
If you want to identify any shape on the screen, just use the following dialog to define some key value. There are three key values that can be used to do this work, as below:
We change it's key value 1 to K2.
After one SCADA Software Screen is finished, you can save it to a xdg file. You can design as many screen as you want.
3. Building your SCADA Software:
With full edition of E-XD++ Visualization Component, there is an appwizard that will help you building a base framework of SCADA Software without written a line of codes, after the base framework of your application is finished, you can import any XDG files into your application, (Please remember the resource type must be XDGRes), to load a SCADA Screen just call the following codes, it is very easy:
LoadXdgFromResource(IDR_MAIN, _T("XdgRes"), FALSE);
In fact, this line of code can be called at any place if you want to load any new screen at any time.
4. Update the screen with data:
Mostly we can use the WM_TIMER of CWnd to recieve the data and refresh the SCADA Screen, if you want to update only one shape, just call UpdateControl of this shape, but if you want to update a list of shapes one time, we recommend you to call UpdateShapes, this will works more effective, below is the sample codes:
void CAutoDemoView::OnTimer(UINT nIDEvent)
{
// TODO: Add your message handler code here and/or call default
if(nIDEvent == ID_TIMER_ID)
{
CFODrawShapeList lstUpdate;
int xx0 = rand() % 20;
int xx1 = rand() % 18;
int xx2 = rand() % 25;
int xx3 = rand() % 16;
int xx4 = rand() % 12;
int xx5 = rand() % 21;
if(pK1 != NULL)
{
CString strText;
strText.Format(_T("%u mcA"), xx0 * xx1);
pK1->SetLabelText(strText);
lstUpdate.AddTail(pK1);
}
if(pK2 != NULL)
{
CString strText;
strText.Format(_T("%u C"), xx0 * xx2);
pK2->SetLabelText(strText);
lstUpdate.AddTail(pK2);
}
if(pK3 != NULL)
{
CString strText;
strText.Format(_T("%u Nm/h"), xx0 * xx3);
pK3->SetLabelText(strText);
lstUpdate.AddTail(pK3);
}
if(pX1 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx0 * xx4);
pX1->SetLabelText(strText);
lstUpdate.AddTail(pX1);
int nValue = xx0 * xx4;
if(nValue > 200)
{
pX1->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX1->SetBkColor(RGB(255,255,0));
}
else
{
pX1->SetBkColor(RGB(0,0,0));
}
}
if(pX2 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx0 * xx5);
pX2->SetLabelText(strText);
lstUpdate.AddTail(pX2);
int nValue = xx0 * xx5;
if(nValue > 200)
{
pX2->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX2->SetBkColor(RGB(255,255,0));
}
else
{
pX2->SetBkColor(RGB(0,0,0));
}
}
if(pX3 != NULL)
{
CString strText;
strText.Format(_T("-%u"), xx1 * xx5);
pX3->SetLabelText(strText);
lstUpdate.AddTail(pX3);
int nValue = xx1 * xx5;
if(nValue > 200)
{
pX3->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX3->SetBkColor(RGB(255,255,0));
}
else
{
pX3->SetBkColor(RGB(0,0,0));
}
}
if(pX4 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx2 * xx3);
pX4->SetLabelText(strText);
lstUpdate.AddTail(pX4);
int nValue = xx2 * xx3;
if(nValue > 200)
{
pX4->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX4->SetBkColor(RGB(255,255,0));
}
else
{
pX4->SetBkColor(RGB(0,0,0));
}
}
if(pX5 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx2 * xx4);
pX5->SetLabelText(strText);
lstUpdate.AddTail(pX5);
int nValue = xx2 * xx4;
if(nValue > 200)
{
pX5->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX5->SetBkColor(RGB(255,255,0));
}
else
{
pX5->SetBkColor(RGB(0,0,0));
}
}
if(pX6 != NULL)
{
CString strText;
strText.Format(_T("%u"), xx3 * xx5);
pX6->SetLabelText(strText);
lstUpdate.AddTail(pX6);
int nValue = xx3 * xx5;
if(nValue > 200)
{
pX6->SetBkColor(RGB(255,0,0));
}
else if(nValue > 100)
{
pX6->SetBkColor(RGB(255,255,0));
}
else
{
pX5->SetBkColor(RGB(0,0,0));
}
}
if(pChartShape != NULL)
{
pChartShape->UpdateData(xx0 * xx1, xx0 * xx2, xx0 * xx3);
lstUpdate.AddTail(pChartShape);
}
if(lstUpdate.GetCount() > 0)
{
UpdateShapes(&lstUpdate);
}
}
else
{
CFODrawView::OnTimer(nIDEvent);
}
}
If you want to handle the click event, you can DoButtonClickEvent to do that.
That's all, below is the running - time mode of this sample.
SCADA Software Component
Process Control Diagram
Full VC++ Source Code
Real - time Drawing
Very easy to use shape Designer
SVG Import
The following is another sample on SCADA Application:
State 1:
State 2:
State 3:
With E-XD++ Component, you can add advanced SCADA functionality to your applications. The E-XD++ Library is a 100% VC++ data rendering and visualization system, built specifically for Visual Studio .NET and designed to bring your User Interface to the printed page. Now you only need a few days for building a very powerful label print or report print application.
The leader in visualization component -- FULL VC++ Source Code Shipped!
XD++ Diagrammer Suite is the the world’s leading VC++ and .NET visualization component. Renowned for incredibly rich graphics, XD++ helps thousands developers build applications that offer unparalleled functionality. Outstanding productivity lowers project risk and reduces maintenance headaches. With 10 years of dedicated research and development, UCanCode leads the market for visualization technologies, providing outstanding customer support.
Powerful, flexible, and easy to use Diagram Components.
Powerful and flexible enough to create diagrams exactly the way you want them to appear. So easy to use that you will be able to prototype your application in just a few minutes.
Feature rich.
With features such as automatic layout, multiple layers, collapsible sub-graphs, snap-to connection points, XML, SVG, and more, E-XD++ Have the power and flexibility you need to create sophisticated diagrams, quickly and easily. Events such as click, double-click, hover, select, rubber-band select, copy, delete, resize and move are supported. Operations such as drag-and-drop, unlimited undo/redo, and clipboard operations are common and complex, and are expected by today's sophisticated users. it full supports importing ArcGis, SVG and DXF File format.
Performance and Scalability.
UCanCode E-XD++ Capable of handling many thousands of nodes and edges, up to hundreds of thousands depending upon the complexity of the nodes you wish to draw and the operations you wish to allow. Our graphical classes are extremely lightweight objects enabling outstanding performance.
Save Time and Money and gain Reliability.
A diagram is worth 1,000 words, and E-XD++ is shipped with more than 500,000 lines of well designed and well tested code! It is used by hundreds of the world's most quality conscious companies. It will saves you thousands of hours of complex coding and years of maintenance.
Download this scada & Hmi Sample 0
Download this SCADA Sample 1
Download this SCADA Sample 2
The VC++ source codes of this sample is shipped with E-XD++ Library Enterprise Edition, order it now.
http://www.ucancode.net/SCADA_Software_Tool_Source_Code.htm[^]
Contact UCanCode Software
To buy the source code or learn more about with:
Product Inquiry
E-mail to (sales@ucancode.net)
Or call us at: +86-28-8535-4545
Fax us at: +86-28-8535-4645
Technical support online with msn messager: ucancode@hotmail.com
Download a trial solution
|
|
|
|
|
Web-based training provides IT professionals with all-new sessions on technologies and best practices for shaping an API-centric enterprise, mobile interactions and SaaS applications
Palo Alto, CA – July 11, 2013 – WSO2 today announced that WSO2 Summer School returns for a fifth year by popular demand. The all-new classes for 2013 will focus on building a next-generation platform to meet business demands, reduce time to market, and generate business opportunities. Since 2009, WSO2’s interactive Web-based program has helped more than 2,000 IT professionals become more familiar with the technologies and best practices for building, integrating and deploying enterprise applications and services—on-premises and in the cloud. The free WSO2 Summer School classes will be held on Tuesday at 9 a.m. Pacific for seven weeks beginning July 16, 2013.
"WSO2 Summer School aims to address the top challenges facing IT architects and developers. This year, it means sharing proven development and solution architecture best practices in such areas as the cloud; mobile; and management of APIs, data, and user identities," said Dr. Sanjiva Weerawarana, WSO2 founder and CEO. "Our fifth year of Summer School brings exciting new classes to enable a deeper understanding of the issues that are central to today’s IT strategies, and it reflects our dedication to open education that supports the evolving needs of the developer community."
Leading the seven Summer School courses will be WSO2 technology executives and software development experts. They include Chris Haddad, WSO2 vice president of technology evangelism; John Mathon, WSO2 vice president of product marketing; Harsha Purasinghe, CEO of WSO2Mobile; Afkham Azeez, WSO2 director of architecture; Selvaratnam Uthaiyashankar, WSO2 director of cloud solutions; Sameera Perera, senior manager of the WSO2 cloud technologies group; Sumedha Rubasinghe, WSO2 senior architect; Nuwan Bandara, WSO2 associate technical lead; and Johann Nallathamby, WSO2 software engineer. Together, they will share their first-hand experiences in developing cloud middleware and implementing API-centric enterprise solutions for Global 1000 companies.
The program is open to all individuals who want to boost their next-generation platform knowledge directly from some of the industry’s leading experts—a once-a-year opportunity to obtain thousands of dollars worth of professional training at zero cost. For details on the program and how to sign up, visit http://wso2.com/landing/summer-school-2013.
The classes forming the seven-week Summer School program are:
• July 16: What is iPaaS and Why it is Important. Review the integration landscape, including the benefits that a true cloud-native integration platform as a service (iPaaS) delivers, as well as adoption pitfalls. Also, discuss the role of iPaaS in WSO2's overall cloud strategy.
• July 23: Solving Mobile Generation Challenges with the WSO2 Enterprise Mobile Platform. Learn how to address mobile challenges, ranging from the proliferation of diverse smart devices to building mobile applications for the new enterprise and emerging mobile landscape.
• July 30: API Centric Enterprises. Examine key building blocks of the WSO2 API Manager and how they can be utilized to create enterprise-ready business APIs.
• August 6: Building a SaaS Application with the WSO2 Platform. Gain insights into why software as a service (SaaS) applications enhance business value, what capabilities separate SaaS applications from Web applications, and how to build a SaaS application with the WSO2 platform.
• August 13: Practical Federated Identity - Use Cases from the Real World. Learn how the WSO2 platform is capable of delivering solutions for federated identity requirements, and review real-world projects implemented by WSO2 customers.
• August 20: The Importance of Data Communication - WSO2's Story of Taking Data on Screen. Review the significance of data and how it can be communicated and visualized effectively using the latest WSO2 technologies.
• August 27: Enterprise Data in the WSO2 Platform. Build on the previous sessions by learning how to optimize enterprise data management using the WSO2 platform.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
CodeProject Announces Windows Azure Developer Challenge $2,500 Grand Prize Winner The 10-week developer challenge saw 21 winners claim over $16,000 in prizes
TORONTO, July 11, 2013 — CodeProject, one of the world’s largest online communities of software developers, is pleased to announce Phil Lee as the grand prize winner of CodeProject’s recent Windows Azure Developer Challenge[^].
Over $16,000 in prizes was awarded to 21 individuals throughout the 10-week Windows Azure Developer Challenge. The contest pitted developers from across the globe against each other in five stages of competitions that incorporated tasks like building a website, using SQL, spinning virtual machines, and building responsive mobile access for their Azure apps.
A big congratulations goes to Phil Lee for the hard work he put into the contest and the unbelievably comprehensive walk-through and write-up of his journey through this Azure challenge. His entry, YouConf - Your Live Online Conferencing Tool, illustrates his entire process from the formation of a simple idea all the way to a fully functioning database-powered website talking to an Ubuntu VM, running Apache Solr. The end result is a beautifully responsive design that functions well on everything from desktops to smartphones. Phil Lee drew inspiration for his entry from Scott Hanselman’s blog post[^] outlining a low-cost, community conference platform.
As Grand Prize Winner, Phil Lee will be awarded a $2,500 cash prize, as well as promotion on CodeProject and Microsoft owned and operated properties. Both fame and fortune!
"Thanks to the whole CodeProject team and Microsoft for organizing and running the competition,” said Phil Lee, the New Zealand-based Grand Prize Winner. “If, like me, you don't always get to work with the cloud, or the very latest and greatest technologies as part of a day job, it can often be hard to find a good reason (or time) to investigate them in depth. Having competitions like this really forces one to get involved, find out as much as possible, and hopefully help out others along the way. I've learned a ton of stuff about Azure and .NET, which hopefully I'll be able to put to good use in the future."
For more information about the Windows Azure Developer Challenge or other current CodeProject developer contests visit the CodeProject Feature Competitions[^] page.
About CodeProject:
CodeProject, a member of the Developer Media network, is one of the world’s largest independent communities of developers. It’s built with the simple goal of helping to make a developer’s day-to-day life easier and to teach them the skills they need. CodeProject has over ten million members and tens of thousands of articles. Formed to provide developers with a place to meet and exchange ideas, CodeProject provides developers with the resources they need to help them with their day-to-day programming as well as keeping up-to-date with the latest development tools. More at: http://www.codeproject.com.
About Developer Media:
Founded in 1998, Developer Media is the world’s largest developer-focused advertising network with over 23 million unique professional developers visiting its sites each month. Developer Media represents over 400 influential websites, online communities, blogs and publishers serving the software and app development market. It delivers innovative ad solutions to help tech marketers reach developers directly. From ad campaigns to custom multi-channel marketing and thought leadership programs spanning paid, owned and earned media, Developer Media’s reach, expertise and service help technology vendors and advertisers find their next customer. Developer Media sites provide the latest how-to information, trends and news covering such technology giants as Intel, Microsoft, Google, and Apple. More at: http://www.developermedia.com.
For more information, please contact:
Carrie Davis-Sydor
Director of Marketing and Business Development
carrie@developermedia.com
416-849-8900 ext. 501
Kevin Priddle
Editor and Special Projects Manager | Developer Media
|
|
|
|
|
Packt is pleased to announce the release of Instant Minecraft: Pi Edition Coding How-to, a practical, hands-on guide that comprehensively explains the essentials of the Minecraft building techniques, using computer code. With this book, users will gain an in-depth knowledge of how to code creatively in Minecraft: Pi Edition. This book is available now in various electronic formats such as Amazon, Kindle, e-pub and PDF.
About the Author :
Daniel Bates is a Computer Science researcher at the University of Cambridge. He makes designs for future mobile phone processors, and has been a volunteer for the Raspberry Pi Foundation since 2011. Daniel is also enthusiastic about introducing new people to computing. Minecraft: Pi Edition is the perfect opportunity to do just that.
Minecraft is a sandbox indie game. The creative and building aspects of Minecraft allow players to build constructions out of textured cubes in a 3D procedurally generated world. Other activities in the game include exploration, gathering resources, crafting, and combat.
Instant Minecraft: Pi Edition Coding How-to will show readers how to effectively set up a Raspberry Pi. They'll discover more about Linux and a wide range of features of the Python programming language, whilst also understanding how to structure code to make it easier to reuse, so work is even faster and more efficient.
Readers will learn how to code a Reversi game board, applying it to Minecraft and adapting the existing code to influence the Minecraft world. They'll discover computer programming using a Raspberry Pi computer, to get the most out of Minecraft and build more interesting creations.
Packt Publishing has also released these related books:
Raspberry Pi Media Center
Raspberry Pi Networking Cookbook
Instant Minecraft Designs How-to
About Packt:
Packt is one of the most prolific and fastest-growing tech book publishers in the world. Originally focused on open source software, Packt books now focus on practicality, recognizing that readers are ultimately concerned with getting the job done. A digitally-focused business model allows Packt to publish up-to-date books in very specific areas.
|
|
|
|
|
White paper examines how to optimize application design, delivery, agility and visibility using a cloud-based, automated DevOps approach with WSO2 App Factory
Palo Alto, CA – July 10, 2013 – Today, organizations seek to improve software delivery performance and effectiveness through automation, governance, architecture, and team collaboration best practices. However, outdated infrastructure and processes, along with disjointed tooling often hinder application delivery practices. A new white paper from WSO2 examines how IT professionals can implement a cloud DevOps platform as a service (PaaS) to optimize application development and delivery by increasing project visibility, enhancing team agility, and introducing automated governance and best practices.
The new white paper, "DevOps meets ALM in the Cloud – Cloud DevOps PaaS," was developed by Chris Haddad, WSO2 vice president of technology evangelism. In it, Chris examines how IT organizations can deliver a consistent, automated, governed, and unified application development process using an open source cloud DevOps PaaS. He also discusses how the cloud DevOps PaaS value proposition crosses developers, managers, and C-level executives. Key topics include:
• Unifying open source DevOps and cloud tooling to deliver an agile, consistent, automated, governed, and unified application development process.
• Applying cloud self-service provisioning, multi-tenancy, and elastic scalability to create on-demand access to development and run-time infrastructure.
• Preserving team investments in development and operations tooling.
• Delivering development dashboards and approved application building blocks to reduce technical debt, minimize project backlog, and constantly communicate project status.
• Using the WSO2 App Factory cloud DevOps PaaS to apply best practices.
The paper can be downloaded at http://wso2.com/whitepapers/devops-meets-alm-in-the-cloud-cloud-devops-paas.
About the Author
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. Prior to joining WSO2, Chris led research teams as a research vice president at the Burton Group and Gartner advising Fortune 500 enterprise organizations and technology infrastructure vendors.
About WSO2 App Factory
The white paper is being published in conjunction with today’s launch of WSO2 App Factory, which enables continuous cloud delivery through a shared, self-service, multi-tenant and elastic enterprise DevOps platform. The 100% open source WSO2 App Factory empowers teams to collaboratively create, develop and deploy enterprise applications into cloud environments—without the delay of server provisioning. Robust governance and lifecycle management, including the ability to integrate with any software development lifecycle (SDLC) tools, ensure compliance with IT, corporate and government policies. At the same time, the ability to create an intuitive Apple or Google Marketplace-like storefront means developers can easily subscribe to and consume APIs, applications and gadgets.
For more information, see the July 10, 2013 press release, “WSO2 Debuts WSO2 App Factory Cloud-enabled Enterprise DevOps Platform,” or visit the WSO2 App Factory Web page at http://wso2.com/cloud/app-factory.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
PaaS-based WSO2 App Factory empowers teams to collaboratively create, develop and deploy enterprise applications into the cloud while ensuring corporate and government compliance
Palo Alto, CA – July 10, 2013 – As the cloud and API management open doors to new business models, enterprises are seeking to control the applications being developed with those APIs—both within their organizations and across their partner networks. WSO2 is addressing this demand with the launch of WSO2 App Factory (http://wso2.com/cloud/app-factory), which enables continuous cloud delivery through a shared, self-service, multi-tenant and elastic enterprise DevOps platform.
WSO2 App Factory empowers teams to collaboratively create, develop and deploy enterprise applications into cloud environments—without the delay of server provisioning. Robust lifecycle management and governance ensure compliance with IT, corporate and government policies. At the same time, the ability to create an intuitive Apple or Google Marketplace-like storefront means developers can easily subscribe to and consume APIs, applications and gadgets.
“Too often, enterprise agility is stalled by a proliferation of stovepipe deployments and shadow IT projects that are disconnected from enterprises’ strategic initiatives,” said
Dr. Sanjiva Weerawarana, WSO2 founder and CEO. “WSO2 App Factory removes those barriers by providing an open cloud-based platform for development collaboration backed by robust governance. Through WSO2 App Factory, enterprises now can extend their business capabilities across a connected ecosystem of internal teams, suppliers, channel partners, distributors and customers—while lowering the costs of integration and interaction.”
Comprehensive, Open Approach to Enterprise DevOps
WSO2 App Factory provides an open source, open standards approach to cloud-enabled enterprise DevOps. It is built on—and integrates with—the award-winning 100% open source WSO2 Carbon (http://wso2.com/products/carbon) enterprise middleware platform and WSO2 Stratos (http://wso2.com/cloud/stratos), the most complete platform as a service (PaaS) available. The capabilities include WSO2 Enterprise Service Bus (WSO2 ESB), WSO2 API Manager, WSO2 Application Server, WSO2 Governance Registry, WSO2 Business Activity Monitor, WSO2 Business Process Manager, WSO2 Business Rules Server, WSO2 Identity Server, WSO2 Complex Event Processor, WSO2 Message Broker, and WSO2 User Engagement Center.
WSO2 App Factory enables the integration of popular software development lifecycle (SDLC) tools, such as Apache Subversion (SVN), Git, Jenkins, Maven, Redmine, Clover, FindBugs and JUnit. At the same time, the open design of WSO2 App Factory also allows the integration of any SDLC toolset with widely adopted tools, such as Atlassian JIRA and Bamboo. Additionally, App Factory integrates with existing user repositories via LDAP or Microsoft Active Directory. Because all the third-party tools used in WSO2 App Factory are integrated through open, interoperable extension points, developers can easily configure new life cycle stages, workflows, and tools of their choice.
“There are several drivers for the use of application development life cycle management (ADLM) services. In load/stress testing, significantly larger loads can be created than in on-premises solutions, a more accurate representation of real-world conditions for client-facing applications, and more-effective pricing structures have combined to make this a rapidly growing market segment,” observes Gartner Research Director Thomas E. Murphy in the Gartner report, Platform as a Service: Definition, Taxonomy and Vendor Landscape, 20131 (http://www.gartner.com/id=2515316) published on June 13, 2013. He adds, “The continued emergence of DevOps practices and the rise of new cloud platforms will drive adoption as organizations seek to drive productivity and adopt cloud deployment platforms.”
Addressing the Complete Life Cycle
WSO2 App Factory is equipped with a complete SDLC tool chain and PaaS capabilities that aim to address many aspects of the application management process. It provides teams with a unified, controlled platform to manage this complex set of tasks across cloud portals for development, testing, production, and continuous builds in order to provision quality assurance environments, run continuous integration tests, and continuously promote and deploy software assets across development life cycle environments and production. With WSO2 App Factory, developers can easily create and administer projects, automatically build applications, and continuously deliver applications.
WSO2 App Factory provides the tools to create, manage and govern applications, along with the runtime to execute these tools. Developers only need to use the App Factory development portal to perform most of their daily tasks (builds and deployments). They also can consume APIs, applications and gadgets that have been published to an intuitive storefront to develop their own applications, as well as publish data into a shared storage server.
At the same time, developers can continue to use their preferred integrated development environments (IDEs) to develop applications, which run inside the App Factory runtime. WSO2 App Factory supports a range of application types, including Web applications, ESB integrations, BPEL-based workflows and PHP applications, to name but a few.
Enforcing Policies, Streamlining Processes, and Reducing Costs
WSO2 App Factory provides several benefits to enterprise development teams. The ability to impose policies and standards between life-cycle stages means an application won't progress from one stage to the next before meeting regulatory and quality standards. Meanwhile, making an application publicly available in a storefront fosters cross-organizational collaboration and encourages reuse, speeding time to market. The storefront also helps developers understand what capabilities are available before starting a new project, reducing rework. Similarly, early detection of issues cuts the cost of development.
Automated processes also help to simplify the developer experience and streamline processes. Notably, WSO2 App Factory automatically manages dependencies. For example, when moving an application from development to staging, there is no need to connect to different APIs and databases. A developer can simply move the application through its life-cycle stages while the platform automatically connects it to the correct resources. WSO2 App Factory also creates a skeleton project automatically; developers simply select a project type. Additionally, App Factory’s numerous dashboards make it easy to manage and monitor projects throughout the life cycle.
Availability and Support
WSO2 App Factory is available today. As a fully open source solution released under the Apache License 2.0, it does not carry any licensing fees. WSO2 App Factory 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 (http://wso2.com/support/) 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, or check out the WSO2 community on the WSO2 Blog, Twitter, LinkedIn, Facebook, and FriendFeed.
1Gartner, Platform as a Service: Definition, Taxonomy and Vendor Landscape, 2013,” by Yefim V. Natis, Joao Tapadinhas, W. Roy Schulte, Massimo Pezzini, Michele Cantara, Joseph Feiman, Donald Feinberg, Jim Murphy, Thomas E. Murphy, Paolo Malinverno, Gordon Van Huizen, Andrew White, Bill O'Kane, Nick Heudecker, Eric Thoo, Jess Thompson, Gene Phifer, Ian Finley, June 13, 2013.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
MATLAB Component, MATLAB Software Tool, Drawing and Simulation development engine, Visualization Source code Kit for C/C++, .NET
MATLAB Simulink® is an environment for multidomain simulation and Model-Based Design for dynamic and embedded systems. It provides an interactive graphical environment and a customizable set of block libraries that let you design, simulate, implement, and test a variety of time-varying systems, including communications, controls, signal processing, video processing, and image processing.
--------------------------------------------------------------------------------
We provide these solutions does not mean that E-XD++ visualization component library can only develop graphical applications in these areas, in fact, E-XD++ with any other third party C + + component libraries, including hundreds can be separated function independently. With QT, MFC, etc., you can independently determine the need for E-XD++ in a function, in general, as long as you need graphics, you need flow charts, control charts, printing, publishing capabilities, simulation, electronic maps, electrical wiring diagrams, forms, etc., you can use the E-XD++ components library, of course, sometimes Maybe you only want to use the E-XD++ provides control without the need for the drop-down color graphics, that's no problem !
The MATLABDemo sample demonstrates how to use E-XD++ to build a matlab like diagramming application with complex diagram drawing and layout, as below. With matlab demo, you build models by dragging and dropping blocks from the library browser onto the graphical editor and connecting them with lines that establish mathematical relationships between the blocks. You can arrange the model by using graphical editing functions, such as copy, paste, undo, align, distribute, and resize.
This is the first diagramming component that supports link to link line feature.
You can use E-XD++ MATLAB Solution to build any your own simuation system quickly and easily, with ShapeDesigner you can design any kind of symbols as you want.
-- UCanCode Consulting Services offer a full range of services to help you implement your own MATLAB Like applition with specify requirements,
More than 500 thousands lines "all carefully designed and rigorously tested" C/C++/.NET source codes, all complete source codes is shipped without any reservations!
Provide more than 400 C + + extension class, more than 500 thousands lines of effective VC++ / MFC source code, more than 70 ready to use solution's source code, complete and detailed online help system and user documentation, supporting development tools designed!
Powerful, flexible and easy to use graphical visualization of source code libraries.
Powerful and flexible components to create a variety of charts to meet your needs. Product design specifications, it is easy to use, in just a few days can be designed according to your needs products. We provide complete support for products, download the trial.
Feature-rich.
Ultra-versatile, such as automatic layout, multi-level collapsible subgraph, cell connection point, XML, DXF, SHP, SVG, etc., can help you quickly create complex and flexible chart. Supports a number of events: such as click, double click, hover, select, rubber band select, copy, delete, resize and move the support. Support the most complex operations: such as drag and drop, unlimited undo / redo and clipboard operations and so on.
Save time and money to obtain reliability.
A picture is worth a thousand words, E-XD++ offer more than 500 thousands lines of well-designed and well-tested C/C + +/.NET source code! Development takes years, thousands of customers worldwide validation, can save you a lot of development time and money!
Try it now!
Do not just listen to us say it a try! Our free trial includes all you need to prototype your application. Free technical support.
Products
Download this solution
The official version of the E-XD++component library visual graphics solutions for enterprise version provides all the source code, click the button below to UCanCode Order :
--------------------------------------------------------------------------------
Contact UCanCode Software
To buy the source code or learn more about with:
Product Inquiry
E-mail to (sales@ucancode.net)
Or call us at: +86-28-8535-4545
Fax us at: +86-28-8535-4645
Technical support online with msn messager: ucancode@hotmail.com
Download a trial solution
http://www.ucancode.net/MATLAB-Component-MATLAB-Software-Tool-Drawing-and-Simulation-development-engine-VC-source-code%20.htm[^]http://www.ucancode.net/MATLAB-Component-MATLAB-Software-Tool-Drawing-and-Simulation-development-engine-VC-source-code%20.htm[^]
|
|
|
|
|
Evaluations were based on completeness of vision and ability to execute
San Francisco, CA – July 9, 2013 – WSO2 today announced that it has been positioned by Gartner, Inc. in the “Visionaries” quadrant of two new reports that were published on June 27, 2013: Magic Quadrant for On-Premises Application Integration Suites1 and Magic Quadrant for On-Premises Application Platforms2. The two new reports from Gartner look at the requirements that IT professionals face in integrating applications that were designed independently and in developing and deploying new and composite applications, respectively.
The Gartner Magic Quadrant for On-Premises Application Integration Suites3 report (http://www.gartner.com/id=2532223) observes, “Many users are looking to support their integration projects with an integrated suite provided by one vendor, thus eliminating the burden to act as a system integrator for application infrastructure. To address this, even market-leading vendors have more work to do to complete the modernization and consolidation of the technologies they offer to support integration projects.” The report adds, “In an economic environment that continues to drive organizations to implement extensive cost cutting measures, enterprises may be attracted to open-source software (OSS)-based application infrastructure products, as well as cloud-based integration services.”
The Gartner Magic Quadrant for On-Premises Application Platforms4 report (http://www.gartner.com/id=2532222) notes, “Modern applications are written according to service-oriented architecture (SOA) principles, composed at runtime from existing and new application functions, and often deployed in virtualized environments. Application platform middleware must integrate with other applications, data sources and integration platforms, and is owned and controlled by multiple organizations. Often, application platform middleware may also make use of process orchestration capabilities to externalize process flow logic. It increasingly
requires the dynamic scalability that private cloud deployments enable.”
“We realized early on that enterprises need to build, integrate and manage their applications and services flexibly and seamlessly, both in the data center and the cloud, as their business and IT demands change,” said Dr. Sanjiva Weerawarana, WSO2 founder and CEO. “We are excited to be positioned in the ‘Visionaries’ quadrant by Gartner. We view it as confirmation of our commitment to delivering modular, fully integrated, and 100% open source solutions that address the demands of today’s enterprises whether their applications reside on servers, in the cloud, or across a hybrid environment.”
WSO2 Integrated Platform for On-Premises and the Cloud
WSO2 provides the only integrated middleware that enables enterprises to seamlessly migrate their Web applications and services between on-premises, cloud, and hybrid cloud environments as needed.
WSO2 Carbon (http://wso2.com/products/carbon/) is the industry’s first fully componentized middleware platform for creating, running and managing composite applications and Web services within an SOA and cloud environment. Built on the OSGi specification, WSO2 Carbon lets developers easily deploy and customize any of more than a dozen WSO2 Carbon-based middleware products, and the 175-plus components on which they are comprised, providing greater flexibility and agility to meet changing enterprise demands.
The cloud-ready, fully multi-tenant WSO2 Carbon middleware products run directly on servers or as virtual machines, and they are available as part of WSO2 Stratos (http://wso2.com/cloud/stratos), the industry’s most complete, open enterprise-grade platform as a service (PaaS). Therefore, for example, the WSO2 Enterprise Service Bus (ESB) software enabling one major online retailer (http://wso2.com/casestudies/ebay-uses-100-open-source-wso2-esb-to-process-more-than-1-billion-transactions-per-day) to process more than 1 billion API transactions per day also is delivering ESB as a service in the cloud.
WSO2 offers a range of service and support (http://wso2.com/support) options for WSO2 Carbon and WSO2 Stratos. These include evaluation support, special QuickStartSM consulting programs, development support, and production support. All WSO2 middleware products are fully open source solutions released under the Apache License 2.0; they do not carry any licensing fees.
About the Magic Quadrants
Gartner does not endorse any vendor, product or service depicted in its research publications, and does not advise technology users to select only those vendors with the highest ratings. Gartner research publications consist of the opinions of Gartner's research organization and should not be construed as statements of fact. Gartner disclaims all warranties, expressed or implied, with respect to this research, including any warranties of merchantability or fitness for a particular purpose.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
1Gartner, “Magic Quadrant for On-Premises Application Integration Suites,” by Jess Thompson, Yefim V. Natis, Massimo Pezzini, Daniel Sholler, Ross Altman, and Kimihiko Iijima, June 27, 2013.
2Gartner, “Magic Quadrant for On-Premises Application Platforms,” by Daniel Sholler, Yefim V. Natis, Massimo Pezzini, Kimihiko Iijima, Jess Thompson, and Ross Altman, June 27, 2013.
3Gartner, “Magic Quadrant for On-Premises Application Integration Suites,” June 27, 2013.
4Gartner, “Magic Quadrant for On-Premises Application Platforms,” June 27, 2013.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
dtSearch Corp., a leading supplier of enterprise and developer text retrieval software along with document filters, announces Version 7.72 of its product line. The new version expands dtSearch’s proprietary document filters built into its text retrieval products. For customers in need of data parsing, conversion and extraction only, the dtSearch Engine (with APIs in native 64-bit/32-bit, Win/Linux C++, Java and .NET through current versions) also provides the document filters for separate OEM licensing.
Supported Data Types. dtSearch’s document filters support a broad range of data formats:
* Web-ready static data: covers integrated image and text support in HTML, XML/XSL and PDF.
* Web-based dynamic data: through the dtSearch Spider, covers integrated image and text support in PHP, ASP.NET, SharePoint, etc.
* Other databases: through the dtSearch Engine APIs, covers SQL-type databases along with the full-text of BLOB data; all products support Access, XBASE, XML, CSV, etc.
* MS Office documents: covers integrated image and text support in Word (DOC/DOCX), PowerPoint (PPT/PPTX), Excel (XLS/XLSX) and Access (MDB/ACCDB).
* Other “Office” documents and compression formats: covers PDF with integrated image and text support, RTF, OpenOffice, ZIP, RAR, GZIP/TAR, etc.
* Emails and email attachments: covers MS Exchange, Outlook (PST/MSG), Thunderbird (MBOX/EML), and other popular email types, including nested email attachments.
* Embedded image support: covers images in Word, PowerPoint, Excel, Access and RTF files, as well as Outlook and Thunderbird emails, including images in recursively embedded files.
For all supported formats, the document filters support data parsing and optional extraction, as well conversion to HTML for browser display with highlighted hits.
New in Document Filters. Version 7.72 adds OneNote (*.one) support through current versions, including support for images and documents embedded in OneNote files. The new version also expands the document filter APIs, enhancing options for text extraction from individual files, nested objects, etc.
Terabyte Indexer. dtSearch enterprise and developer products can index over a terabyte of data in a single index, spanning multiple directories, emails and attachments, online data and other databases. The products can create and search any number of indexes. Indexed search time is typically less than a second, even across terabytes of data. The product line also supports highly concurrent, multithreaded searching.
dtSearch Spider and Federated Searching. dtSearch products offer federated searching across any number of directories, emails (with nested attachments), and databases. The dtSearch Spider adds local and remote, static and dynamic online content to a search. The Spider can index sites to any level of depth, with support for public and private or secure online content, including log-ins and forms-based authentication. dtSearch products support integrated relevancy ranking with highlighted hits of data across both online and offline repositories.
Developer SDKs. The dtSearch Engine for Win & .NET and the dtSearch Engine for Linux make available dtSearch instant searching and document filters (both together with searching as well as available for separate licensing) for a wide range of Internet, Intranet and other commercial applications. SDKs include native 64-bit and 32-bit C++, Java and .NET (through current versions) APIs. For over a hundred developer case studies, please see www.dtsearch.com/casestudies.html.
# # #
About dtSearch, www.dtsearch.com
The Smart Choice for Text Retrieval® since 1991, dtSearch has provided enterprise and developer text retrieval along with document filters for over 22 years. The company offers parsing, extraction and conversion—as well as of course searching—of a broad spectrum of data formats. Supported data types include databases, static and dynamic website data, popular "Office" formats, compression formats and email types (including the full-text of nested attachments).
|
|
|
|
|
Technical webinars will explore how to take advantage of a complete, OSGi-based platform to quickly adapt to specific enterprise needs on-premises or in the cloud
Palo Alto, CA – July 8, 2013 – Enterprises seek to optimize, build and extend their middleware platforms to rapidly adapt to specific IT project needs. However, traditional middleware architectures can limit the options for doing so. WSO2 Carbon addresses the IT demand flexibility and extensibility by providing a complete, OSGi-based platform based on 175-plus components, including common capabilities shared by all WSO2 products. On July 10, WSO2 will kick-off a new three-part webinar series that examines how IT architects and developers can readily adapt WSO2 Carbon (http://wso2.com/products/carbon/) componentized middleware to support their project demands. The webinars include:
• Introduction to the WSO2 Carbon Platform: Wednesday, July 10, 2013
• How to Extend WSO2 Carbon for Your Middleware Needs: Wednesday, July 17, 2013
• How to Build a Custom Stack with WSO2 Carbon: Wednesday, July 24, 2013
Each session will run from 9 a.m.-10 a.m. Pacific Daylight Time. To learn more and register, visit http://wso2.com/landing/carbon-webinar-series.
July 10: Introduction to the WSO2 Carbon Platform
Middleware unites different software applications, enabling messaging and mediation services that facilitate communication among heterogeneous applications. This webinar will review how WSO2 Carbon provides a lean, modular enterprise-class middleware platform that can readily adopt to an organization’s IT architecture. It also will examine how the WSO2 Carbon architecture enables businesses to:
• Adopt new parts of the WSO2 platform with minimum disruption.
• Fit the platform architecture according to the current business and IT architecture.
• Reduce learning curves and accelerate delivery by means of shared platform components that are reused across products.
Jointly presenting the webinar will be Paul Fremantle, WSO2 co-founder and CTO, and Sameera Jayasoma, a software architect on the WSO2 Carbon team. To learn more, visit http://wso2.com/library/webinars/2013/07/introduction-to-the-wso2-carbon-platform.
July 17: How to Extend WSO2 Carbon for Your Middleware Needs
Too often IT professionals have to adapt their projects to fit the structure of their middleware. This webinar examines how IT architects and developers can instead adapt WSO2 Carbon to match their project requirements on-premises and the cloud. It will explore how to get the most out of WSO2 Carbon extension points by:
• Plugging in a custom authentication mechanism for administration services/APIs.
• Intercepting every request into Carbon and implementing new features, such as custom logging and data publishing.
• Intercepting Web service requests and operating on a SOAP payload.
• Making authentication work with a custom-defined user store.
Presenter Pradeep Fernando is an associate technical lead on the WSO2 Carbon team. To learn more, visit http://wso2.com/library/webinars/2013/07/how-to-extend-wso2-carbon-for-your-middleware-needs.
July 24: How to Build a Custom Stack with WSO2 Carbon
A componentized approach to middleware enables a new level of customization by mixing and matching available functions. This webinar will review WSO2 Carbon’s platform component concept and explore how to combine various WSO2 Carbon platform features to suit specific IT project requirements. Key topics will include:
• Installing features using the Feature Manager.
• Creating a custom product for cluster-wide deployment.
• Scripting feature installation for automation.
• Logging and adding configurations.
Joint presenters Shameera Rathnayaka and Manoj Kumara are software engineers on the WSO2 Carbon team. To learn more, visit http://wso2.com/library/webinars/2013/07/how-to-build-a-custom-stack-with-wso2-carbon.
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, Twitter, LinkedIn, Facebook, and FriendFeed.
Trademarks and registered trademarks are the properties of their respective owners.
|
|
|
|
|
The commercial version of GdPicture.NET Document Imaging SDK version 10 will be released on September 2013. A BETA program is now available to try the new functionalities of GdPicture.NET 10.
Muret, France, (07/08/2013). ORPALIS has launched the BETA version of GdPicture.NET 10. The major features of this release are numerous and include a new Color Detection engine, WebP image format support (reading and writing), full color profile support, Micro QR Code support (decoding and writing), full support for 16-bits per channel bitmap, image codecs improvements, vector support for PDF/OCR and more.
The BETA program of GdPicture.NET 10 is accessible upon request on the helpdesk platform of the GdPicture website www.gdpicture.com at http://support.gdpicture.com/ (Support/Submit Ticket/GdPicture.NET 10 BETA Program).
Here is a short overview of some of the major changes (the list is not exhaustive and is updated daily):
- Color detection (new plugin).
- New Micro QR Code Reader and Writer engine.
- Support to access image information, metadata and embedded thumbnail without decoding pixel added.
- PDF/OCR creation from PDF keeping all input document content (fonts, text, bitmap, vectors, metadata, page structures...).
- GdPicture Tesseract Plugin now based on Tesseract 3.02 and includes more languages.
- GdPicture Tesseract Plugin behaviour can now be fully customized.
- AES 256 bit encryption support for PDF format.
- Average PDF rendering time decreased by 20%. Up to 50% on bitmap based PDF.
- JPEG2000 compression scheme support for PDF creation.
- Faster JPEG codec (between 2 and 4 times faster for loading and saving purpose).
- JBIG2 decoding: speed improvement, multipage reading optimization.
- Support for native 48-bit and 64-bit bitmap processing.
- Multipage tiff loading time divided by two.
- Multipage tiff creation with mixed JPEG and CCITT compression support.
- Option to extract a specific page of an editable multipage tiff document without the need to decode and re-encode the bitmap added.
- Support for sequential multipage tiff writing into stream objects (including mixed compression support) added.
- Support to specify compression of each page in multipage tiff writing added.
- PNG encoder improved and interlacing + compression level customization + 48 & 64 bit PNG creation + predictor support added.
- RLE compression support for 8bpp BMP saving added.
- 48 bit and 64 bit output support JPEG 2000 saving added.
- Full ICC profile support for RGB and CMYK color spaces.
- Transparency support for EXR saving added.
- Morphological Operators: thinning, skeletonize, open, close.
- WebP image support (reading and writing).
- Multipage ico reading support.
- "Number of copies" & collate option support in the printing dialog boxes.
- HDR Images filter support.
- Sobel and Prewitt Operators Edge Detectors filters added.
- Thumbnail reading and writing in image structure.
- Support for CMYKA, CMYK16 and CMYKA16 color spaces with ICM correction added.
- Support for CMYKA and CMYK16A tiff creation added.
- Support for IPTC tags writing and editing added.
- PDF parser to recover corrupted documents and to speed-up document reading / generation improved.
Upgrade to GdPicture.NET 10
Owners of a Gdpicture.NET v9 license bought after March 1st 2013 are eligible for a free upgrade to GdPicture.NET 10 which will be released in September.
For licenses bought before March 1st 2013 discounted prices will be available in September.
The GdPicture sales team can be contacted on the live-chat from Monday to Friday from 9 am to 5 pm Central European Time (GMT +1). Sales tickets can be sent anytime from our helpdesk at http://support.orpalis.com/index.php?/Tickets/Submit/.
A Quick Contact Form (http://www.gdpicture.com/contact/contact-form.php) is also available.
About ORPALIS
ORPALIS is creator, developer and owner of the comprehensive document imaging toolkit series released under the brand "GdPicture", which is now a worldwide known and respected leader in imaging technologies. More than 12,000 developers based in over 70 countries include GdPicture components in their applications.
www.orpalis.com / www.gdpicture.com
Contact information
http://www.gdpicture.com/contact.php
|
|
|
|
|
CAD Software VC++ Visualization Source Code Kit and CAD OCX Control
http://www.ucancode.net/XDFeature/feature38.htm[^]
E-XD++ Suite is the leading C++ CAD library for building image-based CAD GUIs.
Rich, custom CAD GUIs for demanding applications
Equip demanding applications with user interfaces that are highly customized and visually rich. XD++ Visualization Component Suite helps you build better displays, fast:
High-performance 2D graphics
Powerful GUI builder
Shorter development time
Reduced maintenance costs
Customizable business graphic objects, charts and diagrams.
support multiple layers drawing.
support import autocad's DXF file.
support measure distance between a list of points.
support measure area.
support draw circle or ellipse with two or three points.
supports drawing multiple kind of dimension shapes.
Printing and preview.
Export with jpeg or bitmap file.
Most important, it is written with 100% VC++/MFC and ships it's full source codes.
etc.
High-performance graphic objects, robust, versatile graphic objects
Display thousands of vector and raster graphic objects
Animate objects (display moving aircraft in air traffic control applications)
Modify objects (display equipment status in real time)
High-performance display and refresh (ideal tool for map displays)
This example shows how to use E-XD++ in CAD component application, including drawing from center, MM_HIMETRIC projecting mode, black background editing and customized printing, vertexes auto-capturing, intersections, etc, as shown below:
UCanCode CAD ActiveX Control
For Visual Basic, C#, Delphi or other languages developers, ucancode had prepared a CAD OCX Control, it's UCanCode CAD ActiveX Control. It has the following features:
1. Can be called with any C#.NET, Java, Delphi or VB languages.
2. Can be used by web.
3. It is based on UCanCode leading CAD solution, all the features of UCanCode CAD Solution can be called with this CAD ActiveX Control.
4. It supports DXF loading, layer, and many kind of advance CAD features.
5. All the features can be full customized.
6. The source codes of this cad control can be purchased with E-XD++ Enterprise Suite.
7. With our consulting service, we can help you do any modify with this cad ocx control to meet your own specify requires.
8. With all the other features of UCanCode Draw Control.
http://www.ucancode.net/XDFeature/feature38.htm[^]
Contact UCanCode Software
To buy the source code or learn more about with:
Product Inquiry
E-mail to (sales@ucancode.net)
Or call us at: +86-28-8535-4545
Fax us at: +86-28-8535-4645
Technical support online with msn messager: ucancode@hotmail.com
Download a trial solution
|
|
|
|
|