Skip to main content

Good Bye 2013 !!!


 It was really a one of best year which I was able to bring my life a step ahead.There were times very challenging,cheerful,full of happiness and even with bit of sad.But still I do really love each and every moment of passed year as I was able to get a lot of  experiences and fulfill some of my life-time dreams,which I never thought I will get a chance.

The most precious opportunity I was got last year is step into my one from both ever dreamed country..FRANCE! :) We were there for around 1.5 weeks and  of course it was an official visit.But once we completed our job successfully,was able to visit my dreamed places as;
Eiffel Tower,Louvre Museum and  more nice places and was able to meet really nice people from there..Merci Beaucoup! for WSO2 to give this chance for me.. 







Then,not to forgot,the most challenging experience of my life ->Survive in a middle of really busy state[San Fransisco] in USA alone for one and half month! It was really a challenging and a memorable stay.It was mine first cal train experience without having navigator.It was mine first experience of figuring out how to find the way to staying apartment with only from road signals,without having any digital equipments ;) It was mine first experience of vising all the gardens,roads,and nice places to visit by figuring out by my own! And importantly it was mine first experience of such a long stay for an official visit.




























Next next was buying a land from my own! This was a dream in my mind for a quite a long time,but couldn't able to achieve it.Finally I was lucky enough to fulfill my dream.Now my parents already started planting in that land  with many many fruits,vegetables :)and with the start of this December,we already have got the first set of vegetables and fruits for our meal from which we planted there :) 



 And  for the second time,I was there in USA for five weeks in last October and was able to discover SF state more.The interesting part of this stay is could able to join a cruise in Bay Area and watch Golden Gate Bridge from sea.And additionally,was got the chance to walk in Golden Gate Bridge,watched the movie Gravity and able to meet few new friends.

The most important lession I learnt in 2013 was how to survive by my own foot! And I believe I could manage it.
Thanks a lot everyone who encourage me and helped me from various ways. 
Good Bye 2013 which had so much joyful and challenging memories! And warmly welcome 2014!






Comments

Popular posts from this blog

Convert an InputStream to XML

For that we can use DocumentBuilder class in java. By using the method parse(InputStream) ; A new DOM Document object will return. InputStream input; DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder parser = factory.newDocumentBuilder(); Document dc= parser.parse(input); In the above code segment,by using the created Document object,the corresponding XML file for the inputStream can be accessed. References: http://www.w3schools.com/dom/dom_intro.asp http:// download.oracle.com/javase/1.4.2/docs/api/javax/xml/parsers/DocumentBuilder.html

CORS support from WSO2 API Manager 2.0.0

Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources  on a web page to be requested from another domain outside the domain from which the first restricted resource was served. For example, an HTML page of a web application served from http://domain-a.com makes an <img src >  request for a different domain as 'domain-b.com' to get an image via an API request.  For security reasons, browsers restrict cross-origin HTTP requests initiated from within scripts as in above example and only allows to make HTTP requests to its own domain. To avoid this limitation modern browsers have been used CORS standard to allow cross domain requests. Modern browsers use CORS in an API container - such as  XMLHttpRequest  or Fetch - to mitigate risks of cross-origin HTTP requests.Thing to  note is it's not only sufficient that the browsers handle client side of cross-origin sharing,but also the servers from which these resources getting need to handl

[WSO2 AM] APIStore User Signup as an approval process

In previous versions of WSO2 APIManager before 1.6.0, it was allowed any user who's accessible the running APIStore come and register to the app.But there will be requirement like,without allowing any user to signup by him/her self alone,first get an approve by a privileged user and then allow to complete app registration.Same requirement can be apply to application creation and subscription creation as well.To fulfill that,we have introduced workflow extension support for  WSO2 APIManager  and you can find the introductory post on this feature from my previous blog post on " workflow-extentions-with-wso2-am-160 " . From this blog-post,I'll explain how to achieve simple workflow integration with default shipped resources with  WSO2 APIManager 1.6.0 and WSO2 Business Process Server 3.1.0 with targeting "user-signup" process. Steps First download the WSO2 APIManager 1.6.0[AM] binary pack from product download page . Extract it and navigate to