or
Sign in to turn on 1-Click ordering.
 
 
Express Checkout with PayPhrase
What's this? | Create PayPhrase
More Buying Choices
35 used & new from $0.01

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.
 
  

Web Services in Finance (Hardcover)

~ (Author)
3.3 out of 5 stars  See all reviews (3 customer reviews)

Price: $79.99 & this item ships for FREE with Super Saver Shipping. Details
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
Usually ships within 1 to 2 months.
Ships from and sold by Amazon.com. Gift-wrap available.

24 new from $0.01 11 used from $0.83

Editorial Reviews

Product Description

(<i>Web Services in Finance</i>) does a very good job at capturing the state of the industry and Web Services at this point and time and is a very good overview of Web Services for managers.</a></p> </blockquote> <p id="quoteAuthor">&#8212; Guy Barrette, Universal Thread Magazine</p></div>

<p>Many times, web services standards do not explicitly address core issues specific to the financial industry&emdash;which makes it difficult to implement standards-compliant systems. But <i> Web Services in Finance </i> will bridge the gap in standards awareness. And you will acquire the skills to develop secure applications quickly. <p>

If you are a .NET or J2EE developer working in the financial industry, currently migrating applications to become Web services, or writing new Web services, then this book is your ideal companion! The authors thoroughly discuss crucial topics like data representation, messaging, security, privacy, management, monitoring, and more. What's more: the provided examples and API reviews will help you swiftly reach your goals.



About the Author

Dr. Paul Watters is a senior lecturer in computer science at Macquarie University. His books include <i> Solaris 9: The Complete Reference</i>, <i>Solaris 9 Administration: A Beginner’s Guide</i>, <i>Sun Certified Solaris 9 System and Network Administrator All-In-One Exam Guide</i>, <i>Solaris 8: The Complete Reference</i>, <i>Solaris Administration: A Beginner’s Guide</i>, <i>Sun Certified Solaris 8 System Administrator All-In-One Exam Guide</i>, <i>Sun Certified Solaris 8 System Administrator All-In-One Exam Guide</i>, <i>Solaris 8 Administrator’s Guide</i>, <i>Integrated Test Design and Automation: Using the Testframe Method</i> (with Hans Buwalda, Dennis Janssen, and Iris Pinkster), <i> Web Services Security</i> (with Mark O'Neill, Phillip Hallam-Baker, Sean MacCann, Mike Shema, Ed Simon, and Andrew White); and <i> Visual C++ .NET: Your Visual Blueprint</i> 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.com Sales Rank: #1,545,248 in Books (See Bestsellers in Books)

More About the Author

Paul A. Watters
Discover books, learn about writers, read author blogs, and more.

Visit Amazon's Paul A. Watters Page

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 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
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.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
2 of 4 people found the following review helpful:
3.0 out of 5 stars minimise bandwidth usage, November 16, 2004
By W Boudville (Terra, Sol 3) - See all my reviews
(TOP 10 REVIEWER)    (REAL NAME)      
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.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
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
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.

Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)


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



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

Product Information from the Amapedia Community

Beta (What's this?)


Look for Similar Items by Category


Look for Similar Items by Subject

 

Feedback

If you need help or have a question for Customer Service, contact us.
 Would you like to update product info or give feedback on images?
Is there any other feedback you would like to provide?

Your comments can help make our site better for everyone.


Your Recent History

 (What's this?)

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.