or
Sign in to turn on 1-Click ordering.
or
Amazon Prime Free Trial required. Sign up when you check out. Learn More
More Buying Choices
Have one to sell? Sell yours here
Web Services in Finance
 
See larger image
 
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

Web Services in Finance [Hardcover]

Paul A. Watters (Author)
3.3 out of 5 stars  See all reviews (3 customer reviews)

List Price: $79.99
Price: $64.12 & this item ships for FREE with Super Saver Shipping. Details
You Save: $15.87 (20%)
  Special Offers Available
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Only 1 left in stock--order soon (more on the way).
Want it delivered Thursday, February 2? Choose One-Day Shipping at checkout. Details
Textbook Student FREE Two-Day Shipping for students on millions of items. Learn more

Formats

Amazon Price New from Used from
Hardcover $64.12  

Book Description

1590594355 978-1590594353 November 2, 2004 1

If you are a .NET or J2EE developer working in the financial industry, and you are currently migrating applications to become Web Services, or writing new Web Services, then this book is your ideal companion. Reading it, you will acquire necessary skills to develop secure applications quickly. All of the main topics of concern to the developer are thoroughly dissected and discussed: Data representation, messaging, security, privacy, management, monitoring, and much more. And with the provided examples and API reviews, you will progress swiftly towards your goals.


Special Offers and Product Promotions

  • Buy $50 in qualifying physical textbooks, get $5 in Amazon MP3 Credit. Here's how (restrictions apply)

Editorial Reviews

About the Author

Dr. Paul Watters is a senior lecturer in computer science at Macquarie University in Sydney, Australia. His books include Solaris 9: The Complete Reference, Solaris 9 Administration: A Beginner's Guide, Sun Certified Solaris 9 System and Network Administrator All-In-One Exam Guide, Solaris 8: The Complete Reference, Solaris Administration: A Beginner's Guide, Sun Certified Solaris 8 System Administrator All-In-One Exam Guide, Sun Certified Solaris 8 System Administrator All-In-One Exam Guide, Solaris 8 Administrator's Guide, Integrated Test Design and Automation: Using the Testframe Method (with Hans Buwalda, Dennis Janssen, and Iris Pinkster), Web Services Security (with Mark O'Neill, Phillip Hallam-Baker, Sean MacCann, Mike Shema, Ed Simon, and Andrew White); and Visual C++ .NET: Your Visual Blueprint with Jeff Cogswell.

Product Details

  • Hardcover: 256 pages
  • Publisher: Apress; 1 edition (November 2, 2004)
  • Language: English
  • ISBN-10: 1590594355
  • ISBN-13: 978-1590594353
  • Product Dimensions: 9.2 x 7.1 x 0.9 inches
  • Shipping Weight: 1.4 pounds (View shipping rates and policies)
  • Average Customer Review: 3.3 out of 5 stars  See all reviews (3 customer reviews)
  • Amazon Best Sellers Rank: #2,380,758 in Books (See Top 100 in Books)

More About the Author

My philosophy in writing books has been strongly influenced by my college teaching experience in information technology and software engineering - clear descriptions of basic principles, philosophy and motivation for using a specific technology, and then clear examples of how to use it in practice. In a book with limited pages, it's not always possible to cover every topic, or to provide all information on a specific topic in the detail required to perform a particular task. I see the role of trade books as "breadth first, depth second" - these books provide orientation, but if you need intimate detail on a specific application, function or method, then you will almost certainly need to consult vendor documentation. For example, the Sun administration reference collection for Solaris contains many thousands of pages of detail, which can be daunting at first, but very useful in the long term.

 

Customer Reviews

3 Reviews
5 star:
 (1)
4 star:    (0)
3 star:
 (1)
2 star:
 (1)
1 star:    (0)
 
 
 
 
 
Average Customer Review
3.3 out of 5 stars (3 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

4 of 4 people found the following review helpful:
2.0 out of 5 stars General web services, little on finance specifics, November 19, 2004
This review is from: Web Services in Finance (Hardcover)
Given the specificity of the title I had expected to see financial web services standards covered, as well as regulatory impact of Sarbanes Oaxley and other measures. But there was little of that. What is there instead is a fairly high level walkthrough of web services standards that is reasonable well written.

This book acts as a field guide of sorts, illuminating a path but not providing enough depth to serve as a guide for implementation. Illustrations were under-used and the small amounts of code that were provided weren't given much in the way of annotation.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 4 people found the following review helpful:
3.0 out of 5 stars minimise bandwidth usage, November 16, 2004
This review is from: Web Services in Finance (Hardcover)
Watters suggests that developers should build applications that use relatively less CPU and relatively more bandwidth, to keep the network busy. He gives an example where a task takes 10 minutes to compute 1Gb of data and then takes 1 second to transmit it. So that CPU only uses its network for 1 second out of 600 seconds. He sees this as undesirable.

On the contrary. The example shows an excellent optimisation of computation versus bandwidth. You WANT this situation. Also, if you are coding that application, and you can change it so that out of every 10 minutes of computation, it takes only 0.5 seconds to transmit that data, then you should do so. That is an improvement.

In the example cited, the network is only using 0.16% of its capacity. "Idleness of 99.84% is not effective resource utilisation". He is quite correct about that. But wrong to suggest that therefore there is something wrong with that application. Rather, this lets many other computers, running instances of this application or other applications, share the network. In fact, purely from the vantage point of this application, it is good, because it helps the application scale to many instances of it on the same network.

Plus, there is also the issue of latency. Even if the application puts out data at 1Gb/s, that data takes time to reach its destination. Even at the speed of light, this gives rise to times that are often long compared to those times for onboard computation on modern CPUs. Notice also that in many realistic cases, the data has to pass through switches and routers. Adds to the latency. Furthermore, the application would typically expect a reply from where ever it is sending the data so. More delays.

Watters gives his example in the context of quoting George Gilder's law about bandwidth tripling every year. Gilder is famous for saying this, and also saying that bandwidth is effectively free and infinite (or words to that effect). But this is often misunderstood by others, who ignore latency.

All this goes to the core of the book. Web Services are fundamentally a distributed computation, often on machines at different companies, possibly separated by large distances. If you use this book to design a Web Service, it still behooves you to minimise the sizes of packets going on the net, between the different parties. And also to minimise the occasions (frequencies) on which these packets need to be sent. Both factors reduce the overall bandwidth usage and latency. Helps the scaling of your application.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


0 of 2 people found the following review helpful:
5.0 out of 5 stars Practical approach to developing Web Services, August 1, 2005
By 
ART SEDIGHI (Old Bethpage, NY United States) - See all my reviews
This review is from: Web Services in Finance (Hardcover)
Dr. Watters takes a practical approach at developing Web Services application - rather than theoretical conceptual approach to the topic. He approached the topic from both the J2EE and .NET programmer's point of view, and provides examples throughout the text that demonstrates both A) strengths and weaknesses of each platform for developing Web services, B) broad and yet finance-industry focused application of Web services. Examples demonstrated throughout the text are easy to follow and relate to. One example that is referred to often in the text related to checking balance of a band account and a more complicated stock trading application which the author used to demonstrate WDSL and UDDI examples.

I had read a number of books on SOA and Web services in general, but I found the "how-to" approach of this book very helpful. Not that the author does not cover the basics of Web services, but he does so with demonstrating the concepts thru code samples and workable programs throughout the chapters. Background information on how and why Web services fit into the finance industry start the book - followed by an introduction to why the current systems such as CORBA and various MOM's are not doing the job right now. He follows up with the basics of data representation: XML, DTD and XML Schema. These topics are covered very briefly, and can be skipped over.

Messaging with SOAP is an essential part of Web services. All other protocols and layers rest atop of SOAP - and messaging. Two subtopics are worth highlighting: SOAP binding with HTTP and the available software packages in .NET and Java. Later in the text, the author discusses other SOAP binding protocols such as SMTP, POP, JavaMail and IMAP. WSDL is needed to define the endpoints that represent services. Examples from the SOAP chapter are expanded to take into account WSDL and UDDI, in the chapter that follows.

Security is an important topic and much more so in the finance industry. Authentication, Authorization, Secrecy and trust are some of the requirements that Web services security protocols need to fulfill. The problem with security standard is that there are too many of them: 7 protocols that cover the security aspects of Web services to be exact. The author covers these topics as they pertain to the finance industry and follows each discussion with the appropriate example.

In about 200 or so pages, Paul covers the topic of Web services quite well. His examples are applicable to the finance industry and are very easy to follow. Even if you have read other books on Wed services, I highly recommend this book to you as it will make a very good edition to your book collection.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Only search this product's reviews



Tag this product

 (What's this?)
Think of a tag as a keyword or label you consider is strongly related to this product.
Tags will help all customers organize and find favorite items.
Your tags: Add your first tag
 

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums


Listmania!


Create a Listmania! list

So You'd Like to...


Create a guide


Look for Similar Items by Category


Look for Similar Items by Subject