on 2020 Jan 27 9:13 AM
I am trying to call a SOAP webservice over my Sql-anywhere 17 Database.
I am following the steps declared here
So that I use the following code:
create FUNCTION Bank_Details(BLZ varchar(40))
RETURNS XML
URL 'http://thomas-bayer.com/blz/'
SET 'SOAP(OP=getBank)'
TYPE 'SOAP:DOC';
select Bank_Details('10070000');
Whereas http://thomas-bayer.com/blz/ is a valid dummy SOAP Service, but my select ends with error status code '404 Not Found'
I activated logging, and can see in the log file that the problem is that the URL is trimmed, so that "http://thomas-bayer.com:80" is called instead of "http://thomas-bayer.com/blz/"
User | Count |
---|---|
71 | |
11 | |
11 | |
10 | |
9 | |
9 | |
7 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.