call.setTargetEndpointAddress(new java.net.URL(WEB_SERVICE_URL));
call.setOperationName(new QName("LicenseAdminSoapService", "obtainLicenseFile"));
call.addParameter("arg1", XMLType.XSD_BASE64, ParameterMode.IN);
call.addParameter("arg2", XMLType.XSD_BASE64, ParameterMode.IN);
call.setReturnType(XMLType.XSD_BASE64);
returnByteArray = (byte[])call.invoke(new Object[] { blowfishKey, serverData });
} catch (RemoteException remoteException) {
logger.error("[obtainLicenseFile] Exception thrown.", remoteException);
throw new AxisFault(SERVER_DOWN_MESSAGE);
} catch (Exception exception) {
logger.error("[obtainLicenseFile] Exception thrown.", exception);