Get the latest exchange rates in Dynamics AX 2012 Using X++ Below small snippet will help you to get the latest exchange rates as on today. I am using x-rates URL to pull the exchange rates for this example. Note: Please check and verify this web URL before using it [free source or not]. static void SR_getExchangeRates(Args _args) { int curPos, endPos, startPos; TextBuffer tb = new TextBuffer(); System.Net.WebRequest webRequest; System.Net.WebResponse webResponse; str page; System.IO.StreamReader...(read more)
↧