Develop a secure Flutter client application communicating with a server equipped with SSL certificates for enhanced security

My back-end is an ASP.NET Web API server hosted as a secure server with a certificate. When I navigate to the URL, it is secure. This part looks good. However, when I FTP my browser app (Flutter or another framework like Angular or React) to the same server and navigate to myflutterapp.xxx, the Flutter app looks great and works as designed but is marked as insecure by Chrome. How many certificates do I need for this setup? Possible answers: 1. I do not need the certificate on the server app, only the Flutter app. 2. I need both certificates.

Answer №1

While setting up the corticate on the asp.net server component, I had a moment of confusion. It actually needs to be implemented on the web app (built with Flutter Javascript) that will run in the user's browser and handle HTTPS handshaking.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Having trouble accessing cookies in JavaScript on Internet Explorer 11?

I am facing an issue with my Angular application where cookies are not being read properly in Internet Explorer 11. The JavaScript code works fine on Chrome, but IE seems to be having trouble accessing the cookie data even though it is visible in the devel ...

"Creating a cohesive design: Using CSS to ensure the navigation background complements

I am working on a project with a horizontal navbar that I want to stay fixed while scrolling. The main window has different colored divs as you scroll down, and I would like the navbar to match the image of the main div while scrolling, creating a looping ...

Can Typescript Be Integrated into an AngularJS Application?

I have been thinking about the optimal timing and scenario to implement Typescript in an AngularJS project. While I have come across examples of TS being used in a Node, Express, Mongo backend, I am particularly intrigued by how well TS integrates with A ...

Guide on utilizing exported API endpoint in Node and Express

Seeking a deeper understanding of express and its utilization of various endpoints. Recently came across an example of an endpoint that reads in a json file, demonstrated as follows: const fs = require('fs'); const path = require('path&apos ...

IIS can host ASP .NET 5 (vNext) applications without automatically redirecting them

After setting up a test project on asp.net 5 RC1 I built and ran it on IIS Express Then published it via file system Created a new application in the "Default Web Site" with URL http://localhost/asp5 Enabled logging in wwwroot\web.config Enc ...

Implementing sort functionality in React with filter capabilities

Is it possible to display the Sort By feature in React? Additionally, is it feasible to Filter data based on the sort category selected in the dropdown menu, which includes options such as male, female, or all? // Gather a list of names const names = data ...

Is there a way to retrieve a returned value from a `.ajax` request in the `done()` function in JavaScript?

Hey there! I've got a cool function that spits out the name of a person for you. Check it out below: function getName(ID){ return $.ajax({ url:url, data: ID, type: 'get', dataType: 'json' }) ...

Sharing data between different JavaScript files using Knockout.js

I am working with two JavaScript files named FileA.js and FileB.js. Within FileA.js, there is a function called Reports.CompanySearch.InitGrid: function InitGrid(viewModel, emptyInit) { var columns = [ { name: 'CompanyName', ...

Display Navigation Bar when Scrolling: Hidden upon Refresh

I'm currently using some jquery to create a fading effect on my Bootstrap 4 navbar when scrolling past a certain point. However, I've encountered a couple of issues. The navbar doesn't appear when reloading the page after already scrolled do ...

Is it valid JSON to have values such as "ok", false, true, null, and 123?

Can the following strings be considered valid JSON? "ok" false true null 123 If not, why does the standard JavaScript JSON.parse method allow these values to be used as valid JSON? I have encountered issues when using these values in JSON REST APIs, ...

Pause before proceeding to the next iteration in the loop

I am currently facing an issue while trying to send a message through an API using a function. The function returns a value called messageLogId, which I'm attempting to update in the main loop at Attendence. However, when executing the code, the value ...

Ways to thwart CSRF attacks?

I am currently looking for ways to protect my API from CSRF attacks in my Express app using Node.js. Despite searching on both Google and YouTube, I have been unable to find a solution that works for me. One tutorial I watched on YouTube recommended gene ...

React Router Blank Page Conundrum

In a new project, I'm experiencing an issue where the content is not loading in despite using a similar React-Route setup that worked in a previous project. When I create a nav link in the root directory, it changes the path but the screen remains whi ...

Unable to Display Embed Request Using Javascript in IE9 and IE10

My website allows users to embed content they create on the site into their own blogs or pages using a series of embeds. Here is the code we provide them: <script src="[EMBED PROXY URL]" type="text/javascript"></script> When this code calls ...

Reactjs will re-render when the this.props.location.query.somequery is updated

When the value of this.props.location.query.someQuery is updated, the render() function will be triggered. However, I am looking for a way to prevent the component from re-rendering when the query is updated. The method I use to update the query is as fo ...

An error occurred during conversion: trying to convert an object to an array

After reading numerous articles about this issue and trying multiple solutions, I am still unable to resolve it! I have been stuck with this error for the past 3 days and I'm hoping someone can assist me. Thank you in advance for any help! My situati ...

Submitting an HTML form with no input data

Looking to dynamically pass arguments between pages using the code below: <script type="text/javascript> function buildAndSubmitForm(index){ <? $args = 't='.$team.'&s='.$season.'&l='.$league.&apo ...

Using URL parameters in ASP.NET for passing data

Currently, I am in the process of creating an application using ASP.NET MVC, which is intended to be displayed on various client devices such as WindowsPhone, iOS, and Android apps within a WebView control or embedded within other websites through iFrame. ...

Steps for extracting a value from a webpage

Hello there, I'm in need of some assistance with a project I'm working on. I've taken it upon myself to delve into the world of nodeJS and restAPI by creating a simple app to track the prices of BTC, LTC, ETH, and BCH using Postman for API ...

Understanding the relationship between Javascript closure and events

Currently encountering the following problem: Within a foreach cycle, I am invoking the browse function. Upon calling rb.wsc.browse(symbol), the program initiates a WebSocket request and emits an event when the message is returned. However, I consistently ...