yesterday is history..., tomorrow is a mystery..., today is a gift... that's why it's called Present.
Augmented Reality Apps on IPhone
Get link
Facebook
X
Pinterest
Email
Other Apps
-
This is simply amazing. It's like you'll never be lost or none of the places around the world would be unknown to you. Travelling around the world would be so enjoyable with these apps.
While using JAXB to unmarshall objects from a given XML, a very common problem might occur which is the type casting of the unmarshalled object. For instance, for the following code: JAXBContext jaxbContext = JAXBContext.newInstance("user.jaxb"); Unmarshaller unmarshaller = jaxbContext.createUnmarshaller(); user.jaxb.Type myType = (user.jaxb.Type) unmarshaller.unmarshal(new File("myXML.xml")); For the above code, the error: Exception in thread "main" java.lang.ClassCastException: javax.xml.bind.JAXBElement cannot be cast to user.jaxb.Type might occur. The type of the object returned by the unmarshaller is JAXBElement and trying to typecast it to your resepective type directly causes the classcastexecption, whereas, if you get the value of the returned JAXBElement object by calling the .getValue( ) method, and then do the type casting on this object to your respective type, the problem is solved, as follows: user.jaxb.Type myType = (user.jaxb.Type)...
Alright, I didn't have a very good feeling after the initial phone interview. So, I'd thought I didn't make it. The reason being, I was feeling that I didn't give correct and complete answers to all of the questions as I wrote in my other blog post regarding the first interview. What was interesting though, was that the interviewer was never looking for the correct answer, because there wasn't one. What he was looking for was to see my thinking process progress, and how do I respond at problems, which I believe, I did well in during the initial interview. So, three days later I got an email from the Microsoft recruiter, stating "Congratulations, Microsoft wants you to fly out to Seattle for an in person interview". I was definitely excited seeing that email, because I hadn't been expecting it, but this definitely gave me an idea of how to prepare for the interview and what would be going through the minds of the interviewers at the Microsoft Headq...
I have tried to summarize a bunch of J2EE Projects which I completed in my graduate level course Component Based Software Design . You can view the detailed report by clicking J2EE/Component Based Software Design Projects . This document contains detail description of five projects implemented in the Component Based Software Design Graduate level course at George Mason University. Each project is the implementation of an Airline Reservation System but with some new functionality and new design decisions. The following J2EE projects were developed for an Airline Reservation System with different technologies to support travel agent and airline HQ functionalities i.e. adding an airline, searching for reservation, reserving a seat etc. JBoss Application server and Oracle10g Database were used. A Java Swing application developed using RMI and JavaBeans to provide the above fun...
Comments