string loginName = "spread@reasonables.com";
string loginPassword = "spread";
string newAccountName = "newAccount";
string newAccountEmail = "newSpreader@reasonables.com";
string newAccountPassword = "password";
SpreadWS.SpreadWebService mySpread =
new SpreadWS.SpreadWebService();
bool result = mySpread.CreateNewAccount (loginName, loginPassword,newAccountName
,newAccountEmail
,newAccountPassword );
Visual Basic
Dim loginName As String
= "Spread@reasonables.com"
Dim loginPassword As String
= "Spread"
Dim newAccountName As String
= "SpreaderName"
Dim newAccountEmail As
String = "NewSpread@reasonables.com"
Dim newAccountPassword As
String = "password"
Dim MySpread As New
SpreadAPI.SpreadWebService()
Dim result As Boolean
= MySpread.CreateNewAccount(loginName, loginPassword, _
newAccountName ,
newAccountEmail, newAccountPassword)
public function CreateNewAccount($loginEmail,$password,$newAccountName,$newAccountEmail,$newAccountPassword){
$paraArray = array(
'loginEmail' => $loginEmail,
'password' => $password,
'newAccountName' => $newAccountName,
'newAccountEmail' => $newAccountEmail,
'newAccountPassword' => $newAccountPassword
);
$Client = new SoapClient("http://service.rspread.com/Service.asmx?WSDL");
Return $Client -> CreateNewAccount( $paraArray );
}
No sample.