TOPCOMP test

This is a test of the TOPCOMP service.
Test filesDownload the files for this test
Test runRun test now
Support reference#241-242
Retrieves data for the protein 1a91.
Show/hide recent test logs
view log 14 hours agoPASSED

Test began: 2012-05-18 18:49:45 Test ended: 2012-05-18 18:49:46 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 1 week agoPASSED

Test began: 2012-05-09 18:56:26 Test ended: 2012-05-09 18:56:27 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 2 weeks agoPASSED

Test began: 2012-05-06 17:04:19 Test ended: 2012-05-06 17:04:20 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 3 weeks agoPASSED

Test began: 2012-04-25 15:07:51 Test ended: 2012-04-25 15:07:52 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 1 month agoPASSED

Test began: 2012-04-13 19:45:59 Test ended: 2012-04-13 19:46:00 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 1 month agoPASSED

Test began: 2012-04-12 22:56:31 Test ended: 2012-04-12 22:56:32 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 1 month agoPASSED

Test began: 2012-04-12 18:01:12 Test ended: 2012-04-12 18:01:13 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 1 month agoPASSED

Test began: 2012-04-07 14:59:36 Test ended: 2012-04-07 14:59:37 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 2 months agoPASSED

Test began: 2012-03-24 17:39:41 Test ended: 2012-03-24 17:39:42 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
view log 2 months agoPASSED

Test began: 2012-03-22 14:16:38 Test ended: 2012-03-22 14:16:39 Result : Test passed ------ stderr and stdout follow ------ runTopcompDefault: 0Download this log...
This test consists of the following files:
topcomp_embraceregistry_test.pl
#!/usr/bin/perl -w
use SOAP::Lite;
my $soap_TopcompService = SOAP::Lite
->uri('topcomp')
->proxy('http://wsdl.sbc.su.se/cgi-bin/topcomp.cgi');
my $id = "1a91";
print "runTopcompDefault:\n";
my $result = $soap_TopcompService -> runTopcomp($id);
# check for error
unless ($result->fault)
{
# Success! print '0'
print "0\n";
}
else
{
print "1\n";
}
»
- Login to post comments