java server connection to flex application [closed] - apache-flex

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Ho to connect the java server to flex application?
Is Blazeds plays a role here (or) Remote services?

you can connect a Java BackEnd in more then a couple of ways
you can use BlazeDS and thus applying AMF to your application and binary communication between the two.
you can also work with WebServices and move Json/XML back and forth from the server to the client and vice versa.
This is a great link if you want to learn a bit about BlazeDS
http://www.adobe.com/devnet/livecycle/articles/blazeds_gettingstarted.html

Related

Windows Phone 8 background task [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Is there a way to keep internet connection alive while application is switched to another task, such as PhotoChooserTask or ShareStatusTask? I've already seen background agents, but they doesn't meet my needs.
No. Launching a task is pretty much the same as launching another application: your own application gets turned off and stops running. Therefore, it isn't possible to keep open the existing network connections, nor to do any kind of background processing.

How to create asp.net Forum [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I just want to create an asp.net VB Forum and the database should be MS Access.
No reason to be rude about this question. Here are some resources that can get you started.
http://www.asp.net/get-started is a good place for information about building your first ASP.NET application.
http://www.asp.net/community/projects#jm_starter_kits_and_samples has links to some starter kits that can get you up and running.
http://www.asp.net/downloads/starter-kits/the-beer-house is an older starter kit, for ASP.NET 2.0, but I used this a while back and it's pretty good.
As for using MS Access, I would try to get your first web application up and then ask a more specific question here on Stackoverflow when you run into some problems.

Converting vb.net into a web application [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I have written a desktop application in vb.net. Now I need to convert it into a web application in asp.net. Can you please suggest how I might proceed?
What you're asking is far more complicated than you think it is. Take this as an opportunity to learn ASP.Net, and web applications in general. Implement the web app from scratch (there are many good books on the subject), using your desktop app as a guide.

what is the basic steps to build social network website? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
what is the basic steps to build social network without using the websites that provide a free social network?
Is it need a separate server? ok I can't buy the server !
How do I can start without spend any money?
You should start with a dedicated server(if you can get a static IP from your internet provider you can host it yourself from your computer, or try some free servers, but they won't be dedicated), a database(if you are going for free MYSQL or SQL Express), some form of GUI that connects to the database showing data (asp.net with visual studios express is what I would prefer). And then just like that you have a networking site...

password protect asp.net application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have built an ASP.NET application that needs to be password protected. This application will be installed on multiple offline computers, and we need to make sure that when being installed it requires a password. But even if it requires a password, someone can easily copy the database and the published folder and duplicate the application on their system right?
I need a way to prevent this. Any ideas? It should only work on laptops that we have installed it on.
You could create a licensing tool like any other client app. Check the license key during app startup and occasionally during the runtime. Look at this post for ideas: Protect .NET code from reverse engineering?

Resources