User upload content [closed] - apache-flex

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I wanted to crate an mobile app (using Flex) that let user upload some user generated content (eg. Text, Picture) to my website and also able to display/view it on the website as well.
I don’t much on the back end (web programming, website database, cloud).
What is the best way to do this or is there any ready build solution out there?
Thanks.

Look at httpService for your user upload and tie it to a back end web service using POST or GET parameters. Personally, I recommend PHP but any web capable service would work. Then, tie that service to store your images on your web server or in a database. Reverse the process to get it back out. Can this all be done in Flex? No. Can you tie it in with a web service easily? Yes. Good luck.

Related

is firebase ideal for a music streaming app. (Flutter) [closed]

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 3 years ago.
Improve this question
Almost eveything is done through the database, and so this got me thinking, if I have user accounts, is there a way to create/allow certain things from the database,to be user configurable. For example, say they favorited a song, though it is done through the server, it'll be user base and only affect them.
Is there a way to allow certain things from the main database to be user database as well.
Sorta new to this.
You can definitely use firebase for music streaming ,
for basic upload you can use firebase storage, and use the download link to stream using Audio Players plugin
if you want to compress audios to different qualities you can use Firebase Functions by adding your own javascript to it.
The rest is just data manipulation and user management. You can refer the firebase documentations for more.

Recording sound and upload using web application [closed]

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 4 years ago.
Improve this question
I am bulding a learning portal for a client and the client has asked for a feature where the user can record and upload sound directly from the browser (or browser plugin) to a custom made forum on the portal. The client envision having a button like [start recording] on the site. I am probably ending up with recommending against this feature but I would like to hear if any of you have done something similar and what you used.
This specific application is built using dotnet core 2.0 and Angular 5 in the frontend.
Using WebRTC could be an option if you can run your site under an SSL cert.
You may want to take a look to this example here.
Here you have another example using the device camera.
You can store the response on a Blob and send it to your server.
It is an initial aproach but I think it could help you take a decision.

allow other applications [3rd party] to access my asp.net website, user authentication [closed]

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 a website which supports many kind of users based on their roles.
That is Sales,Customers etc.
I want to make my website to be accessible form other applications.
Like if any application want to fetch or send data to my application i should be able to grant them secure accessibility.
Please let me know how should i go about it to get the authentication part done.
Thanks in advance. Any help would be greatly appreciated.
The question is fairly broad so I'm afraid I can only offer general guidance. The common approach to this is to expose your functionality as an API secured by OAuth. Users must authenticate with your application to get a bearer-token that they can then provide along with calls to your API to identify themselves and authorize the request.
If you are usinging ASP.Net I would suggest looking at the Authentication and Authorization in Web API.

Is it possible to use Media Fire API from Google Sites or WordPress Website? [closed]

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 4 years ago.
Improve this question
I'm a beginner in web development, I want to create a website that will have a very large number of file uploads, a single could be up to 100 MB.
I want the upload to be through my website but the upload destination to be on MediaFire (I'm looking for unlimited free storage, using several MediaFire accounts). I still haven't given the MediaFire API a try, but I want to know if with some lines of code I can create a FileUpload on my website but the destination be on MediaFire.
Media Fire Api is a Library Php right ? On google sites, you can add Php File with App engine.
I don't know it's possible but , I think this link can help you.
http://www.sitepoint.com/google-app-engine-php-getting-started/

Asp.net Email Control [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm in the beginning stage of building an Asp.net email control. I'm a big fan of asp because a developer can drop a control onto a page and all functionality is bundled into it.
So, my goal is to develop an EmailControl that encapsulates send/recieve into a single server control.
I would appreciate if anyone has some tips or technical references regarding this topic. For all of you wondering, I AM doing research of my own but some of you may have some additional sites that I could check out.
Thanks
To let users send, you just need the basic form elements and the code on the page below to send the mail.
Sending Email with System.Net.Mail
.NET doesn't have any native POP3/IMAP support but there are a multitude of libraries available, such as:
.NET POP3 MIME Client
(This answer assumes by "send/receive" you are referring to implementing a mail client as opposed to a mail server.)
Beware that Aspnet will be supersede by Aspnet MVC, where these kind of "drag and drop" controls don't exists any more..

Resources