VMware {code} Community
tos2k
Expert
Expert

How to run Converter server locally

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

Reply
0 Kudos
2 Replies
patanassov
VMware Employee
VMware Employee

Call ConverterImpersonate instead of ConverterLogin. You may pass null or empty string for locale.

Regards,

Plamen

tos2k
Expert
Expert

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

Reply
0 Kudos