Techno Logica


Monday, June 8, 2009

AccuRev to Support HP Quality Center 10.0

Article Source: EON:Enhanced Online News

LEXINGTON, Mass.--(EON: Enhanced Online News)--AccuRev Inc., a member of the HP Quality Management Ecosystem Partner Program, today announced support for HP Quality Center 10.0. AccuRev is extending its current issue-based change management integration to include software configuration management (SCM) for development and quality assurance (QA) teams leveraging their current investment in HP Quality Center 10.0.

AccuRev provides software development process automation and source code versioning to ensure full traceability between requirements and source code changes. The integration with HP Quality Center 10.0 improves the traceability of all development work and provides a firm foundation for application lifecycle management (ALM) based on the strong auditing, transactional, and compliance features of both systems.

“Working with HP, we plan to offer our customers an effective collaborative environment to manage all software development assets, from source code, requirements, tests, and other binaries all within the same tool,” said Cliff Utstein, vice president of marketing, AccuRev.

“Customers need to take a pragmatic approach to managing the application lifecycle in order to reduce costs and risks,” said Ankur Agarwal, senior product manager, Software & Solutions, HP. “AccuRev’s agile SCM and software process optimization capabilities combined with HP Quality Center help customers ensure that applications meet the needs of the business through end-to-end traceability of all business-critical artifacts.”

Availability

AccuRev integration with HP Quality Center 10.0 will be available from AccuRev in Q3 2009. For more information, contact your local AccuRev sales representative at 1-800-383-8170.

About AccuRev Inc.

AccuRev optimizes and automates the software development process to allow organizations using Agile or other development process models to accelerate their throughput and release higher quality software. AccuRev’s flexible and efficient approach to managing the software release process together with code assets is relied on by organizations challenged with doing Agile and parallel development, transitioning to Agile development practices, or managing geographically distributed and offshore teams. AccuRev ensures greater project visibility, optimal team collaboration, and software asset reuse to deliver more software at over 30 percent faster than traditional file-based, branch and label SCCM solutions. AccuRev, the fastest growing SCCM company, is used by over 500 global enterprises including Polycom, Texas Instruments, American Airlines, Orbitz, Thomson Financial, Verizon Wireless and Lockheed Martin.

Tuesday, June 2, 2009

Connect to Quality Center OTA Client using PHP

CODE:

$qcurl =$_GET["qcurl"];
$usr =$_GET["usr"];
$pwd =$_GET["pwd"];
$dmn =$_GET["dmn"];
$prj =$_GET["prj"]; 

$tdc = new COM("TDApiOle80.TDConnection") or die("Unable to instantiate Quality Center OTA API COM Object");
$tdc->InitConnectionEx($qcurl);
$tdc->Login($usr, $pwd);

If ($tdc->LoggedIn == 1)
echo "
Connected";
Else
        echo "Check the Attributes";

$tdc->Connect($dmn,$prj);

If ($tdc->Connected == 1)
echo "
Logged In : Domain - $dmn | Project :$prj ";

//$tsttMgr = $tdc->TestSetTreeManager; 


//Disconnect from the project
If ($tdc->Connected == 1)
{    $tdc->Disconnect();
echo "
Disconnected";
 }
//Log off the server
If ($tdc->LoggedIn == 1)
    $tdc->Logout();

//Release the TDConnection object.
$tdc->ReleaseConnection();
echo "
Released Connection.";