`

weblogic相关问题总结

 
阅读更多

Additional Server Configuration
Configuring HTTP-Only Flag for HTTP Cookies Set by Oracle Identity Federation
weblogic中有关http-only-cookie的说明
6.7.1 Configuring HTTP-Only Flag for HTTP Cookies Set by Oracle Identity Federation
A non-standard extension to RFC2965 extends the set-cookie header further by specifying an HttpOnly flag. When you set this flag, the client (browser) should not make the cookie contents available to scripting environments. For example, the JavaScript document.cookie method should not return the cookie contents. This significantly protects against "cross-site scripting" and similar attacks.

By default Oracle Identity Federation does not set the HttpOnly flag.

The Oracle Identity Federation server can be configured to set the HttpOnly flag when setting in the user's browser:

the cookie used by Oracle Identity Federation to reference the user session

the Oracle Access Manager cookie

To configure Oracle Identity Federation to set the HttpOnly header, enter the WLST script environment for Oracle Identity Federation and set the following properties:

Set the cookiehttponlyenabled boolean property from the serverconfig group to true if the HttpOnly flag should be set when sending the Oracle Identity Federation cookie to the browser, otherwise set it to false:

setConfigProperty('serverconfig',
'cookiehttponlyenabled', 'true', 'boolean')
Set the oamcookiehttponlyenabled boolean property from the spengines group to true if the HttpOnly flag should be set when sending the Oracle Access Manager cookie to the browser, otherwise set it to false:

setConfigProperty('spengines',
'oamcookiehttponlyenabled', 'true', 'boolean')

链接:http://download.oracle.com/docs/cd/E15523_01/oim.1111/e13400/addlcfg.htm#CEGDBJAG

-------------------------------------------------------------------------------------------
BEA WebLogic Server? 9.2
BEA WebLogic Server 是现成的企业 J2EE 应用服务器,它支持在可靠、安全、高可用和可伸缩的环境中部署关键任务应用程序。 WebLogic Server 是基于面向服务的架构 (SOA) 构建应用程序的理想平台。
该地址除了介绍weblogic相关内容,还讲解了很多web开发和servlet,jsp相关的规范内容,值得学习

链接:http://edocs.weblogicfans.net/wls/docs92/index.html

-------------------------------------------------------------------------------------------

开发 WebLogic Server 的 Web 应用程序、Servlet 和 JSP的学习文档
链接:http://edocs.weblogicfans.net/wls/docs92/webapp/index.html

-------------------------------------------------------------------------------------------
使用会话和会话持久性 相关知识
链接:http://edocs.weblogicfans.net/wls/docs92/webapp/sessions.html#wp150431

-------------------------------------------------------------------------------------------

为什么在TOMCAT又是好的呢?因为TOMCAT和WEBLOGIC对这个getServletContext().getRealPath的实现不同,tomcat可以返回正确的路径,weblogic只会返回一个null。

需要在weblogic.xml里添加
<container-descriptor>
<show-archived-real-path-enabled>true</show-archived-real-path-enabled>
</container-descriptor>

链接:http://hi.baidu.com/luohuazju/blog/item/0d0298233395bf4693580745.html

-------------------------------------------------------------------------------------------

有关weblogic服务器的session丢失或不一致的问题
需要给weblogic.xml里添加
<session-descriptor> 
    <cookie-http-only>false</cookie-http-only> 
</session-descriptor>
但由于weblogic的版本的不同,weblogic.xml的对该参数的支持也不太一样
已知的如下:
这是10.3.3的有关weblgic_xml的定义
http://download.oracle.com/docs/cd/E14571_01/web.1111/e13712/weblogic_xml.htm#i1071981
这是10.3.1和10.3.2的有关weblgic_xml的定义
http://download.oracle.com/docs/cd/E15523_01/web.1111/e13712/weblogic_xml.htm#i1071981

可以看出weblogic在10.3.3中支持在weblogic.xml里配置
<session-descriptor> 
    <cookie-http-only>false</cookie-http-only> 
</session-descriptor>

经过进一步查看10.3.4和10.3.5中都支持该参数的配置
而9.2版本也支持该参数的配置
如下路径http://download.oracle.com/docs/cd/E13222_01/wls/docs92/webapp/weblogic_xml.html#wp1071982
所以好像这个参数出现的版本不太固定

相关路径:
http://www.iteye.com/topic/1114228
http://download.oracle.com/docs/cd/E13222_01/wls/docs92/webapp/weblogic_xml.html

http://serverfault.com/questions/151107/http-only-cookies-in-weblogic-what-versions-support-them-how-and-why-are-they-su

http://cn.forums.oracle.com/forums/thread.jspa?threadID=1518073

http://cn.forums.oracle.com/forums/thread.jspa?threadID=953056

-------------------------------------------------------------------------------------------

weblogic10.3 项目出错解决方法
http://hannoi2009.blog.163.com/blog/static/12282842820099211132366/

-------------------------------------------------------------------------------------------
weblogic中jsp编译后生成java文件

1.在WEB-INF中建立一个weblogic.xml文件
2.文件内容如下: 
  <?xml version="1.0" encoding="UTF-8"?>
  <!DOCTYPE weblogic-web-app
    PUBLIC "-//BEA Systems, Inc.//DTD Web Application 8.1//EN"
    "http://www.bea.com/servers/wls810/dtd/weblogic810-web-jar.dtd" >
<weblogic-web-app>   
    <jsp-descriptor>
        <jsp-param>
            <param-name>keepgenerated</param-name>
            <param-value>true</param-value>
        </jsp-param>
    </jsp-descriptor>
</weblogic-web-app>

链接:http://52347.iteye.com/blog/406403

-------------------------------------------------------------------------------------------

WebLogic10.3 + Liferay6.05 + Oracle10g 布署笔记
http://www.chinasb.org/archives/2011/09/3795.shtml

-------------------------------------------------------------------------------------------
weblogic 10g 或11g删除domain的方法

1、删除Oracle\Middleware\user_projects\domains\下面的要删除的domain文件夹。例:soa_domain
2、删除Oracle\Middleware\user_projects\applications\下面的要删除的domain文件夹。例:soa_domain

举例说明:
如要删除soa_domain,那么要删除Oracle\Middleware\user_projects\domains\soa_domain文件夹和Oracle\Middleware\user_projects\applications\soa_domain文件夹。

链接:http://bxl766.blog.163.com/blog/static/6109950520110215644532/

------------------------------------------------------------------------------------------
在weblogic10.3.4版本的server中自己的应用下的ojdbc相关jar包不生效,即使删除,应用依然能用,
证明该版本的weblogic是先加载自己server/lib下自带的ojdbc6.jar,把该jar删除,就会使用应用自己的jdbc的jar包了。

其实这样做不太好,万一哪天需要用到weblogic自己的数据库连接池的话,就有问题了,因为把它自己的驱动删除了。

但是暂时也没有找到好的为某个应用指定相关jdbc的jar包的方法,有网上说可以在启动时指定CLASSPATH,就会把
指定的CLASSPATH放到最前面,也没有实验,看看weblogic相关的启动脚本再说吧。

分享到:
评论

相关推荐

    Weblogic乱码问题

    ### Weblogic乱码问题解析与解决方案 #### 一、引言 在Web开发过程中,特别是涉及到多语言环境的应用时,字符编码的问题常常困扰着开发者。其中,“Weblogic乱码问题”是一个较为常见的难题,主要表现为中文或其他...

    weblogic

    总结,WebLogic的安装配置是一个涉及多方面知识的过程,包括环境准备、安装、域创建、配置、部署、安全管理、监控优化、集群与高可用性,以及故障排查。熟练掌握这些知识点,对于在企业环境中成功运行和管理Java EE...

    weblogic部署问题

    根据提供的部分文件内容来看,主要涉及到了与WebLogic部署相关的几个关键点,包括JAR文件的放置位置、环境变量的设置以及启动脚本的修改等。 ##### 1. JAR文件的放置位置 - **问题描述**:在部署WebLogic过程中,...

    Weblogic学习总结

    本篇文章将根据提供的文件信息,深入探讨WebLogic相关的知识点,包括如何将WebLogic注册为Windows服务,进行性能调优,以及设置定时重启。 首先,让我们来看看"Weblogic9.2 注册为windows服务"这个话题。在Windows...

    WebLogic创建根上下文

    这是`weblogic.xml`文件的根元素,用于封装所有与Web应用程序相关的配置信息。它包含了命名空间和模式位置的信息。 - **命名空间**: 指定了WebLogic Server XML Schema的命名空间,这里是`...

    weblogic故障诊断与日常维护总结

    6. **总结经验并加以重用**:将此次故障处理的经验总结成文档,以便日后遇到类似问题时能够更快地解决。 #### 二、通过前台收集基本信息 1. **重点关注故障前的操作**:了解故障发生前做了哪些操作是非常重要的,...

    weblogic部署项目详细步骤使用手册

    Weblogic 部署项目详细步骤使用手册 Weblogic 是一种流行的 Java EE 服务器,可以部署各种类型的 Web 应用程序。本文将详细介绍如何使用 Weblogic 部署 Web 项目,旨在帮助初学者快速上手。 前提条件 在开始部署...

    WebLogic平台下部署Servlet与Jsp

    3. **安装完成**:安装完成后,可以在开始菜单中找到WebLogic的相关选项。 **1.2 创建自己的工作区** 1. **打开配置向导**:依次点击“开始” &gt; “所有程序” &gt; “weblogic8.1” &gt; “configuration Wizard”。 2. ...

    weblogic_tls及ssl类漏洞修复方案

    标题中的“weblogic_tls及ssl类漏洞修复方案”是指一套旨在针对Oracle WebLogic服务器中TLS(传输层安全协议)和SSL(安全套接层)相关安全漏洞的修复措施。TLS和SSL是广泛用于互联网通信加密的技术,能够保证数据...

    Weblogic下ejb配置

    本篇文章将深入探讨在WebLogic Server环境下配置EJB的相关知识。 一、EJB概述 EJB是一种组件模型,用于在Java EE环境中实现业务逻辑。它有三种主要类型:会话bean(Session Beans)、实体bean(Entity Beans)和...

    weblogic安装部署手册

    下面是基于 Weblogic 安装部署手册的知识点总结。 一、Weblogic 项目部署 Weblogic 项目部署是指将 WAR 包或 EAR 包部署到 Weblogic 服务器上,以便应用程序可以在 Weblogic 环境中运行。部署过程中,需要创建 ...

    Weblogic license更新方法

    最后,为了使WebLogic Server应用新的许可证,你需要重启WebLogic Server的相关服务。包括AdminServer(管理服务器)和ManagedServer(受管服务器)。在Unix系统中,这通常涉及到使用`init.d`脚本或`systemd`服务来...

    linux下安装weblogic10

    创建`/oracle/weblogic`目录用于存放WebLogic的相关文件,并通过`chown`命令将其所有者更改为新创建的`weblogic`用户,以确保该用户对目录有完全的操作权限。这一步是必要的,因为WebLogic在安装和运行时会在此目录...

    shell方式重启weblogic

    总结,"shell方式重启WebLogic"涉及到的是如何利用Linux Shell脚本控制WebLogic Server的生命周期,这在大型分布式系统中是非常关键的操作。同时,理解WebLogic的相关工具和源码层面的知识,有助于提升系统的可维护...

    2020年10月Weblogic12c补丁.zip

    "2020年10月Weblogic12c补丁.zip"这个压缩包包含了截止到2020年10月的最新WebLogic Server 12c的相关补丁,用于解决已知问题,提升系统稳定性和安全性。 第一个补丁文件 "p30675853_122130_Generic.zip" 是针对...

Global site tag (gtag.js) - Google Analytics