Quantcast
Channel: West Wind Message Board Messages
Viewing all articles
Browse latest Browse all 10393

Re: Installation Errors

$
0
0
Re: Installation Errors
West Wind Web Toolkit for ASP.NET
Re: Installation Errors
03/13/2012
07:09:41 PM
3GD152IU6 Show this entire thread in new window
Gratar Image based on email address
From:
To:
Attachments:
None
FWIW, SQL Server Compact can also install transparently using NuGet (Package Manager).

https://nuget.org/packages/SqlServerCompact

SQL Compact is just a single DLL that can be shipped with your project. As i mentioned I removed the dependency at this point so it might be just easier to include the updated file or pull the latest version from the Subversion repository.

+++ Rick ---



Thanks Rick

How did you create AlbumEntities.cs?

CT


hmmm... I thought that the SqlServerCE assmbly installs with .NET 4.0.

Anyway there's only one place in the code where this is used (in an exception block). That code can be commented out. I've removed that code and you can update it from the SVN repository, or from here:

http://www.west-wind.com:8080/svn/WestwindWebToolkit/trunk/Westwind.Utilities/Configuration/SqlServerConfigurationProvider.cs

FWIW, the Web Toolkit doesn't use WCF REST. It's a similar implementation but it doesn't use any of the WCF bits.

+++ Rick ---



Yes, I am working in 4.0. I think these are installed with SQL Server Compact Edition (which I don't have).
I am running 2008 R2 - does this mean I will need to download and install SQLServerCE to get the reference?
Version 1.18 compiles fine - I am working with that version for now.

A few comments on some items I have been playing with...

The ScriptVariables is great!
ScriptVariables serverVars = new ScriptVariables(this, "serverVars");
I also cannot believe how easy the AjaxMethodCallback works too - That's my favorite!

I am mainly concentrating on the WCF REST and Entity Framework Code First at the moment.
Rest\Album and StockService are very good examples.
How come there is no link to the Album online anywhere (or am I missing it)?
The Album is a WCF REST that works with EFCodeFirst - perfect example.

I want to create a WCF REST service that accepts an INVPK via "clean" Querystring and run the busInvoice.CalculateShipping() method with the EFCodeFirst business framework. All I need to return is an XML success string.

Thanks for all the help - The WWWToolkit is awesome.
Craig


Do you have .NET 4.0 installed?

The warnings are mostly for missing XML comments in places which is fine.

+++ Rick ---



Hi Rick,
I am trying to install the WWWToolkit for asp.net and am getting a whole slew of errors.

I downloaded a clean new version of the latest zip.
I installed the test data into SQL Server.

Where do I get System.Data.SqlServerCe?
Upon compile I get 12 errors:

///SCT 3/12/12 commented out
using System.Data.SqlServerCe;

///SCT 3/12/12 commented out
// catch (SqlCeException ex)
// {
// if (ex.ErrorCode == -2147467259)
// {
// sql =
//@"CREATE TABLE [" + Tablename + @"] ( [id] [int] , [ConfigData] [ntext] )";
// try
// {
// data.ExecuteNonQuery(sql);
// }
// catch(Exception ex2)
// {
// return null;
// }

// // try again if we were able to create the table
// return Read<T>();
// }

// }

After I comment these out - I get 1063 warnings.

Please help, would like to get a clean compile.
Thanks, Craig










Rick Strahl
West Wind Technologies

Making waves on the Web

from Maui, Hawaii

Viewing all articles
Browse latest Browse all 10393

Trending Articles