Quantcast
Channel: All Forums
Viewing all 25587 articles
Browse latest View live

Issue loading one particular website IIS 7.5.

$
0
0

Hi,

  We are having windows server 2008 R2 that act as web server. Our critical website is running on that server. All applications running successfully. Only one applications got problem. It will take more time to load. Issue loading one particular website.It automatically available after 10 to 20 minutes.

Thanks in Advance,

P.Mohan


HTTPS Error

$
0
0

Hi guys,

So I've spent the last three days on this problem and I cannot work out for the life of me why my website is performing the way it does.

I have NLB set up for two web servers, with identical IIS configurations (it's a shared config). The files for the website are also on a DFS. 

Internally, both HTTP and HTTPS work perfectly fine, responding as expected and performing well. Externally, HTTP works perfectly again, over the past 6 days with 100% uptime. However, HTTPS has about a 30% uptime, and often I cannot access the site externally, but sometimes I can. It's completely random when it works, I can be accessing the website and my friend cannot. The firewall is set up correctly, and both servers (CAS_WEB01 and CAS_WEB02) work correctly (if I remove the bindings to the port and test each server individually on the internal network). When the site fails externally, it fails with a "Connection_reset" error. 

I hope I've made the problem clear, I simply cannot understand why it's performing in this way. The HTTPS certificate is valid. 

Many Thanks,

Ben

Crash on windows 8.1 (no update 1) using IDownloaderPlugin (Smooth Streaming Client SDK for Windows 8.1 v. 1.0.140716)

$
0
0

trying to play an offline content via downloader plugin the new version of the Microsoft.Media.AdaptiveStreaming dll cause a crash on windows 8.1 (without update 1 installed).

Everything works fine using the old version of SS client SDK for windows 8.1 (v. 1.0.130925)

anyone found the same issue?

Where do I post about a homemade FTP server?

$
0
0

I'm new to this forum and do not plan to use it much.

I'm getting an error that, when searching, does not show up here, or on some other forums that I've been on. This FTP server that I'm trying to set up is for my local, home LAN to make it easy to transfer files from computer to computer.

Testing a sub-domain doesn't work

$
0
0

I'm trying to test a dotnetnuke site on iis 7.5 , when creating a new iis website and giving it an alias (setting the directory in c:/inetpub ), I can't get the homepage to view on subdomain.regulardomain.com . Any thoughts what I'm overlooking?
Nork

Joomla website is becoming too slow

$
0
0

Hi,

I have a Joomla 2.5 running on iis8 with fastcgi, I noticed lately that when the visitor reaches to 300-400 simultaneously the website becomes to slow, even the point that it will return a 500 Service Unavailable.

Restarting the IIS will then solve the issue.

Can someone help me sort this thing, is there any settings that I missed like setting in the php.ini or in the fastcgi


And additional info about my problem, when the website encounter error 500, only the php application is not running static html can be opened let say mywebsite.com/app.php is not opening but mywebsite.com/app.html is opening

HTTP Error 500.0 - Internal Server Error when using .NET 4

$
0
0

I am currently Have many web site in my server all website that run with .net V2 is work fine, but all website that run with v4,integrated is not work the following error is appear.

HTTP Error 500.0 - Internal Server Error An error message detailing the cause of this specific request failure can be found in the application event log of the web server. Please review this log entry to discover what caused this error to occur.

Module: AspNetInitClrHostFailureModule

Notification: BeginRequest

Handler: ExtensionlessUrlHandler-Integrated-4.0

Error Code: 0x80004005

Requested URL: http://xxxxxxx.xxx.xx/

Physical Path: E:\aa\aa\aa

Logon Method: Not yet determined

Logon User: Not yet determined

Please help....

Client Requests for WCF service stays in IIS Worker Process

$
0
0
<div class="votingouterbox"> <div class="voting">Hi,</div> </div> <div class="messageContent"> <div class="container"> <div class="body">

I have two wcf services. Service A calls Service B. If there is any exception in service B while processing the request, then the request to the service B stays in the worker process current requests queue. The status of the request is AuthenticateRequest. Thus over a period of time, there are too many active requests in worker process (around 150). At this time, no new request go to service B and any caller gets operation time out error.

Recycling Application Pool is quick solution but it requires daily monitoring of worker process.

Is there any way to find the root cause for these requests (in AuthenticateRequest state) and to make worker process automatically release requests thus making enough space to process fresh requests?

Thanks,

KC

</div> </div> </div>

Using SEO Toolkit 1.0 and trying to create sitemap however

$
0
0

When I click on the checkbox to add the directories to my sitemap request I only get to select the directory.  If I want to select the pages underneath each directory I have to select those individually.  Shouldn't those be automatically selected when I choose the higher up directory level checkbox?

SOAP OR GET REQUEST WEB SERVICE REQUEST

$
0
0

I am trying to integrate SOAP into a classic ASP website in VBScript, found numerous examples online and have viewed this one here consuming SOAP web services in classic ASP

The XML needs sending to a service at https://www.cartell.ie/secure/xml/findvehicle to invoke a service named XML_Cartell. The application needs to generate a http GET or Soap XML Post request identical to below. It says username and password credentials should be inserted into the HTTP header as per the http basic Authentication protocol. e.g. Authorization: Basic QWxhZGRpbjpvcGVIHNl2FtZQ==.

I am currently receiving the error msxml3.dll error '80070005' Access is denied.

My current code is

<%Set oXmlHTTP = CreateObject("Microsoft.XMLHTTP")

oXmlHTTP.Open "POST", "https://www.cartell.ie/secure/xml/findvehicle", False 

oXmlHTTP.setRequestHeader "Content-Type", "application/soap+xml; charset=utf-8" 
oXmlHTTP.setRequestHeader "SOAPAction", "https://www.cartell.ie/secure/xml/findvehicle"
oXmlHTTP.setRequestHeader "Authorisation", "QWxhZGRpbjpvcGVIHNl2FtZQ=="

SOAPRequest = _
  "<?xml version=""1.0"" encoding=""utf-8""?>" &_"<soap:Envelope xmlns:soap=""http://www.w3.org/2003/05/soap-envelope"">" &_"<soap:Body>" &_"<FindByRegistration>" &_"<registration>96D29782</registration>" &_"<servicename>XML_Cartell</servicename>" &_"</FindByRegistration>" &_"</soap:Body>" &_"</soap:Envelope>" &_

   oXmlHTTP.send & SOAPRequest %><%Set xmlResp = oXmlHTTP.responseXML%><%    Set nodes = xmlResp.getElementsByTagName("Model") %><ul><%    For Each node in nodes    %> <li><%=node.text%></li><%    Next    %></ul>

The Request message posted should be like this

<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"><soap:Body><FindByRegistration><registration>96D29782</registration><servicename>XML_Cartell</servicename></FindByRegistration></soap:Body></soap:Envelope>

The Response Message should be something like this.

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"><soap:Body><FindByRegistration><Vehicle><Registration>96d29782</Registration><Make>OPEL</Make><Model>OMEGA</Model><Description>CD 2.0</Description><BodyType>SALOON</BodyType><FirstRegistrationDate>1996-05-20</FirstRegistrationDate><FuelType>PETROL</FuelType><EngineCapacity>1998</EngineCapacity><Transmission>Manual</Transmission><Power>136BHP</Power></Vehicle></FindByRegistration></soap:Body></soap:Envelope>

 

unable to get sample logging client to work

Windows media server 0xc00d138d error code

$
0
0

0xc00d138d

I am getting the following error code when I play a stream from windows media player to the windows media server.

What does 138d error code correspond to?

I could not find any answers here

http://msdn.microsoft.com/en-in/library/bb202810.aspx

How to resolve this error?

Serving video file for 50 users simultaneoulsy

$
0
0

Hi

We need to support video streaming for 50 users simultaneously with out delay. The client uses HTML5 video tag to render the video.

Have hosted the video in iis under virtual directory, added the mime type video/mp4.

am able to render the video using follwing ur    http://localhost/Videos/MyPhone2.mp4

however am facing the concurrency issue with this. video streaming is not working if i want to render the video simultaneously from two separate windows of chrome browse. the same applied for new tab as well. if the video is streaming one window then second window is waiting till the first window completes the rendering.

Can anybody tell us what is the issue? how can i resolve this? should i increase the throttling? if yes then how to do this?

Thanks& Regards

Sukumar

Server variables across reverse proxy

$
0
0

I am trying to hide multiple folders within URL and for this I need to have access to the original URL which I am able to get. My problem is I am also using reverse proxy and the first rule is a redirect to the proxy server which is running on a different port. Once the request is redirected the server variable that I have created is empty and does not contain the original requested URL but the redirected one.

Is there any way I can get the requested URL after the redirect across the reverse proxy?

 

Application pool stops 503 service unavailable

$
0
0

Hi Folks

I migrated a website from IIS6 to IIS 7.5.

I turned on the 32-bit application to true in the Application Pool.

After few seconds the application pool stops responding: Service Unavailable. HTTP Error 503. The service is unavailable.

When looking at the Event Viewer, I see the following error:The Module DLL 'C:\Inetpub\CSPGateway\CSPms.dll' could not be loaded due to a configuration problem. The current configuration only supports loading images built for a x86 processor architecture. The data field contains the error number. To learn more about this issue, including how to troubleshooting this kind of processor architecture mismatch error, seehttp://go.microsoft.com/fwlink/?LinkId=29349.

 

The file CSPms.dll exists in this location. This DLL is used for another website I guess.

Can I turn it off for this particular website? Or do you guys have another solution?

I read also this thread: http://forums.iis.net/t/1149768.aspx?500+19+Error+When+Enabling+32+bit+Application+Pool

Thx in advance.

 

 


IIS 500 error

$
0
0

Hi, when I go to http://myurl.pw

I end up getting a 500.0 internal server error "this page cannot be seen because of an internal server error"

I'm not sure why this is, I've tried literally everything to sort this issue. 

thanks, 

steve

IP based access vs Domain name based access?

$
0
0

This is a general question in my mind not related to any IIS version.

When we access any site with particular site IP  or through domain, what is the difference between the two access.

Is any difference between the two access (IP based access vs Domain name based access). If yes please explain ?

What type of session established above the two....

Thanks

debug VB com

$
0
0

Hi i am very new to classic asp.

Legacy project which got lots of vb com objects now I wanted to set my environment to dubug the vb code using the asp application where it been used.

I would really appreciate if someone could should step by step how to get the environment set.

What I have got

IIS7
VB6
VB Code base and the dll
Asp project (localhost)
Example asp vb call

<%	Option Explicit %><%
	Dim oCustomer : Set oCustomer = Session("NORDCustomer")
	Dim i

    Session("ReEntry") = "True"

	oCustomer.CommonServiceLayerSessionID = Request.Cookies("Next")("ID")
	oCustomer.VisitorID = Request.Cookies("NextVisitor")("ID")

    if oCustomer.CommonServiceLayerSessionID <> "" then
        'Update existing CSL session
        Set oCustomer = oCustomer.DeserialiseSession(oCustomer.VisitorID, oCustomer.CommonServiceLayerSessionID)

thanks 

Re: PHP 5.6

$
0
0

Hey, Sorry if this has been covered elsewhere, but is there a way to use PHP 5.6 in WebMatrix 3? I installed it already in the Microsoft Web Platform installer for Windows and IIS Express. And it's installed on my machine under "C:\Program Files(x86)" but I was curious if I could get WebMatrix to see it, because it only sees 5.3, 5.4, and 5.5 right now.

Access test site on Windows 8.1 machine from another PC.

$
0
0
I currently have a web app that I have been developing on my windows 8.1 computer at home. It is currently setup in IIS pointing to the path of the site. In my computers host file I put:
192.168.1.1 dev.test app.com
I am able to access the site with no problem while developing.

My question:
From another machine can I add this to their hosts file:
Assuming 167.45.3.67 is the IP of my Dev machine with the site
167.45.3.67 dev.test.app.com

Will this work? Is there any security settings on the PC that has the site that I should take into account? Or will it not work without a live dns? Only reason I assume this might work is because you can RDP to someone else's computer.
Viewing all 25587 articles
Browse latest View live


Latest Images