11.07.2015 Views

y - Net Developer

y - Net Developer

y - Net Developer

SHOW MORE
SHOW LESS
  • No tags were found...

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

CHAPTER 11 ■ WORKING WITH DATA 363ramrameshreddy.blog.comListing 11-16. QuoteService Concrete Implementationpublic class QuoteService : IQuickReturnQuoteService{public StockQuote[] GetPortfolio(string[] portfolioTickers){}}ArrayList tickers = new ArrayList();foreach (string stockTicker in portfolioTickers){StockQuote stockQuote = new StockQuote(stockTicker);tickers.Add(stockQuote);}return (StockQuote[])tickers.ToArray(typeof(StockQuote));public StockQuote GetQuote(string ticker){StockQuote quote = new StockQuote(ticker);}return quote;You can access the two endpoints exposed by the service via the http://localhost/wcf/QuickReturnQuoteService.svc and http://localhost/wcf/QuickReturnQuoteService.svc/mexURLs. Listing 11-17 and Listing 11-18 show the .svc file and the Web.config files. Note for aproduction system, it is recommended you switch off the debug options; this is enabled onlyfor development purposes.Listing 11-17. QuickReturnQuoteService.svc FileListing 11-18. Web.configramrameshreddyramrameshreddy

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!