Also in der Doku habe ich nichts weiteres gefunden. Einzig in der lsxsd.lss gibt es Einstellungen aber nicht für den ReverseProxy:
Public Class PortTypeBase
Private Service as NotesWebServiceEngine
Private NoFault as WS_FAULT
Public Sub New()
set Service = new NotesWebServiceEngine
set NoFault = new WS_FAULT
End Sub
Public Sub SetEndpoint(url as String)
call Service.SetEndpoint(url)
End Sub
Public Function GetEndpoint() As String
GetEndpoint = Service.GetEndpoint()
End Function
Public Function GetLastFault() As WS_FAULT
Set GetLastFault = Service.GetLastFault
if (GetLastFault is nothing) then
set GetLastFault = NoFault
End if
End Function
Public Sub SetTimeout(ms as Long)
call Service.SetTimeout(ms)
End Sub
Public Function GetTimeout() As Long
GetTimeout = Service.GetTimeout()
End Function
Public Sub SetCredentials(username As String, password As String)
call Service.SetCredentials(username, password)
End Sub
Public Sub SetSSLOptions(Opt as Long)
call Service.SetSSLOptions(Opt)
End Sub
Public Function GetSSLOptions() As Long
GetSSLOptions = Service.GetSSLOptions()
End Function
End Class
Kann es sein das eine Proxykonfiguration am Domino Server eingestellt wird?!
Ich werde dort mal nachschauen.