Wednesday, 17 February 2010

10 Most useful iPhone Dev tips (Part 2)

Share
1st part talks about coding, testing, and debugging. You can find it here: 10 Most useful iPhone Dev tips (Part 1).

2nd part talks about Interface Builder, jailbreaking iPhone, Cydia repository, code signing, and uploading your own applications to your iPhone.

Tuesday, 16 February 2010

10 Most useful iPhone Dev tips (Part 1)

Share
Today I publish Most useful iPhone Dev tips (Part 1).

1st part talks about coding, testing, and debugging tips.

Next part will contain tips on Interface Builder, code signing, jailbreaking iPhones, and installing your own applications.

Enjoy!

Friday, 12 February 2010

Preparing for SCDJWS Part 21: JAX-WS handlers

Share
JAX-WS handlers are message interceptors which can be easily plugged in to the JAX-WS runtime. What for?

For example to add WS-Addressing, XML Digital Signature and/or XML Encryption (see this post: Preparing for SCDJWS Part 18: XML Digital Signature and XML Encryption), or any other additional processing of messages (business or not).

JAX-WS defines two types of handlers: logical (only payload is available to handler) and protocol (complete SOAP message is available to handler).

Rule of a thumb:
When the message is outbound first logical handlers are applied then protocol ones.
When the message is inbound first the protocol handlers are applied and then logical ones.

Let's get to examples.

Wednesday, 10 February 2010

Preparing for SCDJWS Part 20: XML Processing APIs: SAX, StAX, DOM, XSLT, and JAXB

Share
The XML Processing APIs are part of Section 9: Developing Web Services of SCDJWS exam objectives.

Let's get started.

Tuesday, 9 February 2010

Getting started with iPhone development

Share
Currently I'm doing R&D for iPhone, iPod, and, in near future, iPad.

In today's post I give you some tips on getting started with iPhone development.

Friday, 5 February 2010

Preparing for SCDJWS Part 19: Security oriented initiatives and standards

Share
Today's post is a very short one and includes a set of links to security oriented initiatives and standards.

Let's start.