Consume webservice (and his functions) using SSL authentication

wsauliusw

New member
Local time
Today, 12:30
Joined
Jun 3, 2021
Messages
2
Hi,

I'm trying exchange .xml data with webservice in access 365 vba. Now i'm using WinHttpRequest.5.1 to get SSL certificate from system and authenticate in webservice. It's working:

How can i reference to (call) web service functions ("Upload" "CheckState" "GetTransportDocumentsUIDs" "StateHistory")?
May be different classes needed?
 
Hi. Welcome to AWF!

Which web services are you using? Have you checked their documentation?
 
Thx for reply,

Web services url are:
imas-ws.vmi.lt/ivaz-uploader/services/uploader
imas-ws.vmi.lt/ivaz-uploader/services/uploader?wsdl

It is goverement taxation system.
 
Hey, sadly i do not speak the language of the documentation, so i can not look it up for you.

Most webservices either have a different URL for functions, GET Parameters or POST Parameters.
For Example when i want to send a geocoding request on google i would use the following URL:
Code:
https://maps.googleapis.com/maps/api/geocode/json?address=XXX&key=XXX
You can see the server (maps), the function (geocode) and the parameters for the function (address & key).

So please take a look at the webservice documentation to find the adress you need to call.
 

Users who are viewing this thread

Back
Top Bottom