使用SSIS调用RESTful Web服务

时间:2015-04-09 18:12:00

标签: javascript json web-services rest ssis

我需要使用SSIS调用RESTful Web服务。

Web服务接受JSON对象作为参数 - 我可以通过使用JavaScript构造JSON对象来调用此服务:

data = {
    CustomerKey: "Demo",
    ApiKey: " 9999AA99-999A-9A9A-99A9-99999999A999",
    RegistrationNo: "REG N02",
    InsuranceRef: "Ins Ref",
    VehicleType: "Lorry",
    CarMake: "Car Make",
    CarModel: "Car Model",
    ChassisNo: "ChassisNo",
    GrossPlatedWeight: "GP weight",
    ManufactureYear: 1999,
    VehicleStatus: "Hired",
    DeliveryDate: null,
    TransferDate: new Date(2004, 4, 1, 0, 0, 0).toMSDate(),
    LastMotDate: new Date(2013, 12, 1, 0, 0, 0).toMSDate(),
    LastInspectionDate: new Date(2013, 1, 11, 0, 0, 0).toMSDate(),
    LastServiceDate: new Date(2014, 2, 2, 0, 0, 0).toMSDate(),
    InformationLog: "information log and more information",
    VehicleNotes: "Vehicle Notes",
    EntityReference: "reference",
    UseRootOrgUnit: "true",
    AddDictionaryItemIfMissing: "true"};

并将对象发布到Web服务。 Web服务还返回JSON对象。

但是,我在SSIS中无法使用javascript - 是否可以使用SSIS调用此类Web服务?如果是这样,任何人都可以通过链接帮我显示必要的步骤吗? (我没有SSIS经验)。

感谢。

0 个答案:

没有答案