IIS is unable to start; it looks like another program is using port 80 from my IIS. You receive "unexpected error 0x8ffe2740 occured" when trying to start IIS manually. Test: Run in the dos-prompt: netstat -an >c:\netstat.txt In the result file look if port 80 is LISTENING. If so, another program is using port 80. Solution: 1.Start 'Task manager' and start killing 1 application; then run netstat again, until you find the application that caused the problem (dot not kill explorer). 2.Try to find out where this application is started (registry 'run' or icon or startup folder) and solve the problem. Information: In my case 'SKYPE' was causing the problem; in the Skype options i found: 'Connection: use port 80 as an alternative.' restart IIS and see
we_swati
Posts
-
unexpected error 0x8ffe2740 occured -
How do i have a sortable TextBox or Dropdownyou can copy data to arraylist sort it and put back to control or sort the data at database level by using in your sql query - ORDER BY [field name].
-
web service - how to setup accessI have made a web service , I have put it on a web server . I want to use it in my application which I am working on my local machine . I have made web reference to it in my application and create dthe object in my web form . When I run my application I get error on the Invoke .what I need to do .. Please suggest... Exception Details: System.Net.WebException: The request failed with HTTP status 401: Unauthorized. Source Error: Line 40: _ Line 41: Public Function HelloWorld() As String Line 42: Dim results() As Object = Me.Invoke("HelloWorld", New Object(-1) {}) Line 43: Return CType(results(0),String) Line 44: End Function thanks Source File: c:\inetpub\wwwroot\testWebApp1\Web References\hellowld\Reference.vb Line: 42 thanks
-
ERROR_CTX_WINSTATION_BUSYI am working on remote machine, first time I am able to login , but secong time I try to login I get this error ERROR_CTX_WINSTATION_BUSY 7024 the requested operation cannot be completed because the terminal connection is currently busy processing a connect operation Can anybody help me to resolve this problem. thanks swati thanks swati
-
How to avoid Outlook security warning programmaticallyHi I am working to programmatically open outlook for reading messages. But I am getting a security warning dialog box. How can I disable or stop this box to coming in thanks swati
-
open excel file in asp.netthanks
-
open excel file in asp.netI have to open a excel file in asp.net using c# , oExcel = new Microsoft.Office.Interop.Excel.ApplicationClass(); on this line I am getting access denied . What i need to do , such that Excel can access . thanks thanks
-
where to put Infopath Programming ques - for helphi please suggest me where to put Infopath Programming ques - for help thanks thanks ss
-
Infopath File attachment control ProgrammaticallyHI I am working on Infopath File attachment control Programmatically , I am reading a image file from my database table , converting to base64string , and then returning to attachment field in my Infopath Form . the problem is that when I open the attachment , it is opening in binary or some other format , and not in standard readable format , filedata.Getfilename obj2 = new filedata.Getfilename(); IXMLDOMNode nodefld1 =thisXDocument.DOM.selectSingleNode("my:myFields/my:field3"); nodefld1.text = obj2.ReadfileInfo(); where obj2 is a object of a web service , which return a string of base64 and field3 is a file attachment . what I need to do , thanks thanks
-
Infopath File Attachment Control - ProgrammaticallyHI I am working on Infopath File attachment control Programmatically , I am reading a image file from my database table , converting to base64string , and then returning to attachment field in my Infopath Form . the problem is that when I open the attachment , it is opening in binary or some other format , and not in standard readable format , filedata.Getfilename obj2 = new filedata.Getfilename(); IXMLDOMNode nodefld1 =thisXDocument.DOM.selectSingleNode("my:myFields/my:field3"); nodefld1.text = obj2.ReadfileInfo(); where obj2 is a object of a web service , which return a string of base64 and field3 is a file attachment . what I need to do , thanks thanks ss
-
how to convert a object to a byte array byte[]HI My problem is that I am reading a image field from the database table . then I need to Convert that image field value into a byte[] . dread = sqlcomm.ExecuteReader(); sqlcomm = new SqlCommand("getCont1" ,sqlconn); sqlcomm.CommandType = CommandType.StoredProcedure; dread = sqlcomm.ExecuteReader(); while ( dread.Read()) { temp= (dread.GetValue(0)); } this "temp" var store the image field value as object . now i need to convert this object into byte[] as i have to pass it to a function which take byte[] as parameter. what I need to do ? thanks ss thanks