Dim ws_url As String = "https://sscweb.gsfc.nasa.gov/WS/helio/1/HeliocentricTrajectoriesService"
Dim ws_namespace As String = "http://helio.spdf.gsfc.nasa.gov/"
Dim client As Soap1_1WsClient = New Soap1_1WsClient(ws_url, ws_namespace)
Dim parameters As New Dictionary(Of String, Object)()
parameters.Add("???", "???")
Dim result As String = client.callServiceFunction("getAllObjects", parameters)
client.callServiceMethod("getAllObjects", parameters)
Hello,
How to query the service without passing parameters using your library? Example from SOAP UI (page: https://sscweb.gsfc.nasa.gov/WS/helio/1/HeliocentricTrajectoriesService )
My code:
What to give for "???"