var result = _urlResolver.Service.GetUrl( contentLink, contentLanguage.Name, new VirtualPathArguments { ContextMode = ContextMode.Default, ForceCanonical = absoluteUrl });
Returns Link https://domain.test.com/:443/de/produktkonfiguration/id/
Question is if i have misconfiguered something or there is a bug in GetUrl?
I found the problem:In HostNames there was a forward slash in the the primary url
this coused the :443 end up after the /
var result = _urlResolver.Service.GetUrl(
contentLink,
contentLanguage.Name,
new VirtualPathArguments
{
ContextMode = ContextMode.Default,
ForceCanonical = absoluteUrl
});
Returns Link https://domain.test.com/:443/de/produktkonfiguration/id/
Question is if i have misconfiguered something or there is a bug in GetUrl?