Questions tagged [cassini-dev]

The goal of the CassiniDev project is to provide an open platform for developing a robust ASP.Net web server implementation that addresses many of the limitations and difficulties encountered when using Cassini and/or Visual Studio Development Server.

16 questions
3
votes
2 answers

How to do mocks for Web tests?

I want to write a few web tests (over WatiN/Selenium + CassiniDev web server) for my asp.net web application. Problem I encountered is that I dont know what to do in such situations: there is a page where user can click the button to call some…
Pavel Martynov
  • 560
  • 4
  • 17
3
votes
1 answer

Does Cassini DevServer support Integrated Pipeline mode?

This is something I did not manage to find from the internet. We have a web application that uses SignalR that requires Owin that needs IIS Integrated Pipeline mode. When I am running our web application on Cassini Dev Server I get following…
Juho Rutila
  • 1,951
  • 21
  • 32
3
votes
1 answer

CassiniDev embedded in WinForm app?

I am trying to put together a winform app that also has a web interface that can interact with events generated from within the winform portion of the app. I am successfully running the cassinidev server from within the app and asp.net pages are…
user10001110101
  • 301
  • 1
  • 7
  • 20
2
votes
1 answer

SecurityIdentifiers in Cassini-dev's NTLM authentication

In this block of code in Cassini-dev's NTLM authentication class, calls made to SECUR32.DLL (via Interop) are made to authenticate the base64 encoded data in an HTTP request's Authorization headers. This makes sense, when both…
Jon Lin
  • 135,941
  • 26
  • 200
  • 209
1
vote
0 answers

HttpSessionState null using CassiniDev

I am trying to build some unit test using CassiniDev. First of all I create a Server and a Page and generate a request: CassiniDevServer server = new CassiniDevServer(); server.StartServer("C:\\", 8080, "/",…
Raffaeu
  • 5,861
  • 9
  • 58
  • 99
1
vote
0 answers

Selenium Tests With C# Project (With An External Selenium Grid)

So I'm running into an interesting problem trying to get Selenium to work well. Originally I had this setup: CassiniDev starting up as part of my test suite External Selenium grid connecting to the CassiniDev instance for testing the software. The…
StrangeWill
  • 2,078
  • 1
  • 21
  • 35
1
vote
2 answers

stop cassiniDev after stop testing

i run cassiniDev from cmd C:\CruiseControl.NET-1.5.0.6237\cassinidev.3.5.0.5.src-repack\CassiniDev\bin\Debug\CassiniDev.exe /a:D:_CCNET\proj /pm:Specific /p:3811 and then start debugging and testing. How can i stop cassiniDev from CMD after i…
senzacionale
  • 19,380
  • 63
  • 193
  • 304
1
vote
0 answers

CassiniDev Web Server

I've been testing out CassiniDev server for a project I'm working on currently, and I've been so impressed with this! Big well done to the guy(s) who made this! I do seem to have a small problem though, and wondered if anyone else has encountered it…
Developr
  • 437
  • 7
  • 20
1
vote
3 answers

Does Windows Identity Foundation (WIF) Require IIS? (Rather than Development Server)

I need to know if developing a Windows Identity Foundation (WIF) solution requires IIS installed. I would like to be able do develop a WIF solution using the built-in Visual Studio Development Server (I heard it is called Cassini) if possible. All…
Dan7el
  • 1,643
  • 4
  • 22
  • 41
1
vote
1 answer

CassiniDev 64bit Continuous Integration

I recently started using CassiniDev to run my WatiN tests on our CI servers. I when I build and test to our two 32 bit machines I have no problem running my tests. However when I build and test on our 64bit machine, I get the following error: Could…
NOTACAT Studio
  • 197
  • 1
  • 4
  • 16
0
votes
1 answer

How to use CassiniDev.Lib without the timeout?

I am using the CassiniDev.Lib4 DLL and recognized that the server stops responding after a certain amount of time. Looking at the code in CassiniServer.cs I could see that a timeout of 60 seconds is set: _server = new Server(port, virtualPath,…
K B
  • 1,250
  • 1
  • 17
  • 30
0
votes
1 answer

Incorrect windows identity in Cassini-Dev when hosted in Windows Service

I am hosting CassiniDev 4.0 in my windows service running an MVC 3.0 configuration site for my service. I have the web.config setup to use windows authentication. When I look at the HttpContext.User in the web site, it shows the identity that the…
Mekon
  • 89
  • 1
  • 7
0
votes
1 answer

What is going on with this 'localhost' project in visual studio?

I have a visual studio solution and when I opened it I got an error saying: "http://localhost:55365 : error : Unable to open the Web site 'http://localhost/_1'. To access local IIS Web sites, you must install the following IIS components: In…
Exitos
  • 26,972
  • 35
  • 118
  • 168
0
votes
0 answers

VS Dev Server with PayPal

I've got a client. We are trying to get their ecommerce system to go out to an out to paypal to process the credit card orders. I've done this in the past, but it was a few years ago. Their server is an iis server onsite with an ibm midrange…
0
votes
1 answer

Share data between Windows Service and Cassini-dev running in the same process

I have a Windows Service written in C#. I have recently added CassiniDev to it to allow remote web administration and monitoring of the service. The integration went really well except for my inability to interact with data layer of my Windows…
wpfwannabe
  • 13,908
  • 13
  • 70
  • 125
1
2