if (hasConnectionLicense("http://server") == $FALSE) {
Messagebox("http://serverへの接続ライセンスを登録します");
try{
importConnectionLicense("http://server/License.xml");
MessageBox("ライセンスの登録が完了しました");
}Catch( e ){
MessageBox("ライセンスが登録できませんでした\r\n"
+ e.Method +"-"+ str(e.Code) +" "+ e.Message);
}
}
|