...
Info |
---|
These instructions were tested on a clean Windows Server 2012 R2 server |
...
Table of Contents | ||
---|---|---|
|
Artemis On-Premise
Add Server Role
- Add Server Role: Web Server(IIS).
- Under .NET Framework 4.5 Features:
- Add ASP.NET 4.5.
- CF Services: Add Http activation.
- Under Web Server Role (IIS), locate Role Services.
- Add Application Development/ASP.NET 4.5. This automatically adds:
- .NET Extensibility 4.5
- ISAPI Extensions
- ISAPI Filters
- Install DotNetCore Windows server Hosting.
- From Command Prompt, execute net stop was /y followed by net start w3svc.
- Remove Default Web Site in IIS Manager.
- Create a folder called c:\Artemis.
- Create a folder called c:\Artemis\logs.
...
- In IIS Manager create a new website.
Site name: Vendnovation
Physical Path: c:\Vendnovation
Hostname: blank - Edit the new Vendnovation App Pool.
- Ensure .NET CLR version is set to v4.0.
- Extract contents of Vendnovation.zip to c:\Vendnovation.
- Paste Vendnovation.zip onto desktop.
Right-click Extract All.
Info Files will be extracted to the folder c:\Artemis.
- Click Extract.
- Edit c:\Vendnovation\web.config (with notepad)
- Under the <appSettings> element, set ArtemisUserName to the external user created in Artemis. e.g. “hometown_vendnovation”.
- Set ArtemisPassword to the corresponding password.
Set ArtemisURL to the URL you will be using to get from Vendnovation service to Artemis.
Note If you are on the same server, it will be something similar to http://localhost/api/Vending/ depending on how you are handling the binding.
Set LogFilename to c:\Vendnovation\logs\log-{Date}.txt.
Note Unlike Artemis, this is XML and not JSON; therefore, there are no escaped backslashes in the path.
Change LogFilename to c:\\artemis\\logs\\log-{Date}.txt.
- Set IncludeExceptionDetailInFaults to False True.
- Set directoryBrowse enabled to False.
- Save web.config.
- Start the Vendnovation website.
...