MVC :: How To Use Web Service In Application
Aug 1, 2010
I am trying to use a Web Service in an MVC application to fetch data from out SaaS system. The data could be client names and codes, financial data, etc.
The data will be used in views and also in application logic. eg. the customer/client data received will be used to populate list boxes on more than one view in the MVC application.
- I thought about using Cache API to store data from the Web Service, since there are thousands of records and having a sequential web service call will keep the user waiting for some time.
But the caching mechanism seems to have a maintianence overhead.
- Another solution could be to let the web service fetch the data at certain time during the day and store it into physical tables in the database.
I used the Async Controller and the actions to connect to the web service and do the job in background. The Aync and Complete action methods are able to save the data retrieved from the Web Service.
- My confusion that how should I let the Web Service be called automatically once or twice everyday and refresh the data in the tables. Can the action methods of the Async controller be called automatically with no intervention?
View 3 Replies
Similar Messages:
Feb 7, 2011
How do I add the WCF service built using VS2010 as a service reference to a Winforms app which is written in VB6?
View 1 Replies
Jun 16, 2010
I have two applications(A,B) both are developed in .NET3.5 and used LDAP services.Application-A in one screen we are fetching users with role "project Leads" and it is taking 10 min time
Application-B in login screen we are checking user is authenticated or not and it is taking 20 sec
Both the applications are using the same service then way there is a time span problem. Please suggest me what can I do to improve performance of application A?
View 3 Replies
Jul 7, 2010
we are experiencing big difficulties in the configuration of ASP.Net state service and II7. The service seems not working correctly because when the application pools recycles the applicatio loose the session.If we try the same configuration in IIS6 it works correcly.What is the correct way to configure the aspnet session state service in iis7?
View 2 Replies
Jan 5, 2011
I have some common dlls that are referenced by both a windows service application and a asp.net web application. I don't want to make separate copies of the dlls and I also don't want to put those dlls into GAC. I try to put that service application under the same root folder as the web application so that they can share the same bin folder. I am not quite sure if this will cause any problems? I did find the web application had random session timeout, but not very often. Not sure if it was caused by the shared dlls.
View 1 Replies
Feb 10, 2010
I have a VS2K8 solution with a web app and a WCF Service App. In my web app I've added the service reference and can get to the service in the service app from code behind:
WebTest.ServiceReference1.Service1Client prox = new
WebTest.ServiceReference1.Service1Client("WSHttpBinding_IService1");
fromStandAlone.InnerHtml = prox.GetData(9);
prox.Close();
how to add an AJAX Enabled WCF service to the service app and how to access it from the web app?
View 4 Replies
Aug 31, 2010
Is it possible to have a web Service and Website in the same application. The web service would be [URL] and website [URL] Both would share the same code for logic and data access
View 8 Replies
Sep 13, 2010
I wounder if there are some differencences when creating a wcf serivce to a MVC webbapplication.
how to create such a serivce for a MVC application. and returns a json object.
View 3 Replies
Mar 9, 2011
I have my own web service application with more then one .asmx file. Now i am not getting how can i reference web service with my web application as "Add Web Reference".
I want to connect with both asmx files at once. Means once i connect web service as add web reference and i can call both .asmx file from my code behind page.
View 2 Replies
Jul 28, 2010
I am looking for a web service or an API that I can use to translate text from one language to the other.The size of the text will be limited to 10,000 characters. I understand that Google and Babelfish have websites to do this. But I need to integrate it as a part of my web application.
View 2 Replies
Mar 24, 2011
I am trying to create a web service application that will need to use .net 4.0 for my datamodeling and other things. I noticed in VS2010 when I select New | Project the "ASP web service app" option is available if .net 3.5 is selected in the combo box but if I change that to .net 4.0 the option goes away.
After researching the only thing I found was a message where someone suggested to use the WCF web service option. I have never dealt with WCF before so I have no idea what path that will lead me down.
Here is my concern... we have existing web services developed in .net 3.5 that are already in use and we have windows based client applications that are developed in Delphi (version 7.0 to be specific) that already talk to these web services with no problems and no special coding required. Delphi can simply import the WSDL which generates an interface unit that gets compiled in and away we go. This new service app I need to create must also be accessed via the same Delphi apps.
The current asp web service apps generate 4 files when "published": web.config, .asmx file and in a in folder there is a .pdb and .dll file.
Can anyone tell me if support for this type of web service app is still available via .net 4.0 and if so how do I create the project or is that something that has been discontinued and thus no longer possible?
View 2 Replies
Mar 19, 2010
I would like to create a web application that gives an overview of all latests builds of a Team Foundation Server (TFS). The original idea was to simply query the TFS for all these builds and display the results using html. Now the problem is that this is just too slow. It takes around a minute to get the required informtion. I can't inluence this, it is just given. So I came up with the idea of caching. I could cache all results for a certain period of time and then invalidate the cache but as soon as the cache expires someone that uses the application will have to wait again which is not that nice.
The Team Foundation Server is able to notify whenever a new build is available. So basically the idea is that the application could react on that notification. In order to be notified I have to write a web service and register it with the TFS. That worked pretty well so far. The web service is now notified whenever a new build is done. Now I would like to connect my web application to the web service and whenever the web service is notified by the TFS update the cache of the web application. Here starts the problem. How can this be achieved? First I thought that the web service could fire a .NET event and the web application could react on that event but that does not seem to be possible. The next idea was that both the web service and the web application could use the same cache. The web service could then directly update the cache with the build information it receives from the Team Foundation Server but I am not even sure if this works.
Can a web service and a web application share the same cache? The web service doing something like Cache.Add("key", buildInfo) and the web application buildInfo = Cache["key"]. If not what other approach could be used to solve such a scenario?
View 4 Replies
Sep 27, 2010
I am developing one Intranet Que type project for a small Travel agency. I need one logic to route the customer que over all sales agent so anyone once free he will be buzzup to pickup the customer till here is Okay. But i need some timeout if no sales agent pickup the Que it will forward to the supervisor. Now here is my Question should i make a small desktop application and run in server to moinitor the time and forward the task.... or Is Web Service is suitable for this? (Forward means just it will update one field of table so it will start displaying in Supervisor screen.)
View 1 Replies
Dec 12, 2010
I have created an WCF data service in a new asp.net web application and i want to call this web service from another web application using jquery, but it always returns null.
My jquery call looks like this:
[code]....
Note that [URL] works in the browser but since the jquery call is from localhost:3410 i assume its a problem with cross domain.
I have been reading that i should use jsonp for this, but i have a hard time figuring it out.
View 2 Replies
Jul 28, 2010
I'm having trouble injecting services dependencies into my WCF service using Autofac 1.4.5. I've read and followed the Autofac wiki page on WcfIntegration but my debugging shows me that my WCF service is created by the System.ServiceModel.Dispatcher.InstanceBehavior.GetInstance() method and not by the AutofacWebServiceHostFactory. What am I doing wrong?
I've set up my ajax.svc file to look like the one in the example for use with WebHttpBinding:
<%@ ServiceHost Language="C#" Debug="true"
Service="Generic.Frontend.Web.Ajax, Generic.Frontend.Web"
Factory="Autofac.Integration.Wcf.AutofacWebServiceHostFactory,
Autofac.Integration.Wcf" %>
My WCF service class Ajax is defined like this:
namespace Generic.Frontend.Web
{
[ServiceContract]
[AspNetCompatibilityRequirements(
RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class Ajax
{
public MapWebService MapWebService { get; set;}.....
The service already works fine but I can't get the Autofac bits (read: creation/injection) to work.
Removing the default constructor unfortunately leads to the following exception:
System.InvalidOperationException: The service type provided could not be loaded as a service because it does not have a default (parameter-less) constructor. To fix the problem, add a default constructor to the type, or pass an instance of the type to the host.
View 3 Replies
Aug 17, 2010
best practices to be followed in deployment of asp.net web application & WCF service in IIS 7 regarding the IIS 7 configuration settings , Security setting, application access level settings..
View 2 Replies
Sep 29, 2010
I have a local application which parses data. What i need is to develop a web interface to query statistics and set configurations for the application thats running at all times. Since I am the developer of both applications I have full access to both source.
My main goals here are:
- have a service or app running at all times on the webserver doing most of the work
- have a webUI which will connect to this app and display stats and make configurations
- service/app will be writen in C#
- WebUI will be written in asp or php
- the WebUI must be accessable through the web domain ie: http://server/TestApp on default port 80 were there are other web apps running already.
I know there are ways to do this using a specific port to communicate to eachother, but i would like to avoid this. What is the best way to communicate between these apps?
View 1 Replies
Sep 10, 2010
I wanna embed the windows service in the web application. I have seen few posts in the web. where they generate separate exe for the windows service and use it as an installable.
The same process i tried doing it but it threw an OS error in my server which is windows 2000 and didnt supported the executable.
However the website of mine runs fine in the same server. Thus i was thinking if i cd embed the same code in the web application.
Also, in my case the website of mine takes job for simulation. These jobs are taken for simulation execution and nearly takes 12hrs for completion and if they are not completed within twelve hours then they are supplied extra twelve hours to complete the simulation jobs.
The simulation executables are a series of executable and bat files.
The results of the simulation gets updated in the tables of MySql and hence are displayed to the user.
View 2 Replies
Jan 25, 2011
how to add the web service in my project and how to use it.
I am planning to use Autocomplete from ajax tool kit which needs a web service. Web service will be prepared and given to me, and i need to use it in my project for autocomplete control.
step by step procedure to add web service in my project and also how can I create a web service if i have to create my own service.
View 13 Replies
Aug 3, 2010
I m retrieving a pdf file from another application using Web service. After retrieving that file, make some validations and after that I want to delete that file. I want to delete that file in another application database. how can I delete that file ? I m unable to code that one. Can anyone give some startup.
View 6 Replies
Aug 11, 2010
I would like to host a Wcf Service, create in a Wcf service Library, in a Web Application.
I've already done the same thing with Web Service asmx :
using System.Reflection;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
namespace WebServiceLibrary
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
public class WebService1 : WebService, IHttpHandlerFactory
{
private static WebServiceHandlerFactory wshf = new WebServiceHandlerFactory();
private static MethodInfo coreGetHandlerMethod = typeof(WebServiceHandlerFactory).GetMethod("CoreGetHandler", BindingFlags.Instance | BindingFlags.NonPublic);
[Code]....
View 2 Replies
Sep 2, 2010
I want to create a popup application that will run against my sql database and Fire a popup everymorning at the user machine to ask a question. the response will be send back to the Database. Prety easy with Windows service BUT not with a POpup or Interface.
View 3 Replies
Feb 4, 2010
I am using VS2008 pro to develop my web application. my project target framework is 3.5. I can add web service (.asmx) to it. But there is no .svc for me to add, do I need to install WCF REST Starter Kit? (but it is only in Preview 2)Or should I add an WCF service project to my solution?
View 1 Replies
Apr 13, 2010
We have two application created one for webservice and other application will call the methoddefined in webservice .The problem is we want to add webservice in our application dynamically
View 4 Replies
Jan 17, 2011
I have a problem with IIS 6. I have developed Warehouse Management System using ASP.Net 2005, SQL Server 2005 with Framework 2.0.
It has a website folder and Web Service folder separately. My Website access Web Service hosted on same IIS using JavaScript (webservice.htc) On development platform it works fine but when I tried to deploy it on newly installed Windows 2003 SP2 and IIS 6.0 web application gets hanged after 2 - 5 minutes.
I tried to re-install all software as well as changed some IIS Settings like Pooling etc. but result is same.
If any body knows how to properly configure ASP.Net web application with web service on IIS 6.0.
View 3 Replies