Consume webservice (and his functions) using SSL authentication (1 Viewer)

wsauliusw

New member
Local time
Today, 11:48
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?
 

theDBguy

I’m here to help
Staff member
Local time
Today, 01:48
Joined
Oct 29, 2018
Messages
21,494
Hi. Welcome to AWF!

Which web services are you using? Have you checked their documentation?
 

wsauliusw

New member
Local time
Today, 11:48
Joined
Jun 3, 2021
Messages
2
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.
 

Saphirah

Active member
Local time
Today, 10:48
Joined
Apr 5, 2020
Messages
163
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

Top Bottom