Group: StrataFrame Users
Posts: 939,
Visits: 40K
|
I am trying to get ES up and runing under the developer SDK license, we have two projects that I think are a great fit for ES. The error I get (via email from the ES server) when trying to connect is below. The hostname listed in the account section matches the name in my EnterpriseDataSourceItem so I am not sure what is next. Can you see if there is a licensing problem? I downloaded the license file twice and installed it. Status.ASPX works and shows the client connected. One odd thing is the status page shows the server hostname as "Unknown", maybe that is the problem but I sure dont know how to fix. Thoughts appreciated.Enterprise Server Error | Message: | This server is not licensed to run on the requested hostname. | Client IP: | 71.230.148.15 | Details: | Exception This server is not licensed to run on the requested hostname.
Source : MicroFour StrataFrame Enterprise Server
Stack Trace: at MicroFour.StrataFrame.Enterprise.Server.RemoteDataSource.ᜀ(String A_0) at MicroFour.StrataFrame.Enterprise.Server.RemoteDataSource.ProcessRequest(HttpContext context) |
| If System.IO.File.Exists("C:\EnableES.txt") Then'-- Create the ES data sourceDim ds As New EnterpriseDataSourceItem("", _"es.sigmaxxxx.com", 80, "ILA", _New SqlDataSourceItem(""))'-- Configure the compression and encryption (optional) ds.IsCompressed = Trueds.IsEncrypted = Trueds.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}'simple error display for testingTry'-- Add the EnterpriseDataSourceItemDataLayer.DataSources.Add(ds) Catch ex As ExceptionMsgBox(ex.ToString) End TryElse
Keith Chisarik
|
Group: StrataFrame Users
Posts: 364,
Visits: 771
|
Yep, it should show you the hostname. I just looked at the code and it is just pulling the hostname directly from the license file, so the problem looks to be with accessing that file. Either it can't find it, can't access it, or doesn't recognize it. A couple thoughts: You'll need the most recent license base for it to interpret that license file correctly, and you'll need the most recent ESSiteContents for everything to be plumbed correctly. Have you gotten the latest beta build from here and the site contents (they were updated in June) from here? Past that, my guess would be that it just flat out can't find or access the license file, so I'd check your file permissions on that file to ensure that the IIS user has access to it.
|