Is it possible to create a website in a domain pointing to a local directory?
Or does everything deployed to Weblogic have to be WAR, EAR, RAR or JAR?
I want a simple possibility to just FTP to a folder, add html-files and have them added to weblogic, is this possible?
WebLogic can be configured to handle static content site, without it being any type of archive.
The way I have done this is to create a WEB-INF directory at the root your site directory and populate it with a weblogic.xml and web.xml file. These 2 files will cause WebLogic to see the directory as a web app. The contents of those files are as follows:
web.xml
weblogic.xml
Then you deploy it like a normal web application in the WebLogic console. The only other thing is that you need to be running your WebLogic server in Development mode. This will allow you to actively upload your new files without having to cycle the managed server to pick up changes.
-Bill