Tagged Questions
3
votes
1answer
29 views
What happens if a DTD link leads nowhere?
Fairly simple question, say I'm referencing a dtd for my XML's doctype:
<!DOCTYPE weblogic-web-app PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN"
...
2
votes
4answers
403 views
Choosing an application server for web application development
My manager has asked me to suggest an application server for web application development work.
What are the factors that needs to be considered before we select any application server for web ...
2
votes
1answer
3k views
How do I configure WebLogic 10.3 Web App To Use SAML 2 SSO and Identity Provider?
I have several Web applications all running in WebLogic 10 and I want to authenticate the users using SSO and WebLogic's built-in SAML 2 SSO support.
I configured a SAML2IdentityAsserter on the ...
1
vote
4answers
189 views
Difference between web server and application server
As a layman, how do I understand the difference between web server and application server ? If you could give an example using a Java based web app in very "simple" terms that would be really great..
...
1
vote
1answer
611 views
How to get the Application name/fullpath in a servlet deployed in WebLogic
Just like we can get the domain root directory from weblogic.management.DomainDir
String root = DomainDir.getRootDir() ;
and domain name from weblogic.management.configuration.DomainMBean
...
1
vote
3answers
251 views
deploying web application on application server without web server
I have a web application that does not have much of static content and more of dynamically generated pages. Lets say I deploy it in weblogic. Why do I still need a web server (IIS/Apache)? If I dont ...
1
vote
0answers
302 views
Weblogic and BOM
We have web application with static content - html files, js files, images, etc.
There are byte order mark at the beginning of all html files.
These files were genereted by some tool. So I cannot ...
0
votes
1answer
68 views
Set HTTP Caching Expiration, Recommended by Google PageSpeed and Yahoo for weblogic
I want to set this expiration for weblogic, here is the description:
http://developer.yahoo.com/performance/rules.html#expires
http://code.google.com/speed/page-speed/docs/caching.html
I see a lot ...
0
votes
1answer
55 views
Separating property-files from war-file in WebLogic
I am building a war-application for WebLogic.
I have some property files I would like to keep separate from the war-file,
so I can deploy the same war in different environments.
I tried to solve it ...
0
votes
1answer
58 views
Redirect on weblogic
I have a legacy website that has URL like mysite.com/aaa/bbb and new one that is mysite.com/aaa . I want all users that go to mysite.com/aaa/bbb to go to mysite.com/aaa instead - what's the best and ...
0
votes
1answer
122 views
Weblogic Deployment Error
When i deploy my working application on Weblogic, i get a Stack Over Flow error:
###<Sep 5, 2011 3:56:43 AM EDT> <Error> <Console> <qdcls0757> <CorpDEVAdmin> ...
0
votes
0answers
157 views
How to Read Session Timeout value
My homepage of website contains periodic ajax requests, due to which the session does not time out. Referring to http://ajaxpatterns.org/Timeout I decided to use timer and event (like mousemovement ...
0
votes
3answers
1k views
Override 302 response in WebLogic
When I do a redirect inside J2EE web application deployed on WebLogic it sends back to the client the following response:
HTTP/1.1 302 Moved Temporarily
Cache-Control: no-cache="set-cookie"
Date: ...
0
votes
3answers
926 views
Where will WebLogic look for files by default?
I have a web application deployed in WebLogic. In one of my java file, I tried to read PleaseNote.txt as following:
File file = new File("PleaseNote.txt");
Now WebLogic is taking PleaseNote.txt ...
0
votes
3answers
1k views
Problem in accessing a mapped network drive
We have a problem in accessing content on a mapped network drive.
We have a web application running on weblogic 8.1 on (Windows 2000 NT).
The application retreives images from a mapped network drive ...