cancel
Showing results for 
Search instead for 
Did you mean: 

trimming trailing part of SOAP URL

Baron
Participant
0 Kudos
952

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/"

Accepted Solutions (0)

Answers (0)