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 to develope an e-commerce and I'm not sure what kind of technologies use. So I ask you the difference between developing by java servlet or by php.
Thanks in advance.
Making web app using java servlets is time consuming but it has lot of advantages over php.
Java servlets app are scalable. Java Community provides several framework to minimize the dependency(loose coupling)
So if you want to really make web app for commercial transaction where millions of users do transaction go for Java Servlets.
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 8 years ago.
Improve this question
I recently went through an article which states the different combination to make an Web-Application , so I was wondering that when a developer should go for
1.php
2.asp
3.jsp/Servelets
anything on it would be appreciated
Developer should develop in which language he/she is comfortable.and client's requirement is also taken care of.
Open source web application should develop in PHP. Application meant to run in Windows server must develop in asp and in both the cases you can use java. Java is mostly use to develop desktop applications.
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 trying to make a Web site that showcases multiple scripting languages, including Ruby on Rails. If I make the framework of the site in Rails, is there a way to run other languages like PHP on the Rails server, or do I need something like XAMPP?
For example when you want to run perl, you could use Microperl. For php.
If this all does not work for you or you want to execute it otherwise, you can create APIs in such languages and let Ruby talk to this APIs.
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 9 years ago.
Improve this question
I would like to implement a kind of chat. The client is Android and the server PHP.
Now I have some questions:
Is this kind of chat possible or what should be on server side? Is it recommandable to do a PHP request (maybe every second) to retrieve new data? What is the best way to realise it? What are pros and contras for php? What are good alternatives?
Don't poll your server. Chat is realtime communication. Php is not built for this kind. Push the messages to android app. You can use php to run workers, process messages, deal with db things etc. you can look into Xmpp and message queues. Gcm might be helpful. It also supports upstream messaging.
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 created a php RESTful service which respond with data in JSON format and i can easily access it with my android app, but the problem is with my WPF desktop client. Actually, i don't know a better way to call a php web service from a WPF client. Please suggest some good solutions to deal with this problem.
Your issue doesn't have anything to do with WPF, but simply .NET in general. You're looking for Windows Communication Foundation.
The learning curve is a little steep, but once you've got it set up right, consuming your service in .NET should be pretty simple.
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 9 years ago.
Improve this question
Particularly, for PHP development, which one performs better? I'd like to deploy a Zend Framework 1.X app on the chosen platform. Which one makes this easier/possible?
One thing I particularly love about Pagodabox is how they "force" you to use git (or some other version control system). I know you probably wouldn't use either GAE of PB for trivial projects, so you're probably already using some version control system. But I still think that's a nice touch of them. Plus it makes deploying that much easier.