|
Rank: Member Groups: Member
Joined: 7/12/2007 Posts: 24
|
I am having an issue when trying to run a page using the EO component on a shared server. I am aware of the Deployment issue shown here and copied the eo_web.ashx as suggested but it doesn't seem to work. This URL is with the reference to EO component. This URL is without the reference to EO component. What am I missing ?
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi Corobori,
This appears quite strange because the code that was failing is as follow:
Version v = typeof(EO.Web.Control).Assembly.GetName().Version;
It failed on Assembly.GetName. Thus it appears that we don't even have enough permission to get our own version number. Can you try the same code in your Page_Load and see if it gets through?
Thanks
|
|
Rank: Member Groups: Member
Joined: 7/12/2007 Posts: 24
|
I added this:
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim v As Version = GetType(EO.Web.Control).Assembly.GetName.Version Response.Write(v)
End Sub
Locally it gives me 3.1.11.2 but when loaded it fails again
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
That's the problem. You may need to talk with your hoster to solve this. We can't even see our own DLL's version number and and that is way too strict. They will need to either relax the restriction or put our DLL into GAC.
|
|