How to set up VXL to run with M3 web services:
From Version 2018.01.08 you can run Web Services in VXL.
M3 Web Services:
We start by creating the M3 web service.
In this case we want to create a connection in MNS410 between a role and a user.
In VXL you want to call this web service through the following XML script:
<?xml version="1.0" encoding="utf-8"?> <VinceExcelConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="VinceExcelConfig.xsd"> <Import InputStartRow="3"> <ImportDetail> <M3Api Program="MPD_MNS410_Create" Transaction="Create" MwsUrl="https://m3tst.hoganas.int:22102/mws-ws/" MwsNamespace="http://your.company.net/MPD_MNS410_Create" MwsContext="services" MwsName="MPD_MNS410_Create" MwsMethod="Create" MwsType="MPD"> <InputField Name="Role" Value="*A"/> <InputField Name="User" Value="*B"/> <MwsProgram MwsPgmName="MNS410"> <Param MwsField="W1ROLL" Alias="Role"/> <Param MwsField="W1USID" Alias="User"/> </MwsProgram> </M3Api> </ImportDetail> </Import> </VinceExcelConfig>
Explanations:
Program =” MPD_MNS410_Create”
Transaction = “Create”
MwsUrl = “https://secb103.work.lantmannen.lan:22302/mws-ws/”
MwsNameSpace = “http://your.company.net/MPD_MNS410_Create”
MwsContext = services
MwsName = “MPD_MNS410_Create”
MwsMethod = “Create”
MwsType = “MPD”