class WebService_certificates_webservice_mobilefish_comService_certificates_webservice_mobilefish_comPort extends SOAP_Client
{
function WebService_certificates_webservice_mobilefish_comService_certificates_webservice_mobilefish_comPort($path = 'http://sand.mobilefish.com/services/web_service/certificates.php')
{
$this->SOAP_Client($path, 0);
}
function &createSelfSignedSSLCertificates($countryCode, $stateName, $localityName, $organizationName, $organizationUnit, $commonName, $emailAddress, $passphrase, $privateKeyBitSize, $daysCertificateIsValid)
{
$result = $this->call('createSelfSignedSSLCertificates',
$v = array('countryCode' => $countryCode, 'stateName' => $stateName, 'localityName' => $localityName, 'organizationName' => $organizationName, 'organizationUnit' => $organizationUnit, 'commonName' => $commonName, 'emailAddress' => $emailAddress, 'passphrase' => $passphrase, 'privateKeyBitSize' => $privateKeyBitSize, 'daysCertificateIsValid' => $daysCertificateIsValid),
array('namespace' => 'http://schemas.xmlsoap.org/soap/envelope/',
'soapaction' => 'http://schemas.xmlsoap.org/soap/envelope/#Certificates#createSelfSignedSSLCertificates',
'style' => 'rpc',
'use' => 'encoded'));
return $result;
}
}