Hi
I have a question regarding Web Portal Manager in version 7.1.2. Are direct links to objects like Person, TroubleTicket and so on still supported? In version 6.1.3 we have called them as follows and it has worked successfully:
In the following you will find the code where we build the link for mail templates.
<BaseObjectTypeAttribute("TroubleTicket")> _
Public Function CCC_BuildITShopLink_For_WebManager(ByVal dbTroubleTicket As ISingleDbObject) As String
Dim BaseURL As String = Connection.GetConfigParm("Custom\UHD\BaseUrlForWebUHD")
If BaseURL = "" Or BaseURL = "http://<server>/<App>" Then
Throw New Exception(#LD("This web interface URL is invalid (configuration parameter '{0}').", BaseURL)#)
End If
Dim alternateObjectKey As AlternateDbObjectKey
alternateObjectKey = New AlternateDbObjectKey(dbTroubleTicket)
Return String.Format("{0}/AE.portal?NavigateTo={1}&Mode=AlternateObjectKey", _
BaseURL, _
alternateObjectKey.ToXmlString(False).Replace(ControlChars.Quote.ToString(), "'"))
End Function
But since we have migrated to the version 7.1.2 the old Syntax seems to be no longer working, because we are getting an error, when we try to calling the Web Portal Manager with the link given above:
I am grateful for any help!
-
Regards
Sven
