Deploying application to open source server - oracle-adf

I am using weblogic server for deploying adf application and I want to know whether is there any open source server available with security for adf application deployment?.

No, only wls allows you to use the default adf security.
You can deploy adf essentials to other servers like tomcat but you can't you adf security then.

Related

How to use azure sql db managed identity authentication for local development and on external tomcat (for deployment)?

I have a spring boot application connected to azure sql db using sql authentication (user/pass). It's working fine on local development and when the .war is deployed to external tomcat because the application is to be used on a linux environment.
I'm trying to use managed identity for authentication and came upon this link.
I tried to implement it on my spring boot application but I'm getting this error:
"Windows logins are not supported in this version of sql server."
Also can this be used if I am not using azure cloud? As I mentioned earlier the application is being deployed in a linux server on tomcat.
As mentioned in the comment, MSI(managed identity) just works in the azure services that support MSI(need enable MSI first), when using MSI to auth, it essentially makes an API call to the azure instance metadata endpoint to get the access token, then use the token to auth, it is just available in the MSI-supported service. So in conclusion, you could not use this feature if you are not using azure cloud.

How can I connect my SQL Server database that is placed on another server using API or Web Service in MVC to website that is on a different server

I uploaded my website to GoDaddy web hosting and the database is placed on another server.
I want to create an API - either REST or SOAP - to connect my web site with my SQL Server database.
I need help - how can I create an API in ASP.NET MVC 5 so that I can connect my database with my web site? Kindly provide me with a link or code so that I can solve my issue.
I have never worked on API before - any help will be much appreciated.
ASP.NET MVC is now old school. Try ASP.NET Core.
You need to design and develop an N-Layered application: Data, Service and UI.
It doesn't matter where the database server is sitting, as long as your WebAPI can connect to it.
I suggest you build a restful web api with asp.net core :
https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-3.1&tabs=visual-studio
Put your db connection string in the app settings file.
Although you use other database server, it doesn't matter. You just need to make sure you check your connection string and point it to your database server. For publishing method, it is same, you can use FTP or Visual Studio
Please open your project with Visual Studio tool
On the Solution Explorer windows (which is normally located on the top right hand corner of the VS tool), right click your project and select Publish
Please kindly publish it to a local folder, such as C:\Project
Please just upload whatever files/folders you see on C:\Project to your server via FTP
If you have any problems, you can contact your support team
You can get the Reference from
Sample_WebAPI_Project ,
instead of Using List created you can create Database Connection and get data from Database

Deploying Umbraco 8.1.1 to Azure w/SQL Azure DB: Boot Failed

I'm trying to develop an Umbraco 8.1.1 site on Azure and am following these steps:
I create an Azure SQL server database (I don't use any local DB at all).
I create an empty ASP.NET 4.7 Web App locally and add Umbraco 8.1.1 via NuGet
I invoke locally and configure my Umbraco application to use the Azure SQL Server DB. It works without issue. I can see the database from SQL Server Management Studio no problem.
I then publish the site through Visual Studio 2019 to an Azure Web App, and when I visit it, I get the following error:
Server Error in '/' Application.
Boot failed: Umbraco cannot run. See Umbraco's log file for more
details.
-> Umbraco.Core.Exceptions.BootFailedException: A connection string is configured but Umbraco could not connect to the database. at
Umbraco.Core.RuntimeState.DetermineRuntimeLevel(IUmbracoDatabaseFactory
databaseFactory, ILogger logger) in
d:\a\1\s\src\Umbraco.Core\RuntimeState.cs:line 194 at
Umbraco.Core.Runtime.CoreRuntime.DetermineRuntimeLevel(IUmbracoDatabaseFactory
databaseFactory, IProfilingLogger profilingLogger) in
d:\a\1\s\src\Umbraco.Core\Runtime\CoreRuntime.cs:line 259 at
Umbraco.Core.Runtime.CoreRuntime.Boot(IRegister register,
DisposableTimer timer) in
d:\a\1\s\src\Umbraco.Core\Runtime\CoreRuntime.cs:line 146
I'm stumped. How do you configure Umbraco to use an Azure SQL DB?
Check that you've got the connection string registered in the Web App correctly - I suggest looking at the Configuration section for the Web App and setting the configuration string there. Alternatively, download your web.config file via ftp and compare the connection string in the published version vs. your local version.
You should also check the server or database firewall settings and make sure that Azure services have access:
https://learn.microsoft.com/en-us/azure/sql-database/sql-database-firewall-configure#connecting-from-azure

How to configure IIS for MSSQL windows authentication in mvc 5 application

We have a Microsoft.Net MVC5 application which is deployed on a server and is working with IIS. Server uses static I.P. and hence the application is accessible from anywhere(internet).
Concern is around the database access, which is a MSSQL database, for now application is working with it using a SQL Authentication. Infra team is asking us to move away from sql authentication and to work with Windows Authentication and we are not sure how to configure IIS or IIS_IUSRS access to the database. Any help on this would be greatly appreciated.
Thanks

Publish WinForms application on remote server

I want to publish my WinForms Application on remote server to enable web installation for the application.
I need some relevant information how to configure IIS 7.5 web site to enable publishing by VS2012. I've found some links but it mostly about publishing web application and as I could understand the process is different in some points.
Where I could find information for the configuring IIS web site?
Are you referring to a ClickOnce application?
If this is the case, you simply need to have write access to where it is going to be deployed, and users need read access.

Resources