How to properly re-deploy the map

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 ?


July 2nd, 2015 10:49am

Free Windows Admin Tool Kit Click here and download it now
July 2nd, 2015 10:53am

You have restart the Host Instance(s) that the Map runs in for the changes to take affect.

.Net will cache the Assembly.

July 2nd, 2015 11:02am

You have restart the Host Instance(s) that the Map runs in for the changes to take affect.

.Net will cache the Assembly.

Free Windows Admin Tool Kit Click here and download it now
July 2nd, 2015 2:56pm

You have restart the Host Instance(s) that the Map runs in for the changes to take affect.

.Net will cache the Assembly.

July 2nd, 2015 2:56pm

You have restart the Host Instance(s) that the Map runs in for the changes to take affect.

.Net will cache the Assembly.

Free Windows Admin Tool Kit Click here and download it now
July 2nd, 2015 2:56pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics