| 
	Group: StrataFrame UsersPosts: 81, 
    Visits: 270
 
 | 
                    
			            Unfortunately it didnt work.
 
 
 Here is my code:
 
 
 
 //-- Create the data source
 
 EnterpriseDataSourceItem ds = new EnterpriseDataSourceItem("",
 
 "192.168.1.147", 80, "MyDataSourceKey",
 
 new SqlDataSourceItem("MyDataSourceKey"));
 
 
 
 //-- Configure the compression and encryption (optional)
 
 ds.IsCompressed = true;
 
 ds.IsEncrypted = true;
 
 ds.EncryptionKey = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4 };
 
 ds.EncryptionVector = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8 };
 
 
 
 //-- Add the EnterpriseDataSourceItem
 
 DataLayer.DataSources.Add(ds);
 
 
 
 The IP address of the server is 192.168.1.147.
 
 
 
 Could youo please help?
 
 |