ya i want to store session information in table from web service
ishwarya mahadevan
Posts
-
hiii urgent -
sql profileri m sorry...i wanted to post in sql but dint notice i was still in asp.net forum...sorry for the inconvenience...and thanks for providing the links...
-
hiii urgentmay i know what was the problem??? i dint ask for the coding too...i just wanted to know where i had gone wrong...
-
sql profilercan anyone let me know how to use sql profiler 2005???
-
hiii urgenthi i need to make an entry in the session table once the user logs. need to use web service methods for everything. i ve written a stored prov for login and within that i ve called the session procedure. while running web service method i m getting an error "string or binary truncated. statement has been terminated". as i couldnt spot the error i tried writing a separate method for session in webservice and tried calling it from login method. i m not getting any error but the entry is not made in the session table. can anyone help me out?
-
procedure or function expects parameter which was not suppliedwhat kind of exception is this? how to rectify it?
-
Validatingreader is obsoleteHi, I m currently developing a project on Xml Editor in vb.net...While trying to validate the xml against dtd i m getting the following error : XmlValidatingReader is obsolete. I tried using XmlReaderSettings but its showing an error saying that "The XmlSchemaSet on the document is either null or has no schemas in it. Provide schema information before calling Validate." This is the coding i ve written : Dim xmlV As New XmlDocument Dim xmlP As New XmlTextReader(TempFile) Dim settings As New XmlReaderSettings Dim eventhandler As ValidationEventHandler eventhandler = New ValidationEventHandler(AddressOf WriteErrorLog) xmlV.Validate(eventhandler) settings.ValidationType = ValidationType.DTD settings.ProhibitDtd = False Dim reader As XmlReader reader = XmlReader.Create(xmlP, settings) xmlV.Load(reader) ErrStr = "" ListBox1.Items.Clear() IsValid = True Do Try If reader.Read() Then lineInf = CType(xmlV, IXmlLineInfo) End If Catch exx As Exception Try IsValid = False If lineInf.HasLineInfo Then ErrStr = lineInf.LineNumber.ToString + ": " + lineInf.LinePosition.ToString + " " + exx.Message End If If exx.Message.IndexOf("EndElement") > 1 Then Exit Do End If ListBox1.Items.Add(ErrStr) Catch eeex As Exception MsgBox("Some unexpected error occurred " + vbNewLine + eeex.Message, MsgBoxStyle.Information, "Error") Exit Do End Try End Try Loop While Not xmlP.EOF reader.Close() xmlP.Close() Me.Cursor = System.Windows.Forms.Cursors.Default If IsValid = False Then MsgBox("File is not valid", MsgBoxStyle.Exclamation, "Error") Else MsgBox("File is valid", MsgBoxStyle.Information, "OK") End If End Sub Can anyone pls help me out in finding the error??? THanks in advance.
-
xml code editori m developing a project on xml code editor. i want to check whether dtd and xsl files are valid or not through my editor. i ll be grateful if someone can provide coding for that asap
-
Dates in asp.netHi I want a numeric value to be added to the current date. the numeric value is provided dynamically. how do i do it? i tried the following but showing error : textbox1.text=now.date+textbox2.text i also tried : textbox1.text=now.date+val(textbox2.text) it is treating the + as concat operator and not as addition.
-
Web ServicesHow do we get the status???? Ya i know...but i m asked to use the webservice method for everything.
-
Computer NAmeHi Thanks a lot. Can u help me out with the other post i ve sent too pl??
-
Computer NAmeCan anyone tell me how to retrieve the system name and ip address of the local machine???
-
Web ServicesHI, I m creating a login page in asp.net..i need to use web service method and write stored procedure to check if user name and pwd are correct..if its right then need to direct the user to another page else display an error...since response.redirect wont work in web service can u suggest how to go about it???
-
Using session and eventsHi, I m developing a project on parking system. I need to know how to make an entry to the session log table when an user logs in and how to remove the session when he logs out. and also when the user adds,deletes or updates an entry should be made in the event table. Pls help me out