SpringBoot建立WebService服務 + C++調用WebService具體實現

建立WebService服務:web


Idea -> New Project -> Spring Initializer -> web頁選擇web service模塊 + lombok 模塊spring


建立WebServiceConfig,主要配置webservice相關配置:windows


@Configuration安全

public class WebServiceConfig {服務器



    @Autowiredide

    private ValidateWaferIdService validateWaferIdService;函數


    /**google

     * 注入servlet  bean name不能dispatcherServlet 不然會覆蓋dispatcherServlet阿里雲

     */spa

    @Bean(name = "cxfServlet")

    public ServletRegistrationBean<CXFServlet> cxfServlet() {

        return new ServletRegistrationBean<>(new CXFServlet(), "/webservice/*");

    }



    @Bean(name = Bus.DEFAULT_BUS_ID)

    public SpringBus springBus() {

        return new SpringBus();

    }



    @Bean(name = "WebServiceDemoEndpoint")

    public Endpoint sweptPayEndpoint1() {

        EndpointImpl endpoint = new EndpointImpl(springBus(), validateWaferIdService);

        endpoint.publish("/webservice");

        return endpoint;

    }

}


建立對應的服務接口,定義API函數:


@WebService

public interface ValidateWaferIdService {

    @WebMethod

    String DPMatchLot(@WebParam(name = "waferId") String waferId,

                      @WebParam(name = "startEnd") String startEnd,

                      @WebParam(name = "clientId") String clientId);

}


對服務接口進行具體實現,其中注意對應的annotation要配置正確:


@Service

@WebService(serviceName = "DPMatchLot", // 與接口中指定的name一致

        targetNamespace = "http://webservice.frank.com", // 與接口中的命名空間一致,通常是接口的包名倒

        endpointInterface = "com.example.webservice.ValidateWaferIdService" // 接口地址

)

public class ValidateWaferIdServiceImpl implements ValidateWaferIdService {


    @Override

    public String DPMatchLot(String waferId, String startEnd, String clientId) {


        if (waferId.equals("CE0011737-19G5") && startEnd.equals("START") && clientId.equals("DWS001")) {

            return "{\"waferid\":\"EP0251785-18G1\",\"result\":\"ok\"}";

        } else if (waferId.equals("CE0011737-19G5") && startEnd.equals("START") && clientId.equals("DWS002")) {

            return "{\"waferid\":\"CE0011737-19G5\",\"ErrorNo\":\"0007\",\"message\":\"Wafer count not match.\",\"result\":\"Fail\"}";

        } else {

            return "{\"waferid\":\"CE0011737-19G5\",\"ErrorNo\":\"0008\",\"message\":\"The input wafer id format is incorrect.\",\"result\":\"Fail\"}";

        }

    }


啓動服務,因爲endpoint 其publish在 /webservice目錄下,訪問 http://localhost:8090/webservice  便可發現對應的入口,以及對應的WSDL文件對應的連接


若是要部署到服務器上,例如阿里雲,則要注意對應啓動服務後要經過安全組打開對應的端口,不然外部調用沒法訪問。


C++ 建立客戶端:


下載google gsoap2.8版本


windows下,進入gsoap/bin/win32目錄,錄得對應相對目錄路徑,而後cmd下cd入當前目錄路徑。


依次執行如下命令:

cd C:\Program Files (x86)\gsoap-2.8\gsoap\bin\win32

wsdl2h -o validate.h http://localhost:8090/webservice/webservice?wsdl

soapcpp2 -j validate.h


其中,第二個命令用來生成對應的函數頭文件,第三個命令會對應生成須要的關聯文件以及對應的cpp文件,執行完會看到在對應目錄下生成不少文件。


新建一個空C++項目,把全部生成的文件copy進去,另外把gsoap目錄下的stdsoap2.h和stdsoap2.cpp文件也copy到項目裏。


新建一個mian函數,便可嘗試調用,例如本例中根據對應的函數入口,如下調用便可:


int main(int argc, const char* argv[])

{

DPMatchLotSoapBindingProxy proxy;

ns2__DPMatchLot waferElement;

ns2__DPMatchLotResponse errCode;


//Case #1 ---- A sample of Successful call of Web Service

string waferId = "CE0011737-19G5";

waferElement.waferId = &waferId;

string isHeader = "START";

waferElement.startEnd = &isHeader;

string clientId = "DWS001";

waferElement.clientId = &clientId;


if (proxy.DPMatchLot(&waferElement, errCode) == SOAP_OK)

{

cout << "SOAP CALL succeeded!" << endl;

cout << *errCode.return_ << endl;

}

else

{

cout << "SOAP CALL failed!" << endl;

cout << *errCode.return_ << endl;

}

相關文章
相關標籤/搜索