在SAP ABAP中获取未经授权的异常

要解决此问题,您需要在代码中添加try / catch响应。如果您不包括授权标头,则会导致服务器出现错误401。

try {

    CatalogService.CatalogChangeClient service =

     new CatalogService.CatalogChangeClient();

    service.ClientCredentials.UserName.UserName = "username";

    service.ClientCredentials.UserName.Password = "password";

    service.ClientCredentials.SupportInteractive = true;

    ProductUpdate[] products = new ProductUpdate[1];

    products[0] = new ProductUpdate();

    products[0].ProductCode = "00001";

    products[0].ProductDescription = "TestProduct";

    string result = service.UpdateProducts(products);

} catch (Exception exception) {

    Console.WriteLine(exception.Message);

}

以上是 在SAP ABAP中获取未经授权的异常 的全部内容, 来源链接: utcz.com/z/338529.html

回到顶部