Monday 13 October 2014

Firefox User-agent

You can find your agent from www.useragentstring.com

firefox :



chrome :






Jenkins Different Port




Use the following command at command prompt:

java -jar jenkins.war --httpPort=9090
 
If you want to use https use the following command:

java -jar jenkins.war --httpsPort=9090

Tuesday 7 October 2014

Between Rest & SOAP

 
 
 
 
 
 
1) REST is more simple and easy to use than SOAP
2) REST uses HTTP protocol for producing or consuming web services while SOAP uses XML.
3) REST is lightweight as compared to SOAP and preferred choice in mobile devices and PDA's.
4) REST supports different format like text, JSON and XML while SOAP only support XML.
5) REST web services call can be cached to improve performance.