Biztalkserver Mapping: Dynamic Connection String

Hi All,

Please tell me the easy way to get the connection string dynamically in biztalk mapping from two databases but from same server.

e.g: SourceField   DestinationField    DatabaseUsedForDBLookupFunctoid

AB                               X1                          DB1

CD                               X2                          DB2

 

 

Urgent Please..........

 



October 6th, 2011 7:22am

I assume there will be two database lookup functoids in your map for the two fields AB and CD that you are mapping, if so you don't need any dynamic connection string. You can easily put two seperate connections strings in two functoids . Hope I understood your requirement correctly.
Free Windows Admin Tool Kit Click here and download it now
October 6th, 2011 8:52am

Thanks for the reply.

Yes there will be two DB look up functoids. But I dont want to Hard code it. I want to get the connection string dynamically.

So please tell me the easiest possible way to get the Connection string dynamically.

 

 

 

 

October 6th, 2011 9:07am

You can use a C# library and use a scripting functoid to get the info or you can use a SQL UDL from a file location but the latter is an overhead. So the best way would be to get the configurable property from C# library in a scripting functoid and use that to create the connection string .
Free Windows Admin Tool Kit Click here and download it now
October 6th, 2011 10:06am

I did it and I have editted in BTS config file. But connection string is getting only for one DB only. Could you please send me the brief code if possible.

 

Thanks in advace

October 6th, 2011 10:46am

so if one works just replicate that and put another key in config file for the second connection string. You will have to create another scripting functoid and use the same C# library component's different method.

You can use this code snippet to get the biztalk config file value.

System.Configuration.ConfigurationSettings.AppSettings.Get("Key");

Free Windows Admin Tool Kit Click here and download it now
October 6th, 2011 10:50am

Exactly I have the same scenario, In database lookup functoid, I am taking 2nd parameter as scripting functoid as Inline c#

public string GetConnectionString()
   {
               string connString=System.Configuration.ConfigurationSettings.AppSettings.Get("CONNSTR").ToString();
               return connString;
    }

and then in BTSNTSvc64.exe.config file when I am adding this to Configuration :

<appsettings>
    <add key="CONNSTR" value="Provider=SQLOLEDB.1;Server=12121KP035;Database=TestDatabase;Integrated Security=SSPI"/>
  </appsettings>

all my service instance are getting blown away ? what am I doing wrong ?

May 3rd, 2015 4:50pm

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

Other recent topics Other recent topics