DbNetcopy. Cross vendor data copy utility and API  

Installation problems

Server Application Unavailable
I am getting the following error:

Server Application Unavailable

aspnet_wp.exe could not be started. The error code for the failure is
80004005. This error can be caused when the worker process account has
insufficient rights to read the .NET Framework files. Please ensure
that the .NET Framework is correctly installed and that the ACLs on the
installation directory allow access to the configured account.
Show Answer
See the following MS KB article:

http://support.microsoft.com/default.aspx?scid=kb;EN-US;811320

Hide Answer


The Root element is missing
When I run the component I get the error message

"The Root element is missing"
Show Answer
This is caused by component virtual folder inheriting a "cookieless" property set to "true" in the "sessionState" node in the web.config file.

To fix the problem you will need to add the following line to the web.config file in the DbNetGrid installation folder.

  <system.web>
...
   <sessionState cookieless="false"/>
   ...
</system.web>

Hide Answer


Installing DbNetSuite on a shared server
How do I go about installing DbNetSuite on a shared server?
Show Answer
Download the DbNetSuite zip archive and upload it to your shared server. Extract the zip archive into a new folder and then create the following seven virtual folders in IIS, making each one an application;

(1) 'dbnetsuite' maps onto the installation folder
(2) 'dbnetgrid' maps onto the DbNetGrid subfolder of the installation folder
(3) 'dbnetedit' maps onto the DbNetEdit subfolder of the installation folder
(4) 'dbnetfile' maps onto the DbNetFile subfolder of the installation folder
(5) 'dbnetcombo' maps onto the DbNetCombo subfolder of the installation folder
(6) 'dbnetlist' maps onto the DbNetList subfolder of the installation folder
(v7) 'dbnetspell' maps onto the DbNetSpell subfolder of the installation folder

Hide Answer


Displaying files from another different server
How can I display files that exist on a different server.
Show Answer
You need to create a virtual folder in IIS that maps a UNC path that points to the folder on the remote server the format of the path is "\\server\share\\folder".

http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/cd02642c-8389-4563-9cd2-bae8a516c722.mspx?mfr=true

You may also need to add authentication to the DbNetFile virtual folder so that users credentials are applied when attempting to access the folder in DbNetFile

Hide Answer


The XML page cannot be displayed
I'm getting the following error:

The XML page cannot be displayed
Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.


--------------------------------------------------------------------------------

A name was started with an invalid character. Error processing resource 'http://hp_laptop/dbnetsuite/menu.aspx'. Line 1, P...

<%@ Page language="C#" Inherits="DbNetLink.Web.SuiteMenu"%>
-^
Show Answer
This error indicates that ASP.NET is either not installed or has not been registered with IIS.



If you believe ASP.NET is installed then try running



"C:\WINDOWS\Microsoft.NET\Framework\{version}\aspnet_regiis.exe"

Hide Answer


The page cannot be displayed (HTTP 405)
Why am I getting a "HTTP 405 Error" message ?

Show Answer
If you are running Windows 2003 server then ASP.NET may not be installed. To install ASP.NET

1) Go to Control Panel --> Add/Remove Programs --> Windows Components

2) Select "Application Server"

3) Click on the "Details" button

4) Make sure that "ASP.NET" is checked


If you are running Windows 2000 or XP this error can occur if you installed IIS after you installed the .Net Framework

If this is the case then you may need to register manually the dll aspnet_isapi.dll found in the .Net install folder. To do so, follow these steps:

1) Click Start, and then click Run.

2) Type regsvr32 %windir%\Microsoft.NET\Framework\<version>\aspnet_isapi.dll, and then click OK.


If you are running the classic ASP version of DbNetGrid then try this link:

http://www.aspfaq.com/show.asp?id=2253

Hide Answer


Compiler Error Message: CS1595: 'object' is defined in multiple places;
Why do get this error message:

Compiler Error Message: CS1595: 'object' is defined in multiple places;
using definition from
'C:\winnt\microsoft.net\framework\v1.0.3705\mscorlib.dll'
Show Answer
This is caused by the fact that the ASPNET account does not have permission to access the folders in the path to the mscorlib.dll assembly.

You will need to grant the necessary permissions to the ASPNET account. For more information see:


http://support.microsoft.com/default.aspx?scid=kb;en-us;Q318274

Hide Answer