Could we use Web Farm Framework 2.2 to create a server farm on windows server 2012? - web-farm

We want our application to run on web server farm.Is it possible to create web server farm using web farm framework 2.2 on windows server 2012?We would be grateful if given detail setup procedure if possible.

Currently does not support windows 2012
http://forums.iis.net/post/2032127.aspx

Related

DocumentFormat.OpenXml.dll Not Working on Windows server 2008 R2

In my C# asp.net web application, used DocumentFormat.OpenXml.Dll to work with Excel file generation, it is working in one application server, but failed in another server, what would be the reason for it. How to check it?

Connect Oracle MAF app to server database

I am using eclipse to develop an oracle MAF application. I set up the environment but i need now to connect my app to the oracle database on the server and i don't know how to start. Do i have to use the local sqlite database then sync with the server or connect directly to the server and how to do it?
thank you!
It's not possible to make a direct database connection MAF. You will have to expose your data in a web service and consume it in your mobile app.
One option you can consider is to expose the data in the database as a REST Service which you can invoke from a MAF application.
See this presentation on how to use OEPE to build a MAF application that invokes REST services: https://www.youtube.com/watch?v=pRdLSOVslQg
Hope this helps. Thanks for your interest in OEPE.
-Raghu
Here is the simple tutorial which describes that how can you make a REST web service in Oracle MAF, deploy it to web logic server using Jdeveloper and access it from your browser. I hope it'll help you:
http://sanjeev-technology.blogspot.in/2014/09/rest-service-on-weblogic-1034.html
Pervasync just released a new version (6.0.2) of its sync framework that supports synchronization of Oracle MAF SQLite databases with central Oracle, MySQL, SQL Server and PostgreSQL databases.
You can try this sample tutorial which having the step by step explanation.
To make it work, you need to use JDeveloper 12c (download it from here). It will contain WebLogic server as well.
In additional you need to have Android SDK for emulator (or) you can make use of Android device to deploy and run the application.
For Android Device:
You can deploy the application into machine and configure the mobile client app using virtual IP of that machine. So that it can be accessed from outside of the network.
For Emulator:
you can run the webservice and client in same machine by configuring the webservice IP as 127.0.0.1 this will route your client app into local machine (P.S: localhost does't works here)

Understanding lightswitch deployment

I wish to deploy a lightswitch application for a small company. I want a central server hosting the database and then the silverlight client to run inside the network connecting to the server and updating the database with clients, etc.
I have made a working system using the intrinsic database in VS2013, but now I come to deploy it and am having problems, despite hours reading MSDN and following tutorials.
I create a deployment package on my development machine, which I then install on the server, but I then need to create a client only package, which points to the server? Does this mean I need to specify the central database as an external data source? Or does this switch happen automatically? Can I publish only the server, and install that on the server machine, (I have already installed the web server package) then publish a separate client package for installing the application on the clients? I need all the clients to update a single database, not all have their own local copies and local databases...
When you "create a client only package" the intrinsic database is running on the client, so nothing point to the server.
A external data source is always external regardless of the app type.
What type of a LightSwitch Application you've selected?
A 2-tier desktop application runs on an end-user Windows desktop. The
database and server components are deployed to the end-user computer.
A 3-tier desktop application runs on an end-user Windows desktop. The
database and server components are deployed to an Internet
Information Services (IIS) server or to Windows Azure.
A 3-tier Web application runs in an end-user web browser. The
database and server components are deployed to an Internet
Information Services (IIS) server or to Windows Azure.

how to configure a redhat linux server as a webserver for hosting websites?

I have an IBM server (system x3250m4) and i have installed Linux red hat 6 server edition.
Now i need to make it as a web server for hosting websites via ftp. So i want to know what are all the procedures needed to make it as a web server. can anyone help me to resolve it.
Thanks in advance.
i suggest you to use "ISPConfig"
including : web server, ftp server, mysql databaes, emails, dns
link to build your hosting server : Perfect Server Fedora 15

ADO.NET in Windows 8

Is there ADO.NET in Windows 8 and Windows Phone 8? I need SqlConnection class. Maybe there is additional libraries?
There is no ADO.NET in WP8. If you are referring to modern, Windows 8 Store Applications, ADO.NET is not allowed either. ADO.NET would only be available in desktop applications.
The answer above is correct. Here is some follow up content, if needed.
Windows 8 applications are expected to run directly from the Windows Store, without the limitations imposed by connecting to local servers via a connection string.
The recommended approach is to expose your database via a web service.
Two Microsoft technologies that do this are:
(1) Windows Communication Foundation
(2) ASP.NET Web API (the more modern approach)
For Windows Communication Foundation, here is a tutorial:
http://www.intstrings.com/ramivemula/articles/create-a-simple-wcf-service-against-pubs-database-using-ef-linq-part-i/
For ASP.NET Web API, here is a tutorial:
http://code.msdn.microsoft.com/ASP-NET-Web-API-Tutorial-c4761894/view/SourceCode