Posts by Oscar Picchi • 164 points
2 posts
-
3
votes2
answers577
viewsA: What is `$. extend` and `$.fn.extend`for?
The $.extend serves to "merge" two or more objects in the first Ex: (taken from http://api.jquery.com/jquery.extend/ ) var object1 = { maça: 0, banana: { peso: 52, preço: 100 }, cereja: 97 }; var…
-
1
votes4
answers3679
viewsA: Consume values from a webservice
First you should read the wsdl created by the webservice and create an interface in your project that has access to the methods you need. For this you need (at least in this case) apache cxf. Simply…