Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 10 of 27 total
Thread ElevateDB Trial
Tue, Jul 15 2008 6:49 AMPermanent Link

theOX
Hi,

I have managed to sucessfully set up a database running off a remote server, and can
access my data using the manager, however I cannot seem to get the ElevateDB driver to
connect using the .net data provider, when using VS2005.
This is on Windows XP SP2, using ElevateDB server v2.01 (Build 1) trial version.

I add a new connection from within the solution explorer using a new Database.
I then choose 'New Connection'  and change my Data source to 'ElevateDB Database', which
is available in the list.

Once I click OK the only option I have is to enter a connection string in the MISC ->
ConnectionString field.
I enter for example
'TYPE=REMOTE;ADDRESS=127.0.0.1;DATABASE=MyDatabase;'

Clicking on "Test connection" returns "The connection succeded."
but when I click OK I get the following error

"Failed to find or load the registered .Net Framework Data Provider"

I'm not sure where to go from here - any help would certainly be appreciated.
Greg
Tue, Jul 15 2008 12:44 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Greg,

<< Once I click OK the only option I have is to enter a connection string in
the MISC ->ConnectionString field.
> I enter for example 'TYPE=REMOTE;ADDRESS=127.0.0.1;DATABASE=MyDatabase;'
>  >>

That's an indication that the Visual Studio DDEX assembly
(elevate.elevatedb.visualstudio.dll) is not being loaded properly.  Can you
tell me what is present in your machine.config file here:

C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG

for this section:

<runtime>
   <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

   </assemblyBinding>
</runtime>

There should be two entries present - one for the elevate.elevatedb.data.dll
assembly and one for the elevate.elevatedb.visualstudio.dll assembly.

--
Tim Young
Elevate Software
www.elevatesoft.com

Wed, Jul 16 2008 11:23 AMPermanent Link

theOX
Tim,
The entry shows the following information...

<runtime>
      <assemblyBinding>
         
         <dependentAssembly>
            <assemblyIdentity name="Elevate.ElevateDB.VisualStudio"
publicKeyToken="009e2f3c00f33fa3"/>
            <codeBase version="2.1.1.0" href="file:///C:\Program Files\ElevateDB DAC Trial\Version
2\assemblies\edbprovidervs\Elevate.ElevateDB.VisualStudio.dll"/>
         </dependentAssembly>
         <dependentAssembly>
            <assemblyIdentity name="Elevate.ElevateDB.Data" publicKeyToken="cf9bc1202c75e9e2"/>
            <codeBase version="2.1.1.0" href="file:///C:\Program Files\ElevateDB DAC Trial\Version
2\assemblies\edbproviderwm\Elevate.ElevateDB.Data.dll"/>
         </dependentAssembly>
      </assemblyBinding>
   </runtime>

Thanks for looking at this,
Greg
Wed, Jul 16 2008 11:44 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Greg,

<< The entry shows the following information... >>

Okay, there's the problem. I'll have to double-check, but it looks like the
inclusion of the CF support might have broken the assembly installation.
What you want to do is change the second binding to be this instead:

<assemblyIdentity name="Elevate.ElevateDB.Data"
publicKeyToken="cf9bc1202c75e9e2"/>
<codeBase version="2.1.1.0" href="file:///C:\Program Files\ElevateDB DAC
Trial\Version
2\assemblies\edbprovider\Elevate.ElevateDB.Data.dll"/>

That should fix it.  It was referring to the CF assembly instead of the
proper desktop .NET assembly.

--
Tim Young
Elevate Software
www.elevatesoft.com

Thu, Jul 17 2008 3:24 AMPermanent Link

theOX
Tim,
I made the change to the machine.config file as suggested, but the result was exactly the
same.

I also tried installing the elevateDB trial on a collegues PC, and he has exactly the same
result.

Regards,
Greg
Thu, Jul 17 2008 8:47 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Greg,

<< I made the change to the machine.config file as suggested, but the result
was exactly the same.

I also tried installing the elevateDB trial on a collegues PC, and he has
exactly the same result. >>

Sorry it took so long to get back to you on this.

I just tried the EDB 2.01 installation again on a fresh machine, and it
works fine if the machine.config is modified so that the "wm" is removed
from the end of the directory name for the assembly.

Could you possibly email me your machine.config file ?
(timyoung@elevatesoft.com)

I want to make sure that I find out the actual source of this problem before
2.01 Build 1 is released.

--
Tim Young
Elevate Software
www.elevatesoft.com

Fri, Jul 18 2008 2:47 AMPermanent Link

theOX
Tim,
File sent as per your request,

Greg
Fri, Jul 18 2008 2:56 AMPermanent Link

theOX
Tim,
Your e-mails keep getting bounced by messagelabs.
I will insert the contents of the file to this post, and also try to create an attachment
to the post,

Thanks,
Greg

<?xml version="1.0" encoding="UTF-8"?>
<!--
   Please refer to machine.config.comments for a description and
   the default values of each configuration section.

   For a full documentation of the schema please refer to
   http://go.microsoft.com/fwlink/?LinkId=42127

   To improve performance, machine.config should contain only those
   settings that differ from their defaults.
-->
<configuration>
   <configSections>
      <section name="appSettings" type="System.Configuration.AppSettingsSection,
System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
restartOnExternalChanges="false" requirePermission="false"/>
      <section name="connectionStrings" type="System.Configuration.ConnectionStringsSection,
System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
requirePermission="false"/>
      <section name="mscorlib" type="System.Configuration.IgnoreSection, System.Configuration,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false"/>
      <section name="runtime" type="System.Configuration.IgnoreSection, System.Configuration,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false"/>
      <section name="assemblyBinding" type="System.Configuration.IgnoreSection,
System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowLocation="false"/>
      <section name="satelliteassemblies" type="System.Configuration.IgnoreSection,
System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowLocation="false"/>
      <section name="startup" type="System.Configuration.IgnoreSection, System.Configuration,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false"/>
      <section name="system.codedom"
type="System.CodeDom.Compiler.CodeDomConfigurationHandler, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      <section name="system.data"
type="System.Data.Common.DbProviderFactoriesConfigurationHandler, System.Data,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      <section name="system.data.dataset"
type="System.Configuration.NameValueFileSectionHandler, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089" restartOnExternalChanges="false"/>
      <section name="system.data.odbc"
type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      <section name="system.data.oledb"
type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      <section name="system.data.oracleclient"
type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      <section name="system.data.sqlclient"
type="System.Data.Common.DbProviderConfigurationHandler, System.Data, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      <section name="system.diagnostics" type="System.Diagnostics.SystemDiagnosticsSection,
System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      <section name="system.runtime.remoting" type="System.Configuration.IgnoreSection,
System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowLocation="false"/>
      <section name="system.windows.forms" type="System.Windows.Forms.WindowsFormsSection,
System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      <section name="windows" type="System.Configuration.IgnoreSection, System.Configuration,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowLocation="false"/>
      <sectionGroup name="system.xml.serialization"
type="System.Xml.Serialization.Configuration.SerializationSectionGroup, System.Xml,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
         <section name="schemaImporterExtensions"
type="System.Xml.Serialization.Configuration.SchemaImporterExtensionsSection, System.Xml,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="dateTimeSerialization"
type="System.Xml.Serialization.Configuration.DateTimeSerializationSection, System.Xml,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="xmlSerializer"
type="System.Xml.Serialization.Configuration.XmlSerializerSection, System.Xml,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
      </sectionGroup>
      <sectionGroup name="system.net" type="System.Net.Configuration.NetSectionGroup, System,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
         <section name="authenticationModules"
type="System.Net.Configuration.AuthenticationModulesSection, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="connectionManagement"
type="System.Net.Configuration.ConnectionManagementSection, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="defaultProxy" type="System.Net.Configuration.DefaultProxySection,
System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <sectionGroup name="mailSettings"
type="System.Net.Configuration.MailSettingsSectionGroup, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089">
            <section name="smtp" type="System.Net.Configuration.SmtpSection, System,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         </sectionGroup>
         <section name="requestCaching" type="System.Net.Configuration.RequestCachingSection,
System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="settings" type="System.Net.Configuration.SettingsSection, System,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="webRequestModules"
type="System.Net.Configuration.WebRequestModulesSection, System, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      </sectionGroup>
      <sectionGroup name="system.transactions"
type="System.Transactions.Configuration.TransactionsSectionGroup, System.Transactions,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null">
         <section name="defaultSettings"
type="System.Transactions.Configuration.DefaultSettingsSection, System.Transactions,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null"/>
         <section name="machineSettings"
type="System.Transactions.Configuration.MachineSettingsSection, System.Transactions,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, Custom=null"
allowDefinition="MachineOnly" allowExeDefinition="MachineOnly"/>
      </sectionGroup>
      <sectionGroup name="system.web" type="System.Web.Configuration.SystemWebSectionGroup,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
         <section name="anonymousIdentification"
type="System.Web.Configuration.AnonymousIdentificationSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="authentication" type="System.Web.Configuration.AuthenticationSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="authorization" type="System.Web.Configuration.AuthorizationSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="browserCaps"
type="System.Web.Configuration.HttpCapabilitiesSectionHandler, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="clientTarget" type="System.Web.Configuration.ClientTargetSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="compilation" type="System.Web.Configuration.CompilationSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="customErrors" type="System.Web.Configuration.CustomErrorsSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="deployment" type="System.Web.Configuration.DeploymentSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineOnly"/>
         <section name="deviceFilters" type="System.Web.Mobile.DeviceFiltersSection,
System.Web.Mobile, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="globalization" type="System.Web.Configuration.GlobalizationSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="healthMonitoring"
type="System.Web.Configuration.HealthMonitoringSection, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication"/>
         <section name="hostingEnvironment"
type="System.Web.Configuration.HostingEnvironmentSection, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication"/>
         <section name="httpCookies" type="System.Web.Configuration.HttpCookiesSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="httpHandlers" type="System.Web.Configuration.HttpHandlersSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="httpModules" type="System.Web.Configuration.HttpModulesSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="httpRuntime" type="System.Web.Configuration.HttpRuntimeSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="identity" type="System.Web.Configuration.IdentitySection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="machineKey" type="System.Web.Configuration.MachineKeySection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="membership" type="System.Web.Configuration.MembershipSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="mobileControls"
type="System.Web.UI.MobileControls.MobileControlsSection, System.Web.Mobile,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="pages" type="System.Web.Configuration.PagesSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="processModel" type="System.Web.Configuration.ProcessModelSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineOnly" allowLocation="false"/>
         <section name="profile" type="System.Web.Configuration.ProfileSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="roleManager" type="System.Web.Configuration.RoleManagerSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="securityPolicy" type="System.Web.Configuration.SecurityPolicySection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="sessionPageState"
type="System.Web.Configuration.SessionPageStateSection, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="sessionState" type="System.Web.Configuration.SessionStateSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="siteMap" type="System.Web.Configuration.SiteMapSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="trace" type="System.Web.Configuration.TraceSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="trust" type="System.Web.Configuration.TrustSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="urlMappings" type="System.Web.Configuration.UrlMappingsSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
         <section name="webControls" type="System.Web.Configuration.WebControlsSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="webParts" type="System.Web.Configuration.WebPartsSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="webServices" type="System.Web.Services.Configuration.WebServicesSection,
System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <section name="xhtmlConformance"
type="System.Web.Configuration.XhtmlConformanceSection, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         <sectionGroup name="caching"
type="System.Web.Configuration.SystemWebCachingSectionGroup, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
            <section name="cache" type="System.Web.Configuration.CacheSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
            <section name="outputCache" type="System.Web.Configuration.OutputCacheSection,
System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToApplication"/>
            <section name="outputCacheSettings"
type="System.Web.Configuration.OutputCacheSettingsSection, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication"/>
            <section name="sqlCacheDependency"
type="System.Web.Configuration.SqlCacheDependencySection, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" allowDefinition="MachineToApplication"/>
         </sectionGroup>
         <section name="protocols" type="System.Web.Configuration.ProtocolsSection, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
allowDefinition="MachineToWebRoot"/>
      </sectionGroup>
      <section name="system.webServer" type="System.Configuration.IgnoreSection,
System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
      <sectionGroup name="system.runtime.serialization"
type="System.Runtime.Serialization.Configuration.SerializationSectionGroup,
System.Runtime.Serialization, Version=3.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089">
         <section name="dataContractSerializer"
type="System.Runtime.Serialization.Configuration.DataContractSerializerSection,
System.Runtime.Serialization, Version=3.0.0.0, Culture=neutral,
PublicKeyToken=b77a5c561934e089"/>
      </sectionGroup>
      <sectionGroup name="system.serviceModel"
type="System.ServiceModel.Configuration.ServiceModelSectionGroup, System.ServiceModel,
Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
         <section name="behaviors" type="System.ServiceModel.Configuration.BehaviorsSection,
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="bindings" type="System.ServiceModel.Configuration.BindingsSection,
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="client" type="System.ServiceModel.Configuration.ClientSection,
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="comContracts"
type="System.ServiceModel.Configuration.ComContractsSection, System.ServiceModel,
Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="commonBehaviors"
type="System.ServiceModel.Configuration.CommonBehaviorsSection, System.ServiceModel,
Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
allowDefinition="MachineOnly" allowExeDefinition="MachineOnly"/>
         <section name="diagnostics" type="System.ServiceModel.Configuration.DiagnosticSection,
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="extensions" type="System.ServiceModel.Configuration.ExtensionsSection,
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="machineSettings"
type="System.ServiceModel.Configuration.MachineSettingsSection, SMDiagnostics,
Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
allowDefinition="MachineOnly" allowExeDefinition="MachineOnly"/>
         <section name="serviceHostingEnvironment"
type="System.ServiceModel.Configuration.ServiceHostingEnvironmentSection,
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="services" type="System.ServiceModel.Configuration.ServicesSection,
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      </sectionGroup>
      <sectionGroup name="system.serviceModel.activation"
type="System.ServiceModel.Activation.Configuration.ServiceModelActivationSectionGroup,
System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
         <section name="diagnostics"
type="System.ServiceModel.Activation.Configuration.DiagnosticSection, System.ServiceModel,
Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="net.pipe"
type="System.ServiceModel.Activation.Configuration.NetPipeSection, System.ServiceModel,
Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <section name="net.tcp"
type="System.ServiceModel.Activation.Configuration.NetTcpSection, System.ServiceModel,
Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      </sectionGroup>
   </configSections>
   <configProtectedData defaultProvider="RsaProtectedConfigurationProvider">
      <providers>
         <add name="RsaProtectedConfigurationProvider"
type="System.Configuration.RsaProtectedConfigurationProvider,System.Configuration,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" description="Uses
RsaCryptoServiceProvider to encrypt and decrypt"
keyContainerName="NetFrameworkConfigurationKey" cspProviderName=""
useMachineContainer="true" useOAEP="false"/>
         <add name="DataProtectionConfigurationProvider"
type="System.Configuration.DpapiProtectedConfigurationProvider,System.Configuration,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" description="Uses
CryptProtectData and CryptUnProtectData Windows APIs to encrypt and decrypt"
useMachineProtection="true" keyEntropy=""/>
      </providers>
   </configProtectedData>
   <runtime>
      <assemblyBinding>
         
         <dependentAssembly>
            <assemblyIdentity name="Elevate.ElevateDB.VisualStudio"
publicKeyToken="009e2f3c00f33fa3"/>
            <codeBase version="2.1.1.0" href="file:///C:\Program Files\ElevateDB DAC Trial\Version
2\assemblies\edbprovidervs\Elevate.ElevateDB.VisualStudio.dll"/>
         </dependentAssembly>
         <dependentAssembly>
            <assemblyIdentity name="Elevate.ElevateDB.Data" publicKeyToken="cf9bc1202c75e9e2"/>
            <codeBase version="2.1.1.0" href="file:///C:\Program Files\ElevateDB DAC Trial\Version
2\assemblies\edbprovider\Elevate.ElevateDB.Data.dll"/>
         </dependentAssembly>
      </assemblyBinding>
   </runtime>
   <connectionStrings>
      <add name="LocalSqlServer" connectionString="data source=.\SQLEXPRESS;Integrated
Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
providerName="System.Data.SqlClient"/>
   </connectionStrings>
   <system.data>
      <DbProviderFactories>
         <add name="Odbc Data Provider" invariant="System.Data.Odbc" description=".Net Framework
Data Provider for Odbc" type="System.Data.Odbc.OdbcFactory, System.Data, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <add name="OleDb Data Provider" invariant="System.Data.OleDb" description=".Net
Framework Data Provider for OleDb" type="System.Data.OleDb.OleDbFactory, System.Data,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <add name="OracleClient Data Provider" invariant="System.Data.OracleClient"
description=".Net Framework Data Provider for Oracle"
type="System.Data.OracleClient.OracleClientFactory, System.Data.OracleClient,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <add name="SqlClient Data Provider" invariant="System.Data.SqlClient" description=".Net
Framework Data Provider for SqlServer" type="System.Data.SqlClient.SqlClientFactory,
System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
         <add name="SQL Server CE Data Provider" invariant="Microsoft.SqlServerCe.Client"
description=".NET Framework Data Provider for Microsoft SQL Server 2005 Mobile Edition"
type="Microsoft.SqlServerCe.Client.SqlCeClientFactory, Microsoft.SqlServerCe.Client,
Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/>
         <add name="ElevateDB Data Provider" invariant="Elevate.ElevateDB.Data"
description="ElevateDB 2 .Net 2.0 Data Provider"
type="Elevate.ElevateDB.Data.EDBProviderFactory, Elevate.ElevateDB.Data, Version=2.1.1.0,
Culture=neutral, PublicKeyToken=cf9bc1202c75e9e2"/>
      </DbProviderFactories>
   </system.data>
   <system.web>
      <processModel autoConfig="true"/>
      <httpHandlers/>
      <membership>
         <providers>
            <add name="AspNetSqlMembershipProvider"
type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer"
enablePasswordRetrieval="false" enablePasswordReset="true"
requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false"
passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7"
minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10"
passwordStrengthRegularExpression=""/>
         </providers>
      </membership>
      <profile>
         <providers>
            <add name="AspNetSqlProfileProvider" connectionStringName="LocalSqlServer"
applicationName="/" type="System.Web.Profile.SqlProfileProvider, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         </providers>
      </profile>
      <roleManager>
         <providers>
            <add name="AspNetSqlRoleProvider" connectionStringName="LocalSqlServer"
applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web,
Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
            <add name="AspNetWindowsTokenRoleProvider" applicationName="/"
type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
         </providers>
      </roleManager>
   </system.web>
</configuration>



Attachments: machine.config
Fri, Jul 18 2008 12:40 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Greg,

<< Your e-mails keep getting bounced by messagelabs. >>

It's our attachment blocking - we only accept attachments from whitelisted
email addresses.  Sorry about that, I should have whitelisted your email
address before I asked for the attachment.  I've done so now, so any further
emails will go through fine.

<< I will insert the contents of the file to this post, and also try to
create an attachment to the post, >>

Thanks.  Everything seems to be in order with the machine.config file.   The
last thing I need to verify is your registry settings for the Visual Studio
plug-in assembly.  Could you email me a .reg for these keys ?:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\DataProviders
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\DataSources

Thanks again,

--
Tim Young
Elevate Software
www.elevatesoft.com

Mon, Jul 21 2008 3:52 PMPermanent Link

theOX
Tim,
Sorry for the delay in this but I have been out of the office.

I have sent the keys as requested.

Greg
Page 1 of 3Next Page »
Jump to Page:  1 2 3
Image