2

workday HR Web サービスに接続しようとしています。しかし、私は得ています:

WebServiceException : サポートされていないエンドポイント アドレス: Human_Resources。

public static void main(String[] args){
    HumanResourcesService hrservice=new HumanResourcesService();
    HumanResourcesPort hrport=hrservice.getHumanResources();
    //further code
}

HumanResourcesService クラスの WebEndpoint スニペット:

@WebEndpoint(name = "Human_Resources")
public HumanResourcesPort getHumanResources() {
    return super.getPort(new QName("urn:com.workday/bsvc/Human_Resources", "Human_Resources"),
            HumanResourcesPort.class);
}

どんな助けでも大歓迎です。

4

1 に答える 1