what should be choose by java developer bluemix vs softlayer [closed] - java

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 3 years ago.
Improve this question
Hi am java developer with decade of experience with java/j2ee development, I got a chance from my organisation to do course and certification in bluemix or softlayer , and am confused what to choose. Any suggestions guys

This is really up to what you want to do and what you are comfortable with. SoftLayer is an Infrastructure as a Service Provider. This means that you as the customer are responsible for the Operating System updates and configuration, Middleware, and applications and services that you want to use.
If you would rather focus on just the code and don't really need to tweak the underlying OS or software stack than I would say Bluemix is the way to go as it is really more focused on Developers.
Really though it comes down to what you ultimately want to do with the platforms.

Related

Web services vs Socket programming [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 7 years ago.
Improve this question
I need to design for searching for a file application in Java. I have planned to design it with
Socket
Web services with javaws
Which is faster in application which searches for file from a distributed system?
I'd go with option 2.
Primary Reasons
Less coupling between client and server
Ability to scale
Ability to incrementally add new apis
Pre-built libraries that will help you get this done fast.

Android app and using php/mysql as a Restful solution [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 7 years ago.
Improve this question
I am creating an android app that will use the database intensely and use a lot of Json to read the output from the database over the internet. I know that PHP is an interpreted language but would this cause an issue when creating an android app from a performance standpoint when you have many users? or would I be better off with Java/MySQL. I know both PHP and Java just thinking long term here.
PHP works fine with huge number of users. It definitely wins for rapid development and release. You can scale your servers when the need arises. Imo, use any language/framework you are most comfortable.

Laravel, Codeigniter or Zend? [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 7 years ago.
Improve this question
I want to develop an ERP application. What is the best framework to use. Am good with Codeigniter and ready to learn a better framework. Plus, the application will be used in a a large organization. I have read many forums but can't end up with a concrete reason why I'd prefer one over the others.Is there an alternative programming language which is not necessarily web based? Any idea will be highly appreciated.
try laravel first as it is modern and has a lot of support. Go on the irc channel and it is a great place. zend will take a lot longer to build and plan.
if you want a proof of concept, you can get it up in a few days in laravel. then you can decide on where you want to take it from there.

jboss downloaded but where could I start to make work [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 8 years ago.
Improve this question
well I studied java language and I'm pretty sure I'm at a good point and I would move up to the next level beginning to build a web app. So I downloaded and installed jboss but I think although is a complete framework it's very complicated.so I ask you where couid I start?which could the beginning point to understand something and move on?
JBoss is only one of several web application containers available in the Java ecosystem. If I were you I'd start by looking at how to develop web components using servlets and jsp. Basically the things included in the Oracle Web Component Developer Certification. While it's certainly not necessary to get a certification it is good to have a grasp of the material covered. There are plenty of books and online resources that cover these topics.

Licensing a java web based application [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 7 years ago.
Improve this question
I am developing a web application that will be sold later on, and was wondering how to add the concept of license to it, so that I can avoid it's piracy, and it can be used for given period of time only?
You can have a centralize licence server , have a DB to check user's status , expose this thing using webservice so that any of your app can consume it.
I've seen Java enterprise tools do the usual serial number/license file thing. Worked pretty well for them. All you'd need to do is put some static code in the application that would execute when the JavaEE container loads the WAR file and have that check the serial number.

Categories