Thursday 13 December 2012

Features OF Anthem SMS Secure Application

Anthem SMS Secure Application
Features OF Anthem SMS Secure Aapplication

THIS APPLICATION HAS ACCESS TO THE FOLLOWING:




YOUR MESSAGES

READ YOUR TEXT MESSAGES (SMS OR MMS)


Allows the app to read SMS Messages stored on your tablet or SIM card. This allows the app to read all SMS messages, regardless of content or confidentiality. Allows the app to read SMS messages stored on your phone or SIM card. This allows the app to read all SMS Messages, regardless of content or confidentiality.

Android app on Google Play anthem sms backup restore

EDIT YOUR TEXT MESSAGES (SMS OR MMS)


Allows the app to write to SMS messages stored on your tablet or SIM card. Malicious apps may delete your messages. Allows the app to write to SMS messages stored on your phone or SIM card. Malicious apps may delete your messages.

NETWORK COMMUNICATION


FULL NETWORK ACCESS


Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet.

YOUR PERSONAL INFORMATION


READ YOUR CONTACTS
Allows the app to read data about your contacts stored on your tablet, including the frequency with which you've called, emailed, or communicated in other ways with specific individuals. This permission allows apps to save your contact data, and malicious apps may share contact data without your knowledge. Allows the app to read data about your contacts stored on your phone, including the frequency with which you've called, emailed, or communicated in other ways with specific individuals. This permission allows apps to save your contact data, and malicious apps may share contact data without your knowledge.

STORAGE


MODIFY OR DELETE THE CONTENTS OF YOUR USB STORAGE MODIFY OR DELETE THE CONTENTS OF YOUR SD CARD Allows the app to write to the USB storage. Allows the app to write to the SD card.

Tuesday 11 December 2012

Anthem SMS Secure Backup

Secure Your SMS Backup with just install Android application from your phone. Restore your sms backup with Anthem SMS secure Backup. Now secure you SMS with a backup & restore tool on android smart phones, Anthem SMS Secure app is available on google play.


Those days are gone when you were very conscience about your Sms Backup you were keep your SMS very safely into your inbox, once your messages deleted you cant do nothing. But now days time is change thanks to Anthem SMS secure application you just need to install and you can secure your SMS backup within moment.

Description
SMS backup & restore tool Features:


  • Easy to use
  • Support restore, delete, view and delete backup.
  • 1-click operation
  • You can mail your all sms backup.
  • You can View your backup of
  • Anthem which you want to restore.
  • if you change your mobile then you can also restore all messages back on your mobile.
  • You can choose the location for store sms backup.
  • backup creates ".xml" file which You can move from one mobile to other mobile easily via SD card.
  • It will work offline.

Wednesday 7 November 2012

ASP.net 1.1 web service call via Javascript

Working on legacy code is like visiting an Old Fort, its strong robust for the most part, but under maintained and maybe not practice  with current times but you just cannot wish it away, especially if there is money involved. I worked on something  that I had created in 2005 and have been working on it off and on but this was something different, removing post back from asp.net form. It would be a simple task for any project in ASP.net 2.0  and upwards but in ASP.net 1.1 it different, you don't have any native support for AJAX, so you need to use custom Java script to apply ajax. The second part of my problem was that there was lot of DB interactions so I needed to use a web service that was built in ASP.net Development 1.1 and to had no native support of AJAX or JS while I was successful calling "Hello world " method without parameters but sending parameters was not working while I digged around I could not find a suitable solution. I finally came to the solution of using the native MSXML2 activex object as native call method with passing SOAP envelop. 

We understand that it not a universal solution but with limitations we had and since we where aware of the fact the legacy solution was a IE only solution so we concluded it to be the best option available, we are open to any new solutions that anybody out there might have or come across, please do share with us.

Sample Code


var xmlObj = new ActiveXObject("Msxml2.DOMDocument") ;
// Creating Soap Envelope  as string    
var sXml  = "<?xml version=\"1.0\" ?>" ;
                sXml += "<soap:Envelope "
                sXml += "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" " ;
                sXml += "xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" " ;
                sXml += "xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">" ;
                sXml += "<soap:Body>" ;
                sXml += "<SubmitResult xmlns=\"http://tempuri.org/\">" ; // Method Reference
                sXml = sXml + "<ID>" + vID  + "</SRID>" ; // Parameter values being set vID contains a valid Id
                sXml = sXml + "<Result>" + vResult  + "</Result>" ; // vResult is valid result to be sent to database
                sXml += "</SubmitResult></soap:Body></soap:Envelope>"
       
  // Try to parse the XML string into DOM object
                xmlObj.loadXML(sXml) ;
               
  //To see the validated XML string is well-formed
               
                var xmlHTTP = new ActiveXObject("Msxml2.XMLHTTP") ;
                xmlHTTP.Open ( "Post", serviceUrl , false) ;
                xmlHTTP.setRequestHeader("SOAPAction", "http://tempuri.org/SubmitResult") ;
                xmlHTTP.setRequestHeader("Content-Type", "text/xml; charset=utf-8" ) ;
                xmlHTTP.Send(xmlObj.xml) ;
                // Getting Result              
                var xmlResponse = xmlHTTP.responseXML ;
                if(xmlResponse != null)
               {
                    alert('Data submitted.');
               }
 

This worked well for us and client accepted the solution, if there are any other ways to do the same please do share with us, we are always willing to learn. 

 How to change tooltip background color for eclipse in ubantu?

1) Install "gnome color chooser".

2) open it.

3)Go to Specific  Tooltips and put black for foreground and yellow for background.

 

How to get code from a published ASP.Net build where we don't have source code?

If you have ever lost or misplaced your source code for an ASP.Net web application, you might wonder if there is a way to recover it from th...