How to set SyncServiceTimeout in Peoplecode
The correct syntax is "&msg.IBInfo.SyncServiceTimeout = 360000". The sample code that should work is: &msg = CreateMessage(Operation.PROCESS, %IntBroker_Request); &msg.SetXmlDoc(&xml); &ret = &msg.IBInfo.LoadConnectorPropFromRouting("~GENERATED~12752769"); &msg.IBInfo.SyncServiceTimeout = 360000; &msg.IBInfo.ConnectorOverride = True; &msg_Resp = &msg.SyncRequest(Node.BPEL); &xmlResponseDoc = &msg.GetXmlDoc();