如何检查 WebService 是否可用或是否有有效的 url?
我正在使用 Delphi 向导来导入和自动生成必要的 WSDL 函数。
如果 WSDL 或 URL 错误,向导为我创建的函数不会引发异常也不会返回空对象。只有当我调用返回的 WSDL 类的函数时,它才会抛出一个奇怪的异常,即 XML-String 没有有效的“text/html”样式。
这是自动生成的 WSDL 函数:
function GetcheckVatPortType(UseWSDL: Boolean; Addr: string; HTTPRIO: THTTPRIO): checkVatPortType;
const
defWSDL = 'http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl';
defURL = 'http://ec.europa.eu/taxation_customs/vies/services/checkVatService';
defSvc = 'checkVatService';
defPrt = 'checkVatPort';
var
RIO: THTTPRIO;
begin
Result := nil;
if (Addr = '') then
begin
if UseWSDL then
Addr := defWSDL
else
Addr := defURL;
end;
if HTTPRIO = nil then
RIO := THTTPRIO.Create(nil)
else
RIO := HTTPRIO;
try
Result := (RIO as checkVatPortType);
if UseWSDL then
begin
RIO.WSDLLocation := Addr;
RIO.Service := defSvc;
RIO.Port := defPrt;
end else
RIO.URL := Addr;
finally
if (Result = nil) and (HTTPRIO = nil) then
RIO.Free;
end;
end;
// ************************************************************************ //
// Namespace : urn:ec.europa.eu:taxud:vies:services:checkVat
// Transport : http://schemas.xmlsoap.org/soap/http
// Stil : document
// Verwenden von : literal
// Bindung : checkVatBinding
// Service : checkVatService
// Port : checkVatPort
// URL : http://ec.europa.eu/taxation_customs/vies/services/checkVatService
// ************************************************************************ //
checkVatPortType = interface(IInvokable)
['{0F901373-2432-32E2-C99D-95B53AE83C79}']
// Entpacken nicht möglich:
// - Mehrere strenge out-Elemente gefunden
function checkVat(const parameters: checkVat): checkVatResponse; stdcall;
// Entpacken nicht möglich:
// - Mehrere strenge out-Elemente gefunden
function checkVatApprox(const parameters: checkVatApprox): checkVatApproxResponse; stdcall;
end;
如果defWSDL
ordefURL
无效或不可用,则返回一个初始化的checkVatPortType
类/接口。之后在返回的接口上调用函数 ( checkVatPortType.checkVat
),我得到了奇怪的异常。
这意味着,如果 WebService 不可用,用户会收到一条消息,指出“XML-String 没有有效的“text/html”格式”。这没有描述问题。