Apex SOAP Callouts || Apex Integration Services

แชร์
ฝัง
  • เผยแพร่เมื่อ 12 ม.ค. 2025

ความคิดเห็น • 8

  • @maximumgamingpro
    @maximumgamingpro ปีที่แล้ว

    bhai remote site setting ka url mera galat bata rha hai kyu?

  • @calexjebaalexjeba
    @calexjebaalexjeba ปีที่แล้ว +1

    Thanks the lord thank you sir

    • @Shxrmxy
      @Shxrmxy 10 หลายเดือนก่อน

      my code have 6 problems

  • @Solo-Tech-World10001
    @Solo-Tech-World10001  ปีที่แล้ว +4

    1.ParkServiceMock
    -------------------------------------
    @isTest
    global class ParkServiceMock implements WebServiceMock {
    global void doInvoke(
    Object stub,
    Object request,
    Map response,
    String endpoint,
    String soapAction,
    String requestName,
    String responseNS,
    String responseName,
    String responseType) {
    // start - specify the response you want to send
    ParkService.byCountryResponse response_x = new ParkService.byCountryResponse();
    response_x.return_x = new List{'Yellowstone', 'Mackinac National Park', 'Yosemite'};
    // end
    response.put('response_x', response_x);
    }
    }
    2.ParkLocator
    -----------------------------
    public class ParkLocator {
    public static string[] country(string theCountry) {
    ParkService.ParksImplPort parkSvc = new ParkService.ParksImplPort(); // remove space
    return parkSvc.byCountry(theCountry);

    }
    }
    3.ParkLocatorTest
    --------------------------------
    @isTest
    private class ParkLocatorTest {
    @isTest static void testCallout() {
    Test.setMock(WebServiceMock.class, new ParkServiceMock ());
    String country = 'United States';
    List result = ParkLocator.country(country);
    List parks = new List{'Yellowstone', 'Mackinac National Park', 'Yosemite'};
    System.assertEquals(parks, result);
    }
    }

    • @sumanthuppalapati6505
      @sumanthuppalapati6505 ปีที่แล้ว +1

      code coming error

    • @vijayamalika215
      @vijayamalika215 11 หลายเดือนก่อน

      Yes

    • @ajaypalla2003
      @ajaypalla2003 11 หลายเดือนก่อน

      Code getting 6 errors
      please help me bro

    • @Shxrmxy
      @Shxrmxy 10 หลายเดือนก่อน

      me too@@ajaypalla2003