
Search In
The ToString() method, expects that the object which you invoke in your program should not be Null. If the object is taking null value,then user will get the Null Reference Exception at run time and program will not be executed completely.
To
Following function will expect a generic List and serialize into xml and make an http post request and after receiving response it will again deserialize xml into generic list:-
public customer CreateOrder(customer objCustomerRequest)
{
End to End Testing
Unlike System Testing, End-to-End Testing accepts the software framework under test as well as checks it's integration with outside/external interfaces. Thus, the name "End-to-End". The reason for End-to-End Testing is to practice
UIScrollView has a property called scrollsToTop which sets y of content offset of scrollview to zero on tapping the statusbar. But there might be situation when this functionality does not work.
According to apple documentation "The scroll-to-top ge
I want to display location (lat & lng) markers in Android google map using volley library by selecting the category.
I am not able to get individual selected item locations but I am able to get all locations markers in map. Please help in code!
Alerts are handled in selenium through the method of alert class.
WebDriver driver = new FirefoxDriver();
driver.navigate().to("http://www.rediff.com/");
driver.findElement(By.xpath("//*[@id='signin_info']/a[1]")).click();
driver.findElement(By.xpat
Hello,
I have posted one blog 2 months back - "How to Perform OpenCart To Magento Migration in 3 Easy Steps"
(http://findnerd.com/account/#url=/list/view/How-to-Perform-OpenCart-To-Magento-Migration-in-3-Easy-Steps/37424/),
 
Hello Friends, we need the session object to maintain the session in the web applications. we have to get the session object in Spring MVC by the following method:-
1:- Put the Session object with the method parameter. Session Object is declared as
Max aggregate operator is used to find the largest item from a collection.
Exapmle:-
In the below example we created a complex type collection for an Employee. This Employee collection contains EmpId, EmpName and Age. We need to find a maximum empl
Associations in Rails
Associations are an important part of each Active Records. It makes coding easier and relations clean. Lets take an example of Blog. A Blog can have many comments. So if you delete blog its associated comments also needs to be