AJAX :: Broadcast New Data Using Webservice?
Jun 8, 2010
I am working on an application just like any fast food restaurant uses for example McDonalds.
Basically, application consists of three parts.
1) Web Application # 1 to take orders (Used by the clerk(s))
2) Web Application # 2 to process orders (used by the chef back in the kitchen)
3) WebService returns new orders (with PENDING status) to Web Application # 2.
Write now, Application # 1 adds new orders to the database. Application # 2 calls the WebService to get new ordes by REFRESSHING the page again and again. Refreshing the page over and over again is the problem.
I want the WebService to automatically send new data (oredrs with PENDING status) to Web Application # 2 whenever Application #1 add new order.
Application # 1 can call WebService (sending true flag) to let it konw that something has been added so the WebService can broadcast new date to Application # 2
Here is the flow which I am trying to achieve
Application # 1 (Takes new Order)
Application # 1 then call WebService (sending true)
WebService (if true is received), send new data to WebApplication # 2, cause postback on Applicatin # 2 automatically
For Example just imagine when you walk in McDonalds
Clerk takes your order -> New order is automatically send to the Kitchen (to process order)
Here is the breakdown
Application # 1 = Clerk taking order
WebService = Mechanism which is sending new order to Kitchen
Application # 2 = Monitor in the Kitchen receiving orders.
View 6 Replies
Similar Messages:
Jun 21, 2010
I have requirment o send bulk Email to client more than 10,000 a day so howz to manage into console .NET / c# applictaion if any of Email id failure to send then application didnot stop it wil continueolsly sending email from next one
View 1 Replies
Jun 12, 2010
I know what i need but i am unsure of the way to acheive it. My idea is to broadcast live event over the internet on website. dont tell basic things like ustream or other streaming websites. I want that my sony 7 MP camera should connect to the PC and broadcast the recording live on my website
View 2 Replies
Mar 15, 2010
Or is there any simpler solution ?
View 1 Replies
Jun 25, 2010
So I have a WebMethod that I call using jQuery. The method is supposed to return a unique URL to a image file created dynamicly.
The WebMethod is called in a for loop so anywhere from 1 to 50 calls gets fired async.
The problem is that the webservice seems to be using the same instance of the object, so that it returns the same value to a couple of the requests.
[Code]....
Shouldn't the WebMethod create a new instance of the class for each call, so that all values are stored individually in memory?
[Code]....
View 3 Replies
Nov 16, 2010
My scenario is create a webservice(regional weather prediction, or currency rate), and a client application having a updatepanel and then consume that service.Now, when webservice changes its data(temperture goes up or down, rate changes)I want to ask is there any way client can aware that webservice has changed so it will update properly.
View 3 Replies
Jan 25, 2010
I'm using Webservice which will return the data from the database through datatable and I'll convert the datatable into byte array. In front end, I'll reconvert the bytearray to datatable and used ajaxloader to display it in the form.. It is dynamic loading. So, for each click, it is taking 10 seconds to retreive the data regardless of the size of the data. So, I used static datatable and I've loaded all data in that datatable in page load event. But, no reaction. It is taking only same time. Even, there is no data to retreive, the ajax loader is going on loading for 10 seconds. Problem is with Ajax or my webservice?? Plz, tell me some other idea??!!
[Code]....
View 1 Replies
Jan 19, 2011
I am using a web service to pass back search results. To do this I am using ToolkitScriptManager with a ServiceReference to my web service and calling the web service up with javascript. The javascript call looks something like this:
WebService.GetResults("search term", OnSuccessGetData, OnFail);
If the request is successful the "OnSuccessGetData" function is fired and the results are inserted into a DIV tag. Because the resulting search results can be large I wrote the service to only pass back the first 20 results on the first trip. After that I make calls again to the service to return the next 5 results and continue to do this until all the results are loaded. This all works wonderful. You can see it in action at www.lsbio.com and use the search term "human mouse". My problem is that when the user clicks on a product and then hits the 'Back' button the search results have to be fetched again from the webservice.
Is there a way to keep the search results in the DIV tag to remain as part of the page so when the user navigates away from the search page and uses the 'Back' button to navigate back the search results are still there without having to hit the webservice again?
If I didn't make myself clear enough on what I am trying to do, go ahead and test the site www.lsbio.com, use the search terms human mouse, click on a product and then hit the back button.
View 1 Replies
Feb 24, 2011
I am new to ASP.NET (2 months) and my very first assignment is to create a website for a municipality. Purchasing as much reading material as possible, I got started and after some time, I have a decent website (coded in C#) that is ready to be internally tested on the departmental webserver. The Web server is running IIS 7 and the pages were developed with Visual Studio 2010. On the main default page, I wanted to implement a slide show using the AJAXControlToolkit which I installed. I watched the ASP.net tutorial [URL] and literally coded my slide show verbatim. I try to launch my slideshow within my default.aspx page and absolutely nothing happens. The steps that I took are
1. Created a webservice (SlidesService.asmx) which generated a code behind file (SlidesService.cs).
2. I created the web method GetSlides() containing a 22 element array which I place in the code behind file.
3. Implement the ToolkitScriptManager establishing my image control.
4. Defined my Previous, Play and Next buttons.
5. Implemented my SlideShowExtender providing my SlideShowServicePath and SlideShowServiceMethod.
Assumptions: In doing all of the above, I noticed that the SlidesService.asmx file needs no code (as I placed all code within the codebehind file). The SlidesService.cs code behind file should reside in the App_Code folder whereas the the SlidesService.asmx file can remain in the root folder. No Button e.g Button_Click needs to be attached to the code behind source file. If I have conveyed my steps properly, can anyone shed some light on why when clicking the play button, nothing happens? Code is listed below.
[Code]....
SlidesService.asmx - code
<%@ WebService Language="C#" CodeBehind="~/App_Code/SlidesService.cs" Class="SlidesService" %>
View 2 Replies
Feb 2, 2010
Can I Use CascadingDropDown without WebService?
View 1 Replies
Mar 10, 2010
I am planning to use a Javascript call to a WebService to retrieve data from the database. At the moment I am using Ajax to do this. But since the Ajax is slowing down the performance of my application. I have read in some article that even though Ajax only refreshes the Update panel contents, Ajax does a full round trip to the server. What I need to know is how can I populate a Grid from data coming from a WebService via a Javascript call.
View 3 Replies
Jan 19, 2010
i have application with 2 cascading dropdownlists that got populated using web service, when a value was picked in the first one the second filled with values, now when the second one got selected i want to poulate listview with images links.
View 2 Replies
Apr 2, 2010
Iam new to webservices,Till now I did not use web service.Anybody can you give a real time example for webservice.Please it will be very useful for me.
View 3 Replies
Apr 13, 2010
This has totally spoiled my .net 4 vs2010 realease day happiness. Running Cascading dropdowns using 'webservice' asmx method. Everything worked on .3.5 and i solved the running 'code In page' method with this post. Method error 500 [URL] Thought I was sorted but seems the rules are totaly different for the 'webservice method'. For example where did ToolkitScriptManager come from Ive been using ScriptManager for years. Anyway below is the Webservice and Page code. Ive looked at and tried everything of the forum but all of it is pre .4. This is demo code, the real version has 3 dependant dropdowns and the lookups are used several times so it HAS to be a webservice. My current theroies are:
1. Permissions- dosent makes sense.
2. Something missing in web.config to enable webservices.
3. Something to do with placement of 'System.Web.Script.Services.ScriptService()>'
<%@ Page Language="VB" ValidateRequest="false" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="Default2" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]">
<%@ Register assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" tagprefix="asp" %>
<html xmlns="[URL]">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</asp:ToolkitScriptManager>
<asp:DropDownList ID="DDListManufacturer" runat="server" CssClass="ddsearch" Width="140px">
</asp:DropDownList>
<asp:CascadingDropDown ID="DDListManufacturer_CascadingDropDown" runat="server" Category="Manufacturer"
PromptText="Select a manufacturer"
ServiceMethod="WebService.GetDropDownContents"
TargetControlID="DDListManufacturer"
ServicePath="WebService.asmx">
</asp:CascadingDropDown>
</form>
</body>
</html ............................................
View 3 Replies
Feb 18, 2011
I have a webservice which i refered into my asp.net project.i instaniated the webservice and when i am calling the webservice method i am getting the following error There was a problem retrieving the data. System.Web.Services.Protocols.SoapException: Server was unable to process request.
View 5 Replies
Jul 21, 2010
After watching [URL] learning guide in accessing Web Service from JavaScript[/url] I was doing the same thing in order to test it. And found out that in my JavaScript I don't have any WebService in my IntelliSense. Such thing happens if I create WebService and WebSite either in one common solution or in the different.
View 23 Replies
Feb 17, 2011
I have am trying to implement a simple AutoComplete function yet i am having difficulty. It looks like the AutoComplete control is not even calling the method (webservice). If i load the webservice from the browser, i can see my Method, click on it, enter in the prefix, click on Invoke and it returns a SQL STRING. Below is the string the webservice returns.
<?xml version="1.0" encoding="utf-8"
?>
View 4 Replies
Nov 8, 2010
I canīt get it working , Is there anything wrong with the code?
I tested the web service and itīs working fine, but when i run it. it doesnīt pop up.
here is the webservice :
[Code]....
and here is the webForm:
[Code]....
View 8 Replies
Sep 17, 2010
I would like to use the ajax slideshow extender and getting the Image Url stored in a databaseso far my webserivice look like this..but I think im making a mistake somewhere..its not working
<WebMethod()> _
Public Function GetSlides() As AjaxControlToolkit.Slide()
Dim Connection As SqlConnection
[code]...
View 1 Replies
Jun 21, 2010
Here is aspx code. that refers Master Page.
<
asp:TextBox
ID="txtClientSearch"
CssClass="txtfld01"
Width="75%"
runat="server"></asp:TextBox
[Code]....
Now i dont understand why my Autoextender is not call the webservice. I have tried callin the webservice from button click event...it works but not using AutoExtender..
View 2 Replies
Feb 24, 2011
I have a textbox with the autocompleteextender in VS2010 that is referencing a webservice. However, nothing I seem to do makes this work as no values are returned when I begin typing in the textbox. When I view the webservice in my browser and invoke it, it returns values so I know that my webservice works. Code below.
<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</asp:ToolkitScriptManager>
<asp:TextBox ID="Task1" runat="server" CssClass="CENTER" Width="160px"></asp:TextBox>
[code]...
View 1 Replies
Oct 15, 2010
I need to pass a customer id to get some data back for a customer from a webservice. I can't figure out how to get to the webservice, I have a breakpoint set in the webmethod but it's not being hit and the alert box is not popping up either. For a test I am just trying to show some value from the returned data in an alert box. Note I am just hard coding the customer id of 1001. The webmethod takes a parameter of string customerid.
[Code]....
Does some one know what's missing or how to debug this issue?
View 3 Replies
May 9, 2010
i have a problem in this code
[Code]....
How I can select a value from RadioButtonList which filled from a webservice?
View 3 Replies
May 21, 2010
if updating a session value from within a webmethod call made from jquery would be able to keep my session alive?
JS:
$.ajax({
type: "POST",
url: "MyWebService.asmx/Keepalive",
async: true, [code]....
View 1 Replies
Jan 28, 2011
I'm calling a webservice using jQuery with .ajaxHere are the data parameters for the call:
var parameters = "{'Titre':'" + Titre + "','Description':'" + Description + "','Contact':'" + Contact + "','VilleId':'" + VilleId + "','QuartierId':'" + QuartierId + "','UserId':'" + UserId + "'}";
It works fine. But when parameters Description or Titre contain the ' character , no call!!!
Does anyone have an idea how can i make it work even with apostrophe character in Titre and/or Description?
View 4 Replies