• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Exception Handling in API Bulk Call

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello,

I have created a Web Service and I am exposing various methods at the client-end. I have provided custimozed SOAP API Exception to be thrown at the client-end in the form of code, actor, text etc. When ever any method/call is failed, an excpetion is raised.

But if a call is returning 100 values in one method (bulk call) and an exception is being raised when 90 values have been returned to the client, then how to handle the exception as I want that 90 values fetched should be returned to the client. Since in a normal scenario the values fetched does not get retained at the client-end till the method is not executed completely.

I want to retain those values which were fetched before the exception has been raised.

For e.g: The method is getting the 100 names from a database and after 90 names have been fetched, some problem occurs on the database server. The client will receive the exception as "Internal Error has occurred", but it should also get the 90 values fethced from the server.

Any help will be appreciated.

Kindly suggest.

Thanks & Regards,
Kapil
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic