Is there any way to access to the Converter Server locally without passing login information, as/in case the ConverterAPI app resides on the same machine?
Tos2k
Call ConverterImpersonate instead of ConverterLogin. You may pass null or empty string for locale.
Regards,
Plamen
Thats correct.
Url to server gets then
string serverUrl = "https://localhost/converter/sdk";
ConverterApi.ConverterService _converterService = new ConverterApi.ConverterService();
_converterService.Url = serverUrl;
_userSession = _converterService.ConverterImpersonate(_converterServerContent.sessionManager, null);
Tos2k
