SlideShare una empresa de Scribd logo
1 de 5
Descargar para leer sin conexión
HOW TO CREATE AN IDENTIFEYE AR GAME – TECH SPECS
For students in age group: 8-14
2013-1-GR1-LEO05-13907
Preparations for the copying of the game
Preparations on PC/Laptops (for Windows):
 Create an Azure account http://azure.microsoft.com/ or get access to an existing account
 Download and install Visual Studio (2013 – http://www.dobreprogramy.pl/Visual-Studio-Ultimate,Program,Windows,12106.html; or 2015 -
https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx ). Attention! Depending on the software version you can be
asked to install additional software.
 Download and install Silverlight 4 SDK http://www.microsoft.com/en-us/download/details.aspx?id=7335
 Download and install NuGet http://www.nuget.org/
 Download and install Notepad++ https://notepad-plus-plus.org/download/
 Download and install Silverlight 5: http://www.microsoft.com/silverlight/
 Download and install an FTP client like: Total Commander http://www.ghisler.com/download.htm or FileZilla https://filezilla-
project.org/download.php?type=client
Online preparations (for an empty game, without any data like: questions, augmentations, texts):
 Go to http://manage.windowsazure.com/
 Log in with your Azure credentials
 Click (on the bottom of the screen): NEW -> COMPUTE -> WEB APP -> QUICK CREATE
 Choose a URL, for instance: test-ezzev.azurewebsites.net
 Choose an app service plan
 Click CREATE WEB APP
 In a few moments your web app will be created
 Go to WEB SITES (by choosing in the toolbar on the left)
 Select your web app, i.e: test-ezzev
 Go to DASHBOARD
 Click on DOWNLOAD THE PUBLISH PROFILE
 Save the profile on your disk, please remember where you saved it.
 Click (on the bottom of the screen): NEW -> DATA SERVICES -> SQL DATABASE -> CUSTOM CREATE
 Choose the name of the database, i.e.: TEST
 Choose a subscription (your subscription will be chosen by default), choose the BASIC service tier, choose your server and click COMPLETE
 In few moments your database will be created
Online preparations (for a copy of an existing game, with all data like: questions, augmentations, texts):
 Go to http://manage.windowsazure.com/
 Log in with your Azure credentials
 Click (on the bottom of the screen): NEW -> COMPUTE -> WEB APP -> QUICK CREATE
 Choose a URL, for instance: test2-ezzev.azurewebsites.net
 Choose an app service plan
 Click CREATE WEB APP
 In a few moments your web app will be created
 Go to WEB SITES (by choosing in toolbar on the left)
 Select your web app, i.e: test-ezzev
 Go to DASHBOARD
 Click on DOWNLOAD THE PUBLISH PROFILE
 Save the profile on your disk, please remember where you saved it.
 Go to SQL DATABASES (by choosing in toolbar on the left)
 Chose an existing database with the game, i.e. ID-EYE
 Click COPY (on the bottom of the screen)
 Choose the name for the copy of the database, i.e. TEST2
 Choose a server and click COMPLETE
 In few moments your database will be created
Copying of the game via FTP:
 Go to http://manage.windowsazure.com/
 Go to WEB SITES (by choosing in toolbar on the left)
 Select your web app with the existing game, i.e. IDENTIFEYE
 Go to DASHBOARD
 Click on DOWNLOAD THE PUBLISH PROFILE
 Save the profile on your disk, please remember where you saved it.
 Open the profile via regular notepad or Notepad++
 Look in the file for <publishProfile> for FTP (i.e. <publishProfile profileName="adt-ezzev - FTP">) and copy to a different document:
 publishUrl (i.e.: ftp://waws-prod-am2-031.ftp.azurewebsites.windows.net/site/wwwroot )
 userName (i.e.: adt-ezzev$adt-ezzev)
 userPWD (i.e.: tixHYirlZwBLXBclupBD6SLHKRXwTozw9pPjmEAoaRnLRN3lji1mifwpprG4)
 Open your ftp client
 Create a new connection using the url without "ftp://" and "/site/wwwroot) so only waws-prod-am2-031.ftp.azurewebsites.windows.net and
provide your user name and password
 After you are logged in, copy all folders and data to your hard drive.
 After you are done, close the connection.
 Open the folder with downloaded files, go to: sitewwwroot and open the WEB.CONFIG file with the Notepad++
 Go to the section <connectionStrings> and find the line starting with "<add name", i.e. <add name="IDentifEYE" connectionString="Data
Source=tcp:lpqaf9z5zy.database.windows.net,1433;Initial Catalog=IDENTIFEYE;User ID=identifeye@lpqaf9z5zy;Password=!d3nt1f3y3"
providerName="System.Data.SqlClient" />
 Change the Initial Catalog name to the name of your database, i.e. TEST. So the string should look like <add name="IDentifEYE"
connectionString="Data Source=tcp:lpqaf9z5zy.database.windows.net,1433;Initial Catalog=TEST;User
ID=identifeye@lpqaf9z5zy;Password=!d3nt1f3y3" providerName="System.Data.SqlClient" />
 Save the changes
 Now go back to http://manage.windowsazure.com/
 Go to WEB SITES (by choosing in toolbar on the left)
 Select your web app created for the copy of the game,i.e. test-ezzev
 Go to DASHBOARD
 Click on DOWNLOAD THE PUBLISH PROFILE
 Save the profile on your disk, please remember where you saved it.
 Open the profile via regular notepad or Notepad++
 Look in the file for and copy to a different document strings of characters for:
 publishUrl (i.e.: ftp://waws-prod-am2-031.ftp.azurewebsites.windows.net/site/wwwroot ) (Attention. It should be the same as used
before)
 userName (i.e.: adt-ezzev$adt-ezzev)
 userPWD (i.e.: tixHYirlZwBLXBclupBD6SLHKRXwTozw9pPjmEAoaRnLRN3lji1mifwpprG4)
 Open your ftp client
 Create a new connection using the url without "ftp://" and "/site/wwwroot) so only waws-prod-am2-031.ftp.azurewebsites.windows.net and
provided user name and password
 After you are logged in, upload from your disk all downloaded files to opened space
 When the upload is complete, you can close the ftp client.
 Now go to the game's url (i.e. test-ezzev.azurewebsites.net) and test your game
Copying the game via Visual Studio:
1. Open the developer file of the project
2. If you will be asked, please log into your Azure account
3. If the file already has built a solution, click on it with right mouse button and choose PUBLISH SOLUTION.If not, first click BUILD SOLUTION,
from the BUILD menu
4. When the publish window will open, click IMPORT in the PROFILE section
5. Choose the downloaded publish profile
6. When the CONNECTION section will open, you will see all login data extracted from the file.
7. Click NEXT
8. In the SETTINGS section choose a database created for this game
9. Click PUBLISH
10. The game will be uploaded to the site
11. When the publishing will finish, your game url will be opened by the browser
Adding access to game's CMS:
1. Locate the WEB.CONFIG file (either on an FTP server, or a copy on your computer)
2. Go to section <authentication>
3. Under <credentials> add new login and new password, i.e. <user name="test@test.com" password="43v3r" />
4. Save the file
5. If it's a local copy, log onto the FTP server, and replace it under "/site/wwwroot"
6. Reload the CMS page in your web browser
Useful links:
 http://blogs.msdn.com/b/kaushal/archive/2014/08/02/microsoft-azure-web-site-connect-to-your-site-via-ftp-and-upload-download-
files.aspx#comments
 http://blogs.technet.com/b/cbernier/archive/2013/09/24/deploy-your-web-application-to-windows-azure-from-with-visual-studio.aspx
 http://www.asp.net/mvc/overview/getting-started/database-first-development/publish-to-azure

Más contenido relacionado

La actualidad más candente

SOP - 2013 Server Build
SOP - 2013 Server BuildSOP - 2013 Server Build
SOP - 2013 Server Build
Robert Jones
 
Compile open cpn on windows
Compile open cpn on windowsCompile open cpn on windows
Compile open cpn on windows
randikaucsc
 
Nuxeo5 - Code Source Installation
Nuxeo5 - Code Source Installation Nuxeo5 - Code Source Installation
Nuxeo5 - Code Source Installation
PASCAL Jean Marie
 
Kkl Simplified Dec 22, 08
Kkl Simplified Dec 22, 08Kkl Simplified Dec 22, 08
Kkl Simplified Dec 22, 08
guestcec7822
 

La actualidad más candente (20)

SOP - 2013 Server Build
SOP - 2013 Server BuildSOP - 2013 Server Build
SOP - 2013 Server Build
 
Install WordPress Blogging Software with EasyPHP
Install WordPress Blogging Software with EasyPHPInstall WordPress Blogging Software with EasyPHP
Install WordPress Blogging Software with EasyPHP
 
Compile open cpn on windows
Compile open cpn on windowsCompile open cpn on windows
Compile open cpn on windows
 
IIS Web Ecosystem
IIS Web EcosystemIIS Web Ecosystem
IIS Web Ecosystem
 
Silent install Adobe Reader DC
Silent install Adobe Reader DCSilent install Adobe Reader DC
Silent install Adobe Reader DC
 
Upgradingtodominov10bestpractices1549485091676
Upgradingtodominov10bestpractices1549485091676Upgradingtodominov10bestpractices1549485091676
Upgradingtodominov10bestpractices1549485091676
 
Nuxeo5 - Code Source Installation
Nuxeo5 - Code Source Installation Nuxeo5 - Code Source Installation
Nuxeo5 - Code Source Installation
 
WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation WebLogic, 12C SOA Standalone installation
WebLogic, 12C SOA Standalone installation
 
Install NewGenLib on Windows XP
Install NewGenLib on Windows XPInstall NewGenLib on Windows XP
Install NewGenLib on Windows XP
 
Dspace for windows
Dspace for windowsDspace for windows
Dspace for windows
 
Google chrome silent install
Google chrome silent installGoogle chrome silent install
Google chrome silent install
 
Users guide
Users guideUsers guide
Users guide
 
Tutorial de plex
Tutorial de plexTutorial de plex
Tutorial de plex
 
Kkl Simplified Dec 22, 08
Kkl Simplified Dec 22, 08Kkl Simplified Dec 22, 08
Kkl Simplified Dec 22, 08
 
Virtualización de Escriorios VMWare View 5
Virtualización de Escriorios VMWare View 5Virtualización de Escriorios VMWare View 5
Virtualización de Escriorios VMWare View 5
 
Accessing Oracle 11 g on Mac OS (10.7.5) using Oracle Virtual Box
Accessing Oracle 11 g on Mac OS (10.7.5) using Oracle Virtual Box Accessing Oracle 11 g on Mac OS (10.7.5) using Oracle Virtual Box
Accessing Oracle 11 g on Mac OS (10.7.5) using Oracle Virtual Box
 
Readme
ReadmeReadme
Readme
 
Zumasys Citrix Top 10 Tips and Tricks
Zumasys Citrix Top 10 Tips and TricksZumasys Citrix Top 10 Tips and Tricks
Zumasys Citrix Top 10 Tips and Tricks
 
How to setup Mac OS virtual machine
How to setup Mac OS virtual machineHow to setup Mac OS virtual machine
How to setup Mac OS virtual machine
 
Westermo an weos_upgrade_v1_0
Westermo an weos_upgrade_v1_0Westermo an weos_upgrade_v1_0
Westermo an weos_upgrade_v1_0
 

Destacado

Destacado (17)

Siena meeting TAT - minutes
Siena meeting TAT - minutesSiena meeting TAT - minutes
Siena meeting TAT - minutes
 
Good practices def nl
Good practices def nlGood practices def nl
Good practices def nl
 
EF presentation - Siena meeting TAT
EF presentation - Siena meeting TATEF presentation - Siena meeting TAT
EF presentation - Siena meeting TAT
 
To jest ksiazka_ars_-_this is_the_book_ars
To jest ksiazka_ars_-_this is_the_book_arsTo jest ksiazka_ars_-_this is_the_book_ars
To jest ksiazka_ars_-_this is_the_book_ars
 
How to create an identifeye ar game – functional specs
How to create an identifeye ar game – functional specsHow to create an identifeye ar game – functional specs
How to create an identifeye ar game – functional specs
 
Bibliography
BibliographyBibliography
Bibliography
 
Ankieta 21 nowych Postulatow
Ankieta 21 nowych PostulatowAnkieta 21 nowych Postulatow
Ankieta 21 nowych Postulatow
 
Web 2.0 glossary
Web 2.0 glossaryWeb 2.0 glossary
Web 2.0 glossary
 
Dynamiczna Tozsamosc manual
Dynamiczna Tozsamosc manualDynamiczna Tozsamosc manual
Dynamiczna Tozsamosc manual
 
Prophylactics
ProphylacticsProphylactics
Prophylactics
 
Dynamic Identity manual
Dynamic Identity manualDynamic Identity manual
Dynamic Identity manual
 
IDentifEYE AR game markers
IDentifEYE AR game markersIDentifEYE AR game markers
IDentifEYE AR game markers
 
EF FCP presentation - Amsterdam meeting
EF FCP presentation - Amsterdam meetingEF FCP presentation - Amsterdam meeting
EF FCP presentation - Amsterdam meeting
 
Interactive didactics and Augmented Self Reality
Interactive didactics and Augmented Self RealityInteractive didactics and Augmented Self Reality
Interactive didactics and Augmented Self Reality
 
20141203 ecommerce event v2
20141203 ecommerce event v220141203 ecommerce event v2
20141203 ecommerce event v2
 
E lab dt
E lab dtE lab dt
E lab dt
 
5th meeting izmir agenda and minutes
5th meeting izmir  agenda and minutes5th meeting izmir  agenda and minutes
5th meeting izmir agenda and minutes
 

Similar a How to create an identifeye ar game – tech specs

Virtual dj 7 getting started
Virtual dj 7   getting startedVirtual dj 7   getting started
Virtual dj 7 getting started
santiago_d
 
Virtual dj 7 getting started
Virtual dj 7   getting startedVirtual dj 7   getting started
Virtual dj 7 getting started
Vivian Pacheco
 
Credentials and VM Installation - Basic course.pdf
Credentials and VM Installation - Basic course.pdfCredentials and VM Installation - Basic course.pdf
Credentials and VM Installation - Basic course.pdf
Shubham Sidana
 
12849144 how-to-install-a-cccam-server-on-windows
12849144 how-to-install-a-cccam-server-on-windows12849144 how-to-install-a-cccam-server-on-windows
12849144 how-to-install-a-cccam-server-on-windows
rajuy2r
 
Malware analysis
Malware analysisMalware analysis
Malware analysis
Den Iir
 

Similar a How to create an identifeye ar game – tech specs (20)

Orangescrum In App Chat Add-on User Manual
Orangescrum In App Chat Add-on User ManualOrangescrum In App Chat Add-on User Manual
Orangescrum In App Chat Add-on User Manual
 
Virtual dj 7 getting started
Virtual dj 7   getting startedVirtual dj 7   getting started
Virtual dj 7 getting started
 
Virtual dj 7 getting started
Virtual dj 7   getting startedVirtual dj 7   getting started
Virtual dj 7 getting started
 
Virtual dj 7 getting started
Virtual dj 7   getting startedVirtual dj 7   getting started
Virtual dj 7 getting started
 
Virtual dj 7 getting started
Virtual dj 7   getting startedVirtual dj 7   getting started
Virtual dj 7 getting started
 
Manual de Uso para Virtual DJ 7
Manual de Uso para Virtual DJ  7  Manual de Uso para Virtual DJ  7
Manual de Uso para Virtual DJ 7
 
Virtual dj 7 getting started
Virtual dj 7   getting startedVirtual dj 7   getting started
Virtual dj 7 getting started
 
Technical Note - ITME: Running StADOSvr.exe as a Service
Technical Note - ITME: Running StADOSvr.exe as a ServiceTechnical Note - ITME: Running StADOSvr.exe as a Service
Technical Note - ITME: Running StADOSvr.exe as a Service
 
Installing Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for WindowsInstalling Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for Windows
 
Zhp diag
Zhp diagZhp diag
Zhp diag
 
Credentials and VM Installation - Basic course.pdf
Credentials and VM Installation - Basic course.pdfCredentials and VM Installation - Basic course.pdf
Credentials and VM Installation - Basic course.pdf
 
TDF Professional Conf 2010 - Rapid Windows 7 Deployments
TDF Professional Conf 2010 - Rapid Windows 7 DeploymentsTDF Professional Conf 2010 - Rapid Windows 7 Deployments
TDF Professional Conf 2010 - Rapid Windows 7 Deployments
 
Booting an image as a forensically sound vm in virtual box
Booting an image as a forensically sound vm in virtual boxBooting an image as a forensically sound vm in virtual box
Booting an image as a forensically sound vm in virtual box
 
12849144 how-to-install-a-cccam-server-on-windows
12849144 how-to-install-a-cccam-server-on-windows12849144 how-to-install-a-cccam-server-on-windows
12849144 how-to-install-a-cccam-server-on-windows
 
Gluster Storage Platform Installation Guide
Gluster Storage Platform Installation GuideGluster Storage Platform Installation Guide
Gluster Storage Platform Installation Guide
 
Malware analysis
Malware analysisMalware analysis
Malware analysis
 
Oracle api gateway installation as cluster and single node
Oracle api gateway installation as cluster and single nodeOracle api gateway installation as cluster and single node
Oracle api gateway installation as cluster and single node
 
Yobi d2 naver(create)
Yobi d2 naver(create)Yobi d2 naver(create)
Yobi d2 naver(create)
 
Howto Pxeboot
Howto PxebootHowto Pxeboot
Howto Pxeboot
 
Installation of Dspace in Windows OS: A Complete Documentation
Installation of Dspace in Windows OS: A Complete DocumentationInstallation of Dspace in Windows OS: A Complete Documentation
Installation of Dspace in Windows OS: A Complete Documentation
 

Más de Onno Hansen-Staszyński

Jak pracowac profilaktycznie z dzieckiem w wieku 13-15 lat (wydanie nr 2)
Jak pracowac profilaktycznie z dzieckiem w wieku 13-15 lat (wydanie nr 2)Jak pracowac profilaktycznie z dzieckiem w wieku 13-15 lat (wydanie nr 2)
Jak pracowac profilaktycznie z dzieckiem w wieku 13-15 lat (wydanie nr 2)
Onno Hansen-Staszyński
 

Más de Onno Hansen-Staszyński (20)

De lege horizon.pdf
De lege horizon.pdfDe lege horizon.pdf
De lege horizon.pdf
 
Marxisme en Oost-Europa.pdf
Marxisme en Oost-Europa.pdfMarxisme en Oost-Europa.pdf
Marxisme en Oost-Europa.pdf
 
CASE STUDY - MIL in wartime.pdf
CASE STUDY - MIL in wartime.pdfCASE STUDY - MIL in wartime.pdf
CASE STUDY - MIL in wartime.pdf
 
My point of view
My point of viewMy point of view
My point of view
 
How big food can nudge youngsters
How big food can nudge youngstersHow big food can nudge youngsters
How big food can nudge youngsters
 
A Minimum Viable Product definition for a socially relevant educational tech...
A Minimum Viable Product definition for a socially relevant educational  tech...A Minimum Viable Product definition for a socially relevant educational  tech...
A Minimum Viable Product definition for a socially relevant educational tech...
 
ANEMELO newsletter 3
ANEMELO newsletter 3ANEMELO newsletter 3
ANEMELO newsletter 3
 
Jak pracowac profilaktycznie z dzieckiem w wieku 13-15 lat (wydanie nr 2)
Jak pracowac profilaktycznie z dzieckiem w wieku 13-15 lat (wydanie nr 2)Jak pracowac profilaktycznie z dzieckiem w wieku 13-15 lat (wydanie nr 2)
Jak pracowac profilaktycznie z dzieckiem w wieku 13-15 lat (wydanie nr 2)
 
Anemelo handbook background information v2
Anemelo handbook background information v2Anemelo handbook background information v2
Anemelo handbook background information v2
 
Dear parent
Dear parentDear parent
Dear parent
 
Certificates
CertificatesCertificates
Certificates
 
Pu dialog - jak zaczynać
Pu dialog - jak zaczynaćPu dialog - jak zaczynać
Pu dialog - jak zaczynać
 
Second training session 2018 athens programme
Second training session 2018 athens programmeSecond training session 2018 athens programme
Second training session 2018 athens programme
 
Pilot questionnaire sup v2.1
Pilot questionnaire sup v2.1Pilot questionnaire sup v2.1
Pilot questionnaire sup v2.1
 
Pilot questionnaire fac v2.1
Pilot questionnaire fac v2.1Pilot questionnaire fac v2.1
Pilot questionnaire fac v2.1
 
Chat protocol nl dee v3.1
Chat protocol nl dee v3.1Chat protocol nl dee v3.1
Chat protocol nl dee v3.1
 
Pilot questionnaire par v2.1
Pilot questionnaire par v2.1Pilot questionnaire par v2.1
Pilot questionnaire par v2.1
 
Actieplan fac v4.1
Actieplan fac v4.1Actieplan fac v4.1
Actieplan fac v4.1
 
Actieplan sup v4.1
Actieplan sup v4.1Actieplan sup v4.1
Actieplan sup v4.1
 
Newsletter 2
Newsletter 2Newsletter 2
Newsletter 2
 

Último

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
QucHHunhnh
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
MateoGardella
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 

Último (20)

Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 

How to create an identifeye ar game – tech specs

  • 1. HOW TO CREATE AN IDENTIFEYE AR GAME – TECH SPECS For students in age group: 8-14 2013-1-GR1-LEO05-13907 Preparations for the copying of the game Preparations on PC/Laptops (for Windows):  Create an Azure account http://azure.microsoft.com/ or get access to an existing account  Download and install Visual Studio (2013 – http://www.dobreprogramy.pl/Visual-Studio-Ultimate,Program,Windows,12106.html; or 2015 - https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx ). Attention! Depending on the software version you can be asked to install additional software.  Download and install Silverlight 4 SDK http://www.microsoft.com/en-us/download/details.aspx?id=7335  Download and install NuGet http://www.nuget.org/  Download and install Notepad++ https://notepad-plus-plus.org/download/  Download and install Silverlight 5: http://www.microsoft.com/silverlight/  Download and install an FTP client like: Total Commander http://www.ghisler.com/download.htm or FileZilla https://filezilla- project.org/download.php?type=client Online preparations (for an empty game, without any data like: questions, augmentations, texts):  Go to http://manage.windowsazure.com/  Log in with your Azure credentials  Click (on the bottom of the screen): NEW -> COMPUTE -> WEB APP -> QUICK CREATE  Choose a URL, for instance: test-ezzev.azurewebsites.net  Choose an app service plan
  • 2.  Click CREATE WEB APP  In a few moments your web app will be created  Go to WEB SITES (by choosing in the toolbar on the left)  Select your web app, i.e: test-ezzev  Go to DASHBOARD  Click on DOWNLOAD THE PUBLISH PROFILE  Save the profile on your disk, please remember where you saved it.  Click (on the bottom of the screen): NEW -> DATA SERVICES -> SQL DATABASE -> CUSTOM CREATE  Choose the name of the database, i.e.: TEST  Choose a subscription (your subscription will be chosen by default), choose the BASIC service tier, choose your server and click COMPLETE  In few moments your database will be created Online preparations (for a copy of an existing game, with all data like: questions, augmentations, texts):  Go to http://manage.windowsazure.com/  Log in with your Azure credentials  Click (on the bottom of the screen): NEW -> COMPUTE -> WEB APP -> QUICK CREATE  Choose a URL, for instance: test2-ezzev.azurewebsites.net  Choose an app service plan  Click CREATE WEB APP  In a few moments your web app will be created  Go to WEB SITES (by choosing in toolbar on the left)  Select your web app, i.e: test-ezzev  Go to DASHBOARD  Click on DOWNLOAD THE PUBLISH PROFILE  Save the profile on your disk, please remember where you saved it.  Go to SQL DATABASES (by choosing in toolbar on the left)  Chose an existing database with the game, i.e. ID-EYE  Click COPY (on the bottom of the screen)  Choose the name for the copy of the database, i.e. TEST2  Choose a server and click COMPLETE  In few moments your database will be created
  • 3. Copying of the game via FTP:  Go to http://manage.windowsazure.com/  Go to WEB SITES (by choosing in toolbar on the left)  Select your web app with the existing game, i.e. IDENTIFEYE  Go to DASHBOARD  Click on DOWNLOAD THE PUBLISH PROFILE  Save the profile on your disk, please remember where you saved it.  Open the profile via regular notepad or Notepad++  Look in the file for <publishProfile> for FTP (i.e. <publishProfile profileName="adt-ezzev - FTP">) and copy to a different document:  publishUrl (i.e.: ftp://waws-prod-am2-031.ftp.azurewebsites.windows.net/site/wwwroot )  userName (i.e.: adt-ezzev$adt-ezzev)  userPWD (i.e.: tixHYirlZwBLXBclupBD6SLHKRXwTozw9pPjmEAoaRnLRN3lji1mifwpprG4)  Open your ftp client  Create a new connection using the url without "ftp://" and "/site/wwwroot) so only waws-prod-am2-031.ftp.azurewebsites.windows.net and provide your user name and password  After you are logged in, copy all folders and data to your hard drive.  After you are done, close the connection.  Open the folder with downloaded files, go to: sitewwwroot and open the WEB.CONFIG file with the Notepad++  Go to the section <connectionStrings> and find the line starting with "<add name", i.e. <add name="IDentifEYE" connectionString="Data Source=tcp:lpqaf9z5zy.database.windows.net,1433;Initial Catalog=IDENTIFEYE;User ID=identifeye@lpqaf9z5zy;Password=!d3nt1f3y3" providerName="System.Data.SqlClient" />  Change the Initial Catalog name to the name of your database, i.e. TEST. So the string should look like <add name="IDentifEYE" connectionString="Data Source=tcp:lpqaf9z5zy.database.windows.net,1433;Initial Catalog=TEST;User ID=identifeye@lpqaf9z5zy;Password=!d3nt1f3y3" providerName="System.Data.SqlClient" />  Save the changes  Now go back to http://manage.windowsazure.com/  Go to WEB SITES (by choosing in toolbar on the left)  Select your web app created for the copy of the game,i.e. test-ezzev  Go to DASHBOARD  Click on DOWNLOAD THE PUBLISH PROFILE
  • 4.  Save the profile on your disk, please remember where you saved it.  Open the profile via regular notepad or Notepad++  Look in the file for and copy to a different document strings of characters for:  publishUrl (i.e.: ftp://waws-prod-am2-031.ftp.azurewebsites.windows.net/site/wwwroot ) (Attention. It should be the same as used before)  userName (i.e.: adt-ezzev$adt-ezzev)  userPWD (i.e.: tixHYirlZwBLXBclupBD6SLHKRXwTozw9pPjmEAoaRnLRN3lji1mifwpprG4)  Open your ftp client  Create a new connection using the url without "ftp://" and "/site/wwwroot) so only waws-prod-am2-031.ftp.azurewebsites.windows.net and provided user name and password  After you are logged in, upload from your disk all downloaded files to opened space  When the upload is complete, you can close the ftp client.  Now go to the game's url (i.e. test-ezzev.azurewebsites.net) and test your game Copying the game via Visual Studio: 1. Open the developer file of the project 2. If you will be asked, please log into your Azure account 3. If the file already has built a solution, click on it with right mouse button and choose PUBLISH SOLUTION.If not, first click BUILD SOLUTION, from the BUILD menu 4. When the publish window will open, click IMPORT in the PROFILE section 5. Choose the downloaded publish profile 6. When the CONNECTION section will open, you will see all login data extracted from the file. 7. Click NEXT 8. In the SETTINGS section choose a database created for this game 9. Click PUBLISH 10. The game will be uploaded to the site 11. When the publishing will finish, your game url will be opened by the browser Adding access to game's CMS: 1. Locate the WEB.CONFIG file (either on an FTP server, or a copy on your computer) 2. Go to section <authentication> 3. Under <credentials> add new login and new password, i.e. <user name="test@test.com" password="43v3r" />
  • 5. 4. Save the file 5. If it's a local copy, log onto the FTP server, and replace it under "/site/wwwroot" 6. Reload the CMS page in your web browser Useful links:  http://blogs.msdn.com/b/kaushal/archive/2014/08/02/microsoft-azure-web-site-connect-to-your-site-via-ftp-and-upload-download- files.aspx#comments  http://blogs.technet.com/b/cbernier/archive/2013/09/24/deploy-your-web-application-to-windows-azure-from-with-visual-studio.aspx  http://www.asp.net/mvc/overview/getting-started/database-first-development/publish-to-azure