|
Setup a new server on a win2k Box with MSSQL2k but can't seem to get it functioning.
First install blew with system.io.exception File not found so I had to do a manual config. Stumbled around and finally found the very helpful previous thread about manual instal steps Thankyou Garth.
Anyway currently the client is stating "Unable to Verify this Version is Enabled" at start. I click ok to start anyway.
After the client starts I get "four green lights" after a couple minutes I get that the server is experiencing technical difficulty and thats why I'm not gettting any animals...
anyway the big problem comes when I try to introduce a simple plant. I get an "error loading assembly Terrium is experiencing some difficulty please try again later.
But the real problem comes server side where my eventlog starts to fill up with every 1 to 5 seconds I get the following error from the moment I try to add the plant until I restart the server
Event Type:Error Event Source:Terrarium Webservices Event Category:None Event ID:0 Date:8/14/2004 Time:11:53:02 PM User:N/A Computer:SERVER Description: Error accessing: /Terrarium/Messaging/Messaging.asmx Exception: System.Web.HttpException: Exception of type System.Web.HttpException was thrown. ---> System.IO.DirectoryNotFoundException: Could not find a part of the path "C:\Program Files\Terrarium Server [Beta 1]\Website\Messaging\Messaging.asmx".
etc(see below)
messaging.asmx doesn't seem to exsist and I can not find anyone else complaining about files missing from the install so I am at a bit of a loss. Also when I go to add the plant I get an error logged into the eventklog on the server that just says Suspect: 192:168.0.12(my ip address)
ServerVerification.aspx returns all green except for charting which Fails because I do not have Office2000 installed. Is Office2000 a required prereq for the server or just for the reporting
Thanks in advance
Dave
Complete Source for my plant and the complete error code posted below
*******ERROR Message*******************
Event Type:Error Event Source:Terrarium Webservices Event Category:None Event ID:0 Date:8/14/2004 Time:11:53:02 PM User:N/A Computer:SERVER Description: Error accessing: /Terrarium/Messaging/Messaging.asmx Exception: System.Web.HttpException: Exception of type System.Web.HttpException was thrown. ---> System.IO.DirectoryNotFoundException: Could not find a part of the path "C:\Program Files\Terrarium Server [Beta 1]\Website\Messaging\Messaging.asmx". at System.IO.__Error.WinIOError(Int32 errorCode, String str) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy) at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share) at System.Web.Compilation.SourceCompiler.GetCachedEntry() at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache() at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context) at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath) at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig) --- End of inner exception stack trace --- at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig) at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
***PLANT SOURCE CODE *****
Imports System Imports System.Drawing Imports System.Collections Imports System.IO <Assembly: OrganismBase.OrganismClass("Plants.VBPlant3")> <Assembly: OrganismBase.AuthorInformation("Some NAme", "email@address.com")> Namespace Plants < OrganismBase.MaximumEnergyPoints(10), _ OrganismBase.MatureSize(48), _ OrganismBase.SeedSpreadDistanceAttribute(100), _ OrganismBase.PlantSkin(OrganismBase.PlantSkinFamily.PlantThree) _ > Public Class VBPlant3 Inherits OrganismBase.Plant Public Overrides Sub SerializePlant(ByVal m As MemoryStream) End Sub Public Overrides Sub DeserializePlant(ByVal m As MemoryStream) End Sub End Class End Namespace
|