Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Install Gemini trial version with IIS Express

install
web-app

Can the trial version of Gemini be installed with IIS Express instead of IIS?

danb
· 1
danb
Replies (5)
helpful
0
not helpful

Yes, Gemini is .NET 3.5 SP1 web application that can run on any IIS version that supports asp.net including express.


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

When I run the installer, countersoftgeminiv373.exe, it stops with this error:

"This product requires at least Internet Information Server 4"


danb
· 1
danb
helpful
0
not helpful

You will need to install using the zip manual installer.


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Harvey Kandola
· 212
Harvey Kandola
helpful
0
not helpful

Thanks for the tip.

To get IIS Express to crete the virtual directory I configured the applicationHost.config file like so:

<site name="Gemini" id="1" serverAutoStart="false">
  <application path="/" applicationPool="Clr2IntegratedAppPool">
    <virtualDirectory path="/" physicalPath="C:\Gemini\countersoft_gemini_v4_0_0" />
  </application>            
  <application path="/gemini">
    <virtualDirectory path="/" physicalPath="C:\Gemini\countersoft_gemini_v4_0_0\Gemini Web Application" />
  </application>
  <bindings>
    <binding protocol="http" bindingInformation=":80:localhost" />
  </bindings>
</site> 

danb
· 1
danb