Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
Wich is the best (and safest) way to implement user login for a silverlight application?
It depends on where your authentication logic resides. If you store your data on a server and you communicate with it via RIA services, then you have access to a built in authentication framework. Here is an example.
If you do communication via plain WCF, then you can still do authentication over WCF in many ways.
Example of using Windows Authentication over WCF: http://msdn.microsoft.com/en-us/library/dd744835(v=VS.95).aspx
For your question: best and safest....Both are good for either server-communication method you use. If these don't seem best to you, you can always write your own security.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I am creating a web Application with node js,angular,mysql and and express.Application contains different type of record which i have to manage.
So what do i use Single Page Application or Multi Page Application.
To me it comes down to preference and how much work I want to put into my application. Since you are using Angular, I think having the luxury of doing a single page application is great because load time is minimal.
If you take the multi page direction I would suggest ditching Angular and serving files from the server. The benefit of that is that you don't have to handle two applications.
I would use Angular because single page applications are very user friendly right now.
Good luck with your decision.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I'm new to Angularjs. I was wondering how can i get oracle database data using Angularjs. Any help would be greatly appreciated.
Thanks,
Sukesh
Angularjs is client side framework based on javascript. There is nothing to do retrieving data from Oracle. It is server side's duty.
You should implement on server side technologies such as .net or php, and give services to client side through web api, rest api etc.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a web application that I have created with angularJS/Symfony2 and a mobile app with(ionic) I want to create a real chat application between this 2 clients.I thought to use nodeJS and websockets??I can have many clients conncted from their mobile
I have read many articles about firebase for angularJS and redis,but I don't know from where I will start
have you please any idea how can I do that
thanks a lot
The simplest way to start is check basic chat solution on NodeJs http://socket.io/get-started/chat/
Also as alternative you can use Rachet(WebSockets for PHP) http://socketo.me/ to get more closer integration with Symfony2
You can definetely use node and socket.io.
Start here:
http://socket.io/get-started/chat/
To integrate it with angular, you can use this module:
https://github.com/btford/angular-socket-io
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm want to save some datas on an online db. How can I connect to an online database (SQLSERVER) on windows phone 8 ?
Thank you.
Dont connect directly to a database from a mobile phone. Use webservices either SOAP or REST. You are opening a can of worms by exposing your database directly to the internet.
Also if you want to expand and include other phones i.e. iPhone and Android to your database then you are going to have lots of different code to maintain.
See this answer Android access to remote SQL database for more information about this.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have developed LOB client/server app in WPF (MVVM, Entity Framework, PostgreSQL).
And now I am trying to learn and understand how to upgrade same project to something like 3 tier but via internet. (transfer BL and DAL into some intermediate server/service)
Do you think WCF is good for this job (if so please explain basic concept), or is there some kind of framework out there which would make all this a little bit easier.
Yes, I do think that WCF, generally speaking, can easily take the role of business layer and data access layer. You should read a good book on WCF or architecture, because a post on Stack Overflow is not enough to explain it in detail.