Ajax - Call An ASMX Webservice In Javascript Without Resetting Authentication Timers

Nov 23, 2010

Pinging back to a webservice in ajax from the client keeps the user's session alive, I don't want this to happen. More extensive summary For a website we're developing, we need the client to ping back (in js) to a webservice (ASMX) on the server (IIS7.5). This happens to let the server know that the user is still on the site, and hasn't browsed away to another site. This is as our customer wants to let users lock records, but if they browse away to other sites, then let other people take over those locked records. Perhaps the distinction between the client being on the site but inactive and on another site seems unimportant, but that's kinda irrelevant, I don't get to write the UI spec, I just have to make it work.

My problem is this, the ping stops the user from being timed out on the server through the standard forms authentication timeout mechanism. Not surprising as there is that 30 second ping in the background keeping the session alive. Even though we want to know if the user is still on the site, we want the normal forms authentication timeout mechanism to be honoured. I thought I might be able to fix this by removing the ASP.NET_SessionId and .ASPXAUTH cookies in the XMLHttpRequest that is the server ping, but I can't figure out how to do this. This is how my web service & method are defined:

[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[ScriptService]
public class PingWS : WebService
{
[WebMethod]
public void SessionActive(string sessionID)
{
// does stuff here
}
This is how I'm calling it in js (request is over HTTPS, :
$.ajax({
type: "POST",
url: "PingWS.asmx/SessionActive",
data: 'sessionID=' + aspSessionID + '}',
beforeSend: function (xhr) {
xhr.setRequestHeader('Cookie', '');
xhr.setRequestHeader('Cookie', 'ASP.NET_SessionId=aaa; .ASPXAUTH=bbb;');
},
dataType: "json"
});

I was trying with the setRequestHeader, but that just appends to the header rather than overwrites the header, and IIS is happy to ignore that junk I added. I'm thinking maybe I should be trying to do this at the server end, someone take PingWS.asmx out of the loop so that it doesn't keep the session active, but I'm not sure how to do this. Although the title of the question is focused on clearing the cookie in the header, I'd be super happy if anyone points out that I'm being really stupid and there is actually a much better way of trying to do what I'm doing.

I'm thinking at this stage maybe I need to add something to the webmethod that says how long this particular page has been inactive, and use that knowledge to timeout manually. That actually sounds pretty easy, so I think I'll do that for now. I'm still convinced that there must be an easy way to do what I originally wanted to do though. Update I'm thinking I'm pretty screwed in terms of cookie manipulation here as both the .ASPXAUTH and ASP.NETSessionId cookie are HttpOnly, which means the browser takes them out of your hands, you can't access them via the document.cookies object. So I would say that leaves me with:

Updating my SessionAlive webmethod to track each request so I can tell how long the user has been sitting idle on a page and timeout if needs be Marking the .asmx page somehow on the server end so that it's taken out of the normal authentication/session tracking flow I know how to do 1. so I'll start there but 2. seems much cleaner to me.

View 3 Replies


Similar Messages:

WCF / ASMX :: Call A Webservice On A Site That Requires Authentication?

Mar 3, 2011

I have a production web application that uses <authentication mode="Windows"/> I have added an .asmx page with a method in it. I'd like to test making calls to it from a separate client web app. When I do this I get the error: The request failed with HTTP status 401: Access Denied What do I need to do in my client app to access this webservice?

View 2 Replies

AJAX :: Throw Exception Message "Authentication Failed" When Call Webservice Form Javascript

Aug 16, 2010

I was created webservice which has a Method:

[Code]....

Then, in my aspx page, i call that method in javascript, but i get a Exception message is "Authentication Failed", code below:

[Code]....

How to resolve this problem?

View 3 Replies

WCF / ASMX :: Call Webservice Hosted On IIS From Javascript?

Jan 11, 2011

all My web app is calling webservice which resides in same virtuall directory as web app . In this scenario i have a javascript function like this which works perfectly.

[Code]....

View 2 Replies

Javascript - Apostrophe In Ajax Webservice Call?

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

AJAX :: Call A Webservice Method Fom Javascript?

Mar 10, 2010

I am trying to call a webservice method fom javascript.Every thing goes fine. But,problem is that, I can't return any value from the function.

View 3 Replies

AJAX :: Call Webservice Using Javascript And Scriptmanager Not Working

May 13, 2010

Configuration : Windows Vista,VS 2005,Ajax v1.0.61025 My Html Page

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Untitled Page</title>
<script language="javascript" type="text/javascript">
function fnCall()
{
try
{
var ans= Sim.Service.HelloWorld(OnMethodSucceeded, OnMethodFailed);
}
catch(e)
{
alert(e.message);
}
}
function OnMethodSucceeded(result)
{
alert('a');
}
function OnMethodFailed(result)
{
alert('b');
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" ><Services>
<asp:ServiceReference Path="http://localhost/ajaxtest/service.asmx" /></Services>
</asp:ScriptManager>
<div><input id="Button1" type="button" value="button" onclick="fnCall();" /></div>
</form>
</body>
</html>
Web Service CS.
using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Web.Script.Services;
namespace Sim
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class Service : System.Web.Services.WebService
{
public Service()
{
//Uncomment the following line if using designed components
//InitializeComponent();
}
[WebMethod,ScriptMethod(UseHttpGet=true)]
public string HelloWorld()
{
return "Hello World";
}
}
}

But i am getting Sim is not defined. Error. post ur comments. I have reviewed most of the forums. I am not able to clear

View 13 Replies

AJAX :: Find All Timers With Javascript?

Sep 10, 2010

i have some timers on my page, i don't know how many or how they are named. so i tried to find them by the type, but it's always undefined!?

View 5 Replies

AJAX :: Webservice Call From Javascript Fails If Masterpage In Force?

Mar 2, 2010

I am calling a web service via Javascript. I tried it first in a web page that does not have a Masterpage and it worked perfectly. Then I moved everything over to a web page that does use a Masterpage, and I get a "Microsoft JScript runtime error: Object required" on the javascript statement that calls the web service. My javascript statements look like so:

[Code]....

The web service looks like:

[Code]....

The page source is:

[Code]....

View 5 Replies

AJAX :: Call Webservice Method From External Javascript File

Jan 8, 2011

I have a web user control. That I load dynamicaly inside a modalpopup window using dynamic populate extender. User control has a external javascript file linked to it. Problem: I cannot make call to webservice method from this external javascript file. When I make a call -- servicename.methodname() I get servicename not defined error.

View 2 Replies

Javascript - Web Based Chat, Using Ajax Timers , Will It Perform For Large Number Of Users

Jan 25, 2010

as all we know that we can create very simple chat using ajax timer & web service , it runs well for few users .

i want to leaverage same idea for site where 5000+ users will be there in chat room , messages are stored in queue hold in memory * dispatched as user request that is through java script timers calling page method or service ,

how well it will perform ? i know GTalk implements XMPP protocol(jabber) for the web chat
seems it will be difficult to got XMPP way ?

View 1 Replies

WCF / ASMX :: Call Webservice From Different Computer On Different Network

Mar 28, 2011

I have created web service and deployed on server after creating proxy server ..........

when i browse the URL used in proxy server from different computer on same network, it works fine..... but when i browse the same URL on computer on different network, it wont work.....

how do i call webservice from different network

View 1 Replies

Call An Asmx Webservice Without Extending User Session?

Jan 25, 2011

In my ASP.net 3.5 application I'm calling an asmx webservice that is part of the application. Calling the webservice entends the user's session timeout, which is undesirable in this case.How can I call a webservice on my server without extending the session timeout? Is there a way in IIS to designate it as being outside of the session scope? (apologies if I'm using incorrect terminology) Can I designate a directory in the ASP.net web.config file as being outside the session?

View 1 Replies

WCF / ASMX :: How To Work With A Webservice Call That Only Returns Xml Nodes

Jul 20, 2010

I'm working with a webservice call after doing

[Code]....

[Code]....

View 1 Replies

WCF / ASMX :: Call Webservice Via Httpwebrequest With Soap Header?

Apr 4, 2010

how do i call webservice via httpwebrequest with soap header

[Code].....

but i don;t know where to add AuthSoapHd for username and password.

HttpWebRequest request = (HttpWebRequest)
HttpWebRequest.Create(url);
String xmlString = txtInput.Text;
ASCIIEncoding encoding = new ASCIIEncoding();

[Code]....

View 2 Replies

WCF / ASMX :: Web Service Call With Authentication?

Dec 30, 2010

We are gonna call web service with username and password. how to implement this on a web service client?

View 1 Replies

Call Web Methods Of WebService In Javascript

Nov 5, 2010

I'm doing a project in asp.net with a web services. My web services and my asp.net project is separate and my asp.net projet have a reference of my web services. i'm using visual studio 2008 framework 3.5 and my service web is in vb.net. i want to call the web methods of my web services in javascript my script manager is declared

<asp:ScriptManager runat="server" ID="scriptManager" EnablePageMethods="true" >
<Services>
<asp:ServiceReference path="http://localhost:2931/ServiceCompas.asmx"/>
</Services>
</asp:ScriptManager>
the javascript fuctions
<script type="text/javascript">
function test() {
alert('test');
Service1.Liste_Carte(Onsucced);
}
function Onsucced(resultat) {
alert('je suis passée');
}
</script>

service1 is the class of my Webservice and i call the function test with my button <input name="btnRecherche" class="btnRechercher" type="button" value="Rechercher un emplacement" onclick="test()" /> the problem is : JavaScript say Service1 is not defined but why .... What's the problem ? I've checked many forums and videos every body did it
sorry for the french variable

View 3 Replies

WCF / ASMX :: Calling Webservice From Javascript Side?

Nov 17, 2010

This is the webservice am using.

[code]....

But my function is not going to Hello() soon after calling SetOCXVariables()

After my 'P' comes undefined and does the remaining, it goes to hello()

why is this happening?

View 7 Replies

Kill A Javascript Async Call To A .net Webservice?

Jun 14, 2010

My javascript code is calling a asp.net webservice, so i have a call to the webservice something like this:MyWebservice.GetData(param, ResponseReceived, ResponseTimeOut, ResponseError);When the webservice returns data, ResponseReceived method is called.However sometimes the user might navigate to another url before the webservice call actually returns, in such a scenario FireFox throws an Error saying 'An error occured oricessubg the request. The server method GetData failed'So my question is how can i kill the async call when the user navigates to another page or makes another request to the webservice? I know in a normal XMLHttpRequest i could have called Abort method, but not sure how to make it work with the above webservice proxy.

View 2 Replies

Javascript - Prevent Submit And Call A Webservice On Enter Keypressed In A Textbox?

Mar 21, 2011

Is there a simple way to turn off form submit behaviour of the page when ENTER is pressed while I am focused to textbox? What I want to achieve is to call a web-service without submiting the page when ENTER is pressed in a specific textbox in my aspx page?

View 1 Replies

WCF / ASMX :: Allow Web Methods To Be Call From Javascript

Jan 8, 2011

i have created a simple WCF webserivce and it is running at http://localhost:2699/WCFServiceClient/myService.svc

with method

[Code]....

i have tested it from a wcftestclient it is working fine.

but when i try to call this method from jquery, it doesn't response.

my jquery code

$.ajax({ type: "POST", url: "http://localhost:2699/WCFServiceClient/myService.svc/GetData", data: { 'value': 5 }, contentType: "application/json; charset=utf-8", dataType: "text/xml; charset=utf-8",
success: function (msg) { alert$(msg.d); }, error: function (e) { alert("Unavailable"); } }); }

View 1 Replies

Security :: Forms Authentication Resetting On Every Postback?

Feb 3, 2010

I have a web site that works fine on the server. I purchased a new domain and set that up on my web server and set the home directory on to the server to the same location as the site that works.

However, my forms authentication ticket is being recreated on every page post back. Is there some setting in IIS that I'm missing under the new domain(IP)? If I access the site under one domain the ticket is saved and tracked fine. When I access it from the second domain (same home directory as first domain) the ticket is lost on postback.

View 1 Replies

AJAX :: AutoComeple Does Not Call Webservice?

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

JQuery :: AJAX Call To Webservice Is Not Working?

Nov 20, 2010

I have a webservice "DataService.asmx" which I am using for AJAX calls for insert, update, delete and some other tasks. All the pages are calling webservice smoothly but this new page I added and calling my webservice using the same ajax method not working. Strange thing is that neither its going on SUCCESS nor FAILURE...and put a breakpoint on my webservice but its not going into the webservice...plz help as its been 6 hours now figuring what the problem is..here is the code.

[Code]....

here is my webservice

[Code]....

and here is the Code behind

[Code]....

View 5 Replies

Web Forms :: How To Consume (ASMX) WebService From JQuery AJAX

Oct 9, 2012

I have created a asmx web service.The service will interact with SQL Server database to Get, Insert and Update of some tables in my db.I have one Service method called AddItem which takes a class object as parameter. with that parameter I am inserting the values into the database. In the same way I have another service method that Gets all the Items from db using the same class and returns the class object as the return type for my service. 

Here is my sample AddItem() and GetAllItems() prototype 

 Collapse | Copy Code

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved