Как получить операции файла WSDL из запроса https? - PullRequest
0 голосов
/ 08 февраля 2019

Как получить операции WSDL-файла из HTTPS запроса?Я попробовал этот, но он не работает для HTTPS запроса.Это работает для HTTP . // url = https // xyz.com?wsdl

//url = https//xyz.com?wsdl
WsdlProject project = new WsdlProject();
    WsdlInterface[] wsdls = WsdlImporter.importWsdl(project,url);
    int index=0;
    for(WsdlInterface wsInterface: wsdls) {
        index++;
        Operation[] operations = wsInterface.getAllOperations();
        for(Operation op:operations) {
            ApiOperation operation = new ApiOperation();
            operation.setName(op.getName());
            //Adding operation to a list
        }
    }

Как получить файл WSDL для URL-адреса HTTPS?

...