So I plugged in the following connection to our SQL Server database below, but it's rendering a blank page when I start the server
jdbc.default.driverClassName=net.sourceforge.jtds.jdbc.Driver
jdbc.default.url=jdbc:jtds:sqlserver://mywebsite.com:15001;databaseName=Liferay
jdbc.default.username=user
jdbc.default.password=pass
Specs:
Liferay 6.2
WebLogic 12c App Server
Any ideas why this could be?
Related
I have a classic ASP web application I have installed on IIS 8.5 - Windows Server 2012. The ASP application uses VBscript for all server side logic.
After setting up the application on IIS, making sure to install the ASP/ISAPI filters/components through the server manager and also making sure to set the "Anonymous" and "Windows based" authentication to enabled, I am getting the following 500 error on my client web browser when I navigate to the root page of classic ASP application:
2016-08-26 18:48:54 10.121.71.194 GET /vhtrimswebquery/ |24|800a0034
|Bad_file_name_or_number 443 - 10.38.151.105 Mozilla/4.0+(compatible
;+MSIE+7.0;+Windows+NT+6.1;+WOW64;+Trident/7.0;+SLCC2;+.NET+CLR+2.0.50727;
+.NET+CLR+3.5.30729;+.NET+CLR+3.0.30729;+Media+Center+PC+6.0;+InfoPath.3;
+.NET4.0C;+.NET4.0E;+GM_UserLogonTimeBias:+300;+GM_UserLogonTimeUTC:
+2010-12-13+15:06:21) - 500 0 0 124
I don't know what I am missing. The "Default document" section in the IIS settings for the application has a default page setup which exists. If anyone has worked with this error before, can you point me in the direction as to what I can look at or update in the configuration to get the default page?
I have uploaded a cakephp project into my web-server. Several Application is already running there.But my added new project is not running.In firefox it returns "Connection was reset". In Safari, it returs empty page. Where should i change in my project or server?
I had created a simple portal site for our internal users, just a CSS menu with our internal web services which then displayed in an iFrame. Worked well so far.
Our helpdesk software was GLPI running on APACHE on the same server and had no issues. We recently upgraded to the latest version and in the meantime I moved it to our new web apps server and switched to IIS. The 'portal' is still hosted on the old server.
When I updated the javascript for the iFrame to point to the new address, it looked like it worked, I could get the login screen for GLPI. After logging in however I just get stuck at a white screen. If I try it in IE I get the message:
This content cannot be displayed in a frame
To help protect the security of information you enter into this website, the publisher of this content does not allow it to be
displayed in a frame.
What you can try:
Open this content in a new window
It doesn't seem to be the iFrame itself as I can get the login page.
My question is, can anyone give me some ideas on where to look at this issue? I've checked the IIS logs on both sides and see no errors, GLPI reports no errors, neither does PHP.
GLPI is on IIS 8 on Server 2012
The 'portal' is on IIS 6 on server 2003
GLPI running on PHP 5.3.0
EDIT: I've looked into the X-FRAME issue and I'm pretty sure this is not it, servers are on the same domain and I am able to get to the login screen of the second server through the iFrame, just no content after that. If it was an issue with the frame or permissions I would expect to not get to the site at all?
The only header response currently in IIS is 'X-Powered-By --> ASP.NET' am I looking in the wrong spot?
The server is returning an X-Frame-Options header used to prevent ClickJacking. That header must be removed (or updated with an Allow-From directive that lists the framing page's origin) in order for the target page to be rendered as a subframe.
i have a web role with mvc 3 on azure with os 2 that is working fine - with ssl
I wanted to upgrade my project to mvc 4 with .net 4.5 so i created a new azure project and copy everything to a new project and everything worked on my station ( I have windows 8 with iis 8 like server 2012).
i upload the new project to azure - with os 3 and everything and my web site is working fine until the code need to create an ajax request with parameters - the ajax request is pending for a minute or so and then i get an error page.
when i remove the https to http the ajax request is working flawlessly.
after investigating and putting traceFailedRequests i saw that iis is rejecting those ajax request.
in the moudle ManagedPipelineHandler i get http reason of unauthorized.
I cant seems to figure what is happening in 2012 server - for now i downgrade the mvc4 to .net 4 and change back to server 2008 r2 and everything is working like a clock.
Does anyone got any idea what can be the problem?
thanks.
On a 2003 server box, with SQL server 2008 installed (ReportServer deployed in IIS mode), I've got a virtual directory within IIS with it's security set to 'windows authentication', with the following html code:
<body>
<h1>test</h1>
<iframe src="/reportserver" witdh="50%" height="50%" />
</body>
From the outside, I've got a first login/pwd box displayed to access the html code, then a second one to display the content of the iframe.
On the same type of server, but with SQL Server 2005, I don't have this issue (i.e. only one login box).
My thought is that the first token should give acces to both the page and the iframe, isn't it?
Any hints on how to setup the reportserver to fix this?
thanks.
I recently had a similar issue. Turned out that Reporting Services for 2008 was installing with SSL enabled by default and I was getting forced redirections to https://localhost/ReportServer. Just mentioning it because it caught me by surprise...
I disabled SSL redirects by setting the SecureConnectionLevel = 0 in the RSReportServer.config file.