Hello:
I am creating a WCF service that will be consumed by plain JavaScript
on the client side and some jQuery JavaScript on the client side as
well.
1) How can I implement the plain client JavaScript so that it will
invoke the WCF Service in such a way that it will retrieve a
collection of System.IO.Stream at once? Moreover, how would I iterate
through the collection that was received on the plain JavaScript side
in such a way that I can associate each of the System.IO.Stream
objects in the collection to an HTML image element?
2) Is it possible to implement the JavaScript code that uses jquery so
that it will invoke the WCF Service in such a way that it will
retrieve a collection of System.IO.Stream at once? Moreover, how would
I iterate through the collection that was received by the JavaScript
that uses jQuery in such a way that I can associate each of the
System.IO.Stream objects in the collection to an HTML image element?
/*********Start of Excerpt from the Interface Code of a WCF Service Contract*****************/ using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Activation; using System.Text; using System.ServiceModel.Web; using System.IO; using ConsoleForWCFServiceTutorial.PerlsDataContracts; using ConsoleForWCFServiceTutorial.DataAccessObjectsDAO; namespace ConsoleForWCFServiceTutorial { [ServiceContract(Namespace = "http://ConsoleForWCFServiceTutorial.CarService")] public interface ICarService { [OperationContract] [WebInvoke(Method = "GET", BodyStyle = WebMessageBodyStyle.WrappedRequest)] Stream[] getImagesList(); } } /*********End of Excerpt from the Interface Code of a WCF Service Contract*****************/
/*********Start of Excerpt of the code associated with the Class that implements the WCF Service Contract*****************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; using System.ServiceModel.Activation; using System.Configuration; using System.Data; using System.IO; using System.ComponentModel; using ConsoleForWCFServiceTutorial.PerlsDataContracts; using ConsoleForWCFServiceTutorial.DataAccessObjectsDAO; namespace ConsoleForWCFServiceTutorial { [AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.NotAllowed)] class CarService : ICarService { public Stream[] getImagesList() { List<Stream> myImagesList = new List<Stream>(); string fileName = Path.Combine("BMWpicture.jpg"); FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read); // Set the content type as image/ jpeg System.ServiceModel.Web.WebOperationContext. Current.OutgoingResponse.ContentType = "image/jpeg"; myImagesList.Add(fileStream); string fileName2 = Path.Combine("MercedesBenzpicture.jpg"); FileStream fileStream2 = new FileStream(fileName2, FileMode.Open, FileAccess.Read); // Set the content type as image/ jpeg System.ServiceModel.Web.WebOperationContext. Current.OutgoingResponse.ContentType = "image/jpeg"; myImagesList.Add(fileStream2); return myImagesList.ToArray(); } } } /*********End of Excerpt of the code associated with the Class that implements the WCF Service Contract*****************/