Hi,
Ok so I can create a data server from a web page via http post as per the example below:
var myxml = "<?xml version='1.0' encoding='UTF-8' standalone='no'?><Servers Version='12.2.3.182'><Server Connector='IDBC' ConnectorID='' ConnectorType='SQL' DatePrefix='' DateSuffix='' DaysRetention='7' Description='Online Project Database' Enabled='T' InitCommand='' InternalDateFormat='yyyy-MM-dd HH:mm:ss' JDBCDriver='com.microsoft.sqlserver.jdbc.SQLServerDriver' MaxRetryCount='5' Name='00_TEST' Password='UGezc3cwcmQ=' PoolMax='500' PoolSize='100' RetryInterval='60000' ServerPackage='com.sap.xmii.Illuminator.connectors.IDBC' ServerURL='jdbc:sqlserver://localhost:1433;databaseName=SRD_MASTER' Timeout='15' UseCount='256' UserName='xmiiuser' ValidationQuery='SELECT GETDATE()' WaitTime='120'/></Servers>" $.ajax("http://localhost:50000/XMII/Illuminator", { type: 'POST', data: { service: 'Configuration', mode: 'DataServers', type: 'Import', payload : myxml}, success: function( data, textStatus, jQxhr ){ alert(data); } });
So how does one simulate this in the BLS http post action block ?
Thanks