ValidateLogin() method throw exception (HRESULT: 0x8004A00E) in TCCS mode
SolutionSolidEdgeFramework.SolidEdgeTCE.ValidateLogin() is not supported for TCCS mode.
Validates the Login
Public Sub ValidateLogin( _
ByVal bstrUserName As String, _
ByVal bstrPassword As String, _
ByVal bstrGroup As String, _
ByVal bstrUserRole As String, _
ByVal bstrDBUrl As String _
)
Instead use ValidateLogin_TCCS() method,
SolidEdgeFramework.SolidEdgeTCE.ValidateLogin_TCCS is introduced in SE2023 and supported for TCCS mode and validates the TCCS Login
Public Sub ValidateLogin_TCCS( _
ByVal bstrUserName As String, _
ByVal bstrPassword As String, _
ByVal bstrGroup As String, _
ByVal bstrUserRole As String, _
ByVal bstrDBUrl As String, _
ByVal bstrDBDesc As String _
)