Hi there,
The maps works fine but I needed to add scripting functoids to it.
I configured the scripting functoids to use the InLine C# with the following code in order to change the date format from 2015-04-15T10:55:34.11Z to 15/04/2015
Furthermore, I checked with a simple C# application that this code is not throwing any errors.
The aaa variable is irrelevant, I use it to check that the new map is doing it's job and is deployed.
public string FormatDate(string inputDate)
{
string a = "aaa";
DateTime inDate = DateTime.Parse(inputDate);
return inDate.ToString("dd/MM/yyyy")+a;
}
I've built and redoployed the project that holds the map - no change, still getting 2015-04-15T10:55:34.11Z
I've built and deployed the application - and I was getting; 2015-04-15T10:55:34.11Z
I've removed the application from BizTalk Administration Console - then I have rebuilt and re-deployed the project - same result
So the question is why would the map not accept the change ?