In Part 1 of this two-part article I discussed interoperability between .NET
and Weblogic 8.1 and issues that arise when transferring data between Web
serivces. In Part 2 I will cover some advanced issues: SOAP exception
handling, uploading binary information via Web services, and application
navigation and workflow.
SOAP Exception Handling
In non-Web Services environments, we're used to building a hierarchy of
exceptions and throwing the appropriate exception to indicate the correct
feedback to the client. For example, we can define an application exception
called "UserNotLoggedInException" (that extends System.ApplicationException)
to indicate to the caller that the application has failed because the user
isn't logged into the application properly. When the calling met... (more)
We all know that the .NET platform offers a great set of tools for building
robust Web applications. There are times, however, when as .NET developers we
need to understand how we can integrate the great features of .NET with other
platforms and technologies. We often find our clients using both .NET and
J2EE technologies successfully in their architectures.
I faced a situation such as th... (more)