Showing posts with label web services. Show all posts
Showing posts with label web services. Show all posts

Tell your story with video to boost your business


Add videos in website

Adding videos to website takes your business to a whole new level. 
There are many ways to use videos on internet to boost your business and interact with customers. 

In some circumstances, you will find that browsers are NOT playing videos correctly.

This happens when web client or specific browser can not determine MIME type to use for video.

HOW TO RECTIFY ERROR TO MAKE VIDEO PLAYING ?

Open your favourite text editor, e.g. Notepad on windows
Save as it with name .htaccess
Add following lines in it:

- AddType video/ogg .ogv
- AddType video/webm .MOV
- AddType video/webm .AVI
- AddType video/mp4 .mp4
- AddType video/webm .webm

Notice that there is one space between dot and previous word.

You should check format of video that is NOT working and add related extension here.

Put this file in the ROOT of your website.

Try playing the video now—hopefully, it will work this time.

Bliss Web Solution Pvt. Ltd. is a top-notch off-shore web development center with
specialized resources on #HTML, #CSS,#JavaScript and PHP platform in its entirety.

For any website security related issues, feel free to contact us at:
http://www.blisswebsolution.com/



Website Design and Website Development services company

http://www.blisswebsolution.com/web-development-and-designing-services-company.html 
In the year of 2013, 4,00,00,000 #credit and #debit card were leaked, on the systems of one of top technology
companies, for the matter of confidentiality, we can not reveal the name here.
Web designing team must NOT adopt agnostic approach to information security dimension when making website.
Bottom line is that if credentials are hacked, customer is responsible for catastrophic event.
But for built-in data breaches which are hidden from user, company is responsible to pay.
Few hackings about web security to take care for any mobile web application are:
  • Cross site script attacks
  • #HTML or front-end security
  • #PHP or back-end security
  • #SQL injections
  • Session and state management
  • #DDOS leaks
etc.
Although small vendors can not afford dedicated experts for security, testers may execute regression or unit tests to avoid major loopholes.
To fix website or mobile app related complex problems, feel free to contact us at: http://www.blisswebsolution.com/web-development-and-designing-services-company.html


Soap vs Rest website services

http://www.blisswebsolution.com/web-development-and-designing-services-company.html
Web services are increasingly becoming popular these days because of their usefulness.
When it comes to truly cross software communication, only web services come in spare.
And #XML is the most common language for electronic communications.
Let us try our hands on it.
We are converting XML document to PHP array with help of web services, as follows.
namespace Application\Parse;
use SimpleXMLIterator;
use SimpleXMLElement;
$xml = simplexml_load_string($xml
string, "SimpleXMLElement", LIBXML_NOCDATA);
$json = json_encode($xml);
$array = json_decode($json,TRUE);
Just take care that, in XML tags, numbers alone are NOT allowed, some text should be there in front of numbers.
Otherwise it may create errors during conversion.
Similarly, reverse conversion from PHP array to XML document is also few lines of code as given below.
function to_xml(SimpleXMLElement $object, array $data)
{
foreach ($data as $key => $value) {
if (is_array($value)) {
$new_object = $object->addChild($key);
to_xml($new_object, $value);
} else {
$object->addChild($key, $value);
}
}
}
$xml = new SimpleXMLElement('<rootTag
/>');
to_xml($xml, $my_array)
And then, print it to verify
print $xml->asXML();
With help of web services, we can
- Create a #REST_client
- Create a #REST_server
- Create a #SOAP_client
- Create a #SOAP_server
To fix website or mobile app related complex problems, feel free to contact us at: http://www.blisswebsolution.com/web-development-and-designing-services-company.html