Hi. I did a simple “Hello World” webservice:
Class EchoTest
Public Function Saludo (searchString As String, _
returnFault As WS_FAULT) As String
On Error Goto processError
Saludo = "Hola Mundo"
Exit Function
processError:
Call throwFault(returnFault, "Error searching documents: " & Error)
Exit Function
End Function
Private Sub throwFault (fault As WS_FAULT, faultText As String)
Call fault.setFault(True)
Call fault.setFaultString(faultText)
'** do any other error logging things here...
End Sub
End Class
When SSL is disabled, webservice works fine (I type correct URL into a browser and WSDL is displayed). But if SSL is enable, it doesn´t work (URL within https or http), and log message send next warning:
HTTP Web Server: Couldn´t find design note - classname [/db.nsf/webservicename?wsdl]
Please, could sombody help me please?.. is very urgent.
Thanks a lot.