I am new to web services, and I have been instructed to write some packages in PL / SQL that make requests to an external web service to allow customers to view their current support tickets and the status of where we are in the ticket support conditions. I was provided with the WSDL location for the service I'm trying to use, and I used SOAPUI to check the WSDL to form some requests. However, when I try to run a login request, it always fails (I think because the endpoint defined in the SOAP UI is incorrect.
Here is the WSDL file I'm trying to use: http://www.visionproject.se/api/docs/service.wsdl
And an API for the service: http://www.visionproject.se/api/docs/soap_service_VisionProjectWebServiceService.html#login2
And here is the query I'm trying to generate (shown below). Can someone point me in the right direction why this fails? I believe this may be due to the endpoint at the top, but I'm not sure.
As I said, I'm new to web services and really PL / SQL (I'm from a PHP background and have never done this before), so I apologize if I haven't included enough information.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:vis="http://www.visionproject.se/service/VisionProjectService-v2"> <soapenv:Header/> <soapenv:Body> <vis:login2> <username>?</username> <password>?</password> <visionProjectVersion>?</visionProjectVersion> </vis:login2> </soapenv:Body> </soapenv:Envelope>
source share