It seems that the way of posting to your wall or friends wall has change. Can anyone understand how you can do it?
Changed since when? Facebook seems to change things every quarter. Some of the latest ways are using the Graph API: http://developers.facebook.com/docs/reference/dialogs/feed/
or using the javascript SDK and the FB.ui method: http://developers.facebook.com/docs/reference/javascript/FB.ui/
FB.ui({ method:'feed', to:1234567890123, name:'Check this out', link:'http://link.com', description:'very funny, a must see' }, function(response) { //log response } )
You just go to your friend's page and use the normal 'Share / Write something' functionality - it will appear on your friend's wall.
Changed since when? Facebook seems to change things every quarter. Some of the latest ways are using the Graph API: http://developers.facebook.com/docs/reference/dialogs/feed/
or using the javascript SDK and the FB.ui method: http://developers.facebook.com/docs/reference/javascript/FB.ui/