求weblogic9.2 求生之路2下载地址址

求weblogic10.3.2下载地址_百度知道
求weblogic10.3.2下载地址
提问者采纳
com/登录后所搜Fusion MiddleWare 也可以去这里<a href="http去
其他类似问题
weblogic10的相关知识
您可能关注的推广
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁4135人阅读
最新要将项目部署到SUSE linux系统上,用到了weblogic9.2,结果找了半天,也没找到linux的下载地址,现在好不容易找到,整理下,放在网上,供有需要的朋友下载使用。
各个版本的都有,以下列举出来9.2的
Oracle WebLogic Server 9.2 MP3版本
Oracle WebLogic Server 9.2 MP4版本
Oracle WebLogic Server 10.0 MP2 版本
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:266566次
积分:3219
积分:3219
排名:第4255名
原创:18篇
转载:229篇
评论:23条
(6)(7)(2)(1)(11)(2)(1)(1)(3)(12)(7)(25)(13)(5)(8)(14)(9)(2)(10)(7)(4)(4)(2)(11)(1)(3)(5)(1)(6)(3)(1)(11)(15)(28)(1)(6)&#20351;&#29992; WebLogic Server9.2 &#20013;&#30340; SAML &#37197;&#32622;&#21333;&#28857;&#30331;&#24405;
使用 WebLogic Server9.2 中的 SAML 配置单点登录
使用WebLogic Administrative Console进行SAML配置
在开始SAML配置之前,前几个步骤将创建并设置示例应用程序
appB的服务器环境。
步骤一:创建SAML源站点域和目标站点域及应用程序服务器
本指南中的示例应用程序位于本地主机上的两个不同的域;因此,第一个步骤是创建运行于特定端口的域和服务器,如表1所示。
应用服务器
应用程序名称
SAML源站点域:domainA
AdminServer
SAML目标站点域 D:domainB
AdminServer
表 1. 示例应用程序域及应用服务器
使用Domain Configuration Wizard创建表1中所示的域;并使用WebLogic Server 9.2 Administration Console更新相应的侦听端口。
步骤二:创建用户
为了简便起见,本指南使用各域中的默认安全域,并以同样的默认域名进行命名,即
myrealm。在每个域的
myrealm域中分别创建一个用户
ssouser。此外,也可在集中化的外部LDAP存储中创建该用户,并将这两个域配置为使用这个共同的存储进行身份验证。
此处创建的用户
ssouser将验证
domainA中的应用程序
appA;然后,使用SSO便可直接访问位于
domainB中的应用程序
用户名/密码
SAML源站点域:domainA
ssouser/demosaml
SAML目标站点域:domainB
ssouser/demosaml
表 2. 参与单点登录的用户
如表2所示,在这两个域中名为
myrealm的安全域内创建用户
步骤三:创建并部署Java EE Web应用程序
appA的示例应用程序源代码可以在下载区进行下载。将现有的Web应用程序导入到WebLogic WorkShop Studio或者诸如Eclipse的其他任何IDE。
appA配置为使用基于FORM的身份验证。该应用程序部署在SAML源站点域(即
domainA)。admin文件夹下名为auth.jsp的
appA JSP页面要求已通过身份验证的用户拥有admin角色,才能进行访问。在weblogic.xml中,admin角色映射到名为ssouser的主体。图2显示了web.xml中的安全配置。
&display-name&Saml Source Site Application&/display-name&
&security-constraint&
&web-resource-collection&
&web-resource-name&SecurePages&/web-resource-name&
&description&These pages are only accessible by authorized users.&/description&
&url-pattern&/admin/*&/url-pattern&
&http-method&GET&/http-method&
&/web-resource-collection&
&auth-constraint&
&description&These are the roles who have access.&/description&
&role-name&admin&/role-name&
&/auth-constraint&
&user-data-constraint&
&description&This is how the user data must be transmitted.&/description&
&transport-guarantee&NONE&/transport-guarantee&
&/user-data-constraint&
&/security-constraint&
&login-config&
&auth-method&FORM&/auth-method&
&realm-name&myrealm&/realm-name&
&form-login-config&
&form-login-page&/login.jsp&/form-login-page&
&form-error-page&/fail_login.htm&/form-error-page&
&/form-login-config&
&/login-config&
&security-role&
&description&These are the roles who have access&/description&
&role-name&admin&/role-name&
&/security-role&
例 1. 应用程序 appA - web.xml代码片断
当用户试图访问/admin/auth.jsp页面时,将显示配置好的login.jsp登录页面,要求用户提供身份验证凭据。在提交详细资料后,该容器将对用户ssouser进行身份验证。如果验证成功,将显示auth.jsp页面。在进一步访问auth.jsp页面之前,我们将在目标站点域(即
domainB)创建应用程序
appB示例应用程序源代码可在(下载专区)进行下载。应用程序
appB配置为使用CLIENT-CERT,因此它将使用身份断言来进行验证。该应用程序应部署在SAML目标站点域(即
domainB)。位于/admin文件夹中名为services.jsp的
appB JSP页面要求已成功通过身份验证的用户拥有admin角色,才能进行访问。在weblogic.xml中,admin角色映射到名为ssouser的主体。图3显示了
appB的web.xml配置的摘录:
&display-name&SAML Destination Site Application&/display-name&
&!-- ... --&
&security-constraint&
&web-resource-collection&
&web-resource-name&SecurePages&/web-resource-name&
&description&These pages are only accessible by authorized users.&/description&
&url-pattern&/admin/*&/url-pattern&
&http-method&GET&/http-method&
&/web-resource-collection&
&auth-constraint&
&description&These are the roles who have access.&/description&
&role-name&admin&/role-name&
&/auth-constraint&
&user-data-constraint&
&description&This is how the user data must be transmitted.&/description&
&transport-guarantee&NONE&/transport-guarantee&
&/user-data-constraint&
&/security-constraint&
&login-config&
&auth-method&CLIENT-CERT&/auth-method&
&realm-name&myrealm&/realm-name&
&/login-config&
&security-role&
&description&These are the roles who have access.&/description&
&role-name&admin&/role-name&
&/security-role&
例2. 应用程序 appB - web.xml代码片断
编译并构建每个应用程序的WAR文件(如
appA.war、appB.war)。要进行部署,将
appA.war和
appB.war文件分别复制到
autodeploy文件夹中。重新启动应用服务器,并测试不具备SSO功能的应用程序的行为。
SAML配置完成之后,在
appA(SAML源站点)通过身份验证的用户ssouser就可以直接访问
appB(SAML目标站点)的services.jsp页面,无需再次提供凭据。
客户与活动
服务与商店
电话: 800-810-8-6698【总结】WebLogic老版本介质下载地址 - WebLogic Server入门 -
WebLogic中文爱好者 -
中国最权威的Weblogic技术交流社区! - Powered by Discuz!
【总结】WebLogic老版本介质下载地址
来自北京海淀区&
【总结】WebLogic老版本介质下载地址
本帖最后由 chaowang 于
10:40 编辑
WebLogic Server 10.x
& && &WebLogic Server 10 for Microsoft Windows (, x86)
& && &WebLogic Server 10 for Microsoft Windows (2003, Itanium)
& && &WebLogic Server 10 for Microsoft Windows (2003, 64-bit Xeon/AMD64)
& && &WebLogic Server 10 for HP-UX (11i, 11iV2, 11iV3, PA-RISC)
& && &WebLogic Server 10 for HP-UX (11iV2, V3, Itanium)
& && &WebLogic Server 10 for Red Hat Enterprise Linux (3.0-5x, 4.0-2x, x86)
& && &WebLogic Server 10 for Red Hat Enterprise Linux (5.0, x86, 64-bit Xeon/AMD64, Itanium)
& && &WebLogic Server 10 for Red Hat Enterprise Linux (4.0, 64-bit Xeon/AMD64)
& && &WebLogic Server 10 for Red Hat Enterprise Linux (4.0, Itanium)
& && &WebLogic Server 10 for IBM AIX (5.2, 5.3, pSeries)
& && &WebLogic Server 10 for Novell SuSE Linux Enterprise Server (9, 10, x86)
& && &WebLogic Server 10 for Sun Solaris (9, 10, SPARC) supporting 64-bit JVM
& && &WebLogic Server 10 for Sun Solaris (9, 10, x86)
& && &WebLogic Server 10 for Sun Solaris (8, 9, 10, SPARC64)
& && &WebLogic Server 10 for Novell SuSE Linux Enterprise Server (9, 10, 64-bit Xeon/AMD64)
& && &WebLogic Server 10 (Simplified Chinese) for Microsoft Windows (, x86, Simplified Chinese)
WebLogic Server 9.x
& && &WebLogic Server 9.2 MP3 for Sun Solaris (8, 9, 10, SPARC)
& && &WebLogic Server 9.2 MP3 for Sun Solaris (10, 64-bit Xeon/AMD64)
& && &WebLogic Server 9.2 MP3 for Sun Solaris (9, 10, SPARC) supporting 64-bit JVM
& && &WebLogic Server 9.2 MP3 for Sun Solaris (9, 10, x86)
& && &WebLogic Server 9.2 MP3 for HP-UX (11iV2, 11iV3, Itanium)
& && &WebLogic Server 9.2 MP3 for HP-UX (11i, 11iV2, 11iV3, PA-RISC)
& && &WebLogic Server 9.2 MP3 for Red Hat Enterprise Linux (4.0, 5.0)
& && &WebLogic Server 9.2 MP3 for Red Hat Enterprise Linux (Itanium)
& && &WebLogic Server 9.2 MP3 for Microsoft Windows (2003, Itanium)
& && &WebLogic Server 9.2 with MP3 (Simplified Chinese) for Microsoft Windows (XP, , x86, Simplified Chinese)
& && &WebLogic Server 9.2 MP2 for Red Hat Enterprise Linux (3.0-5x, 4.0-2x, 5.0, x86)
& && &WebLogic Server 9.2 MP2 for Microsoft Windows (XP,
& && &WebLogic Server 9.2 MP2 for Microsoft Windows (2003, 64-bit Xeon/AMD64)
& && &WebLogic Server 9.2 MP2 for IBM AIX (5.2, 5.3, pSeries)
& && &WebLogic Server 9.2 MP2 for Sun Solaris (8, 9, 10, SPARC)
& && &WebLogic Server 9.2 MP2 for Sun Solaris (9, 10, x86)
& && &WebLogic Server 9.2 MP2 for Sun Solaris (10, 64-bit AMD64)
& && &WebLogic Server 9.2 MP2 for Sun Solaris (9, 10, SPARC) supporting 64-bit JVM
& && &WebLogic Server 9.2 MP2 for HP-UX (11i, 11iV2, 11iV3, PA-RISC)
& && &WebLogic Server 9.2 MP2 for HP-UX (11iV2, 11iV3, Itanium)
& && &WebLogic Server 9.2 MP2 for Red Hat Enterprise Linux (4.0, 5.0, 64-bit Xeon/AMD64)
& && &WebLogic Server 9.2 MP2 for Novell SuSE Linux Enterprise Server (10, x86, 64-bit Xeon/AMD64, Itanium)
& && &WebLogic Server 9.2 with MP2 (Simplified Chinese) for IBM AIX (5.2, 5.3, pSeries, Simplified Chinese)
& && &WebLogic Server 9.2 MP1 for Microsoft Windows (XP, , x86)
& && &WebLogic Server 9.2 MP1 for Microsoft Windows (2003, 64-bit Xeon/AMD64)
& && &WebLogic Server 9.2 MP1 for Red Hat Enterprise Linux (4.0, EM64T, AMD64)
& && &WebLogic Server 9.2 MP1 for Red Hat Enterprise Linux (3.0-5+, 4.0-2+, x86)
& && &WebLogic Server 9.2 MP1 for HP-UX (11iV2, 11iV3, Itanium)
& && &WebLogic Server 9.2 MP1 for HP-UX (11i, 11iv2, PA-RISC)
& && &WebLogic Server 9.2 MP1 for Sun Solaris (9, 10, SPARC) supporting 64-bit JVM
& && &WebLogic Server 9.2 MP1 for Sun Solaris (8, 9, 10, SPARC)
& && &WebLogic Server 9.2 MP1 for Sun Solaris (9, 10, x86)
& && &WebLogic Server 9.2 MP1 for IBM AIX (5.2, 5.3, pSeries)
& && &WebLogic Server 9.2 for Red Hat Enterprise Linux (4.0 - 2+, 3.0 - 5+, AS, ES, WS, x86)
& && &WebLogic Server 9.2 for Sun Solaris (9, 10, x86)
& && &WebLogic Server 9.2 for Sun Solaris (8, 9, 10, SPARC64)
& && &WebLogic Server 9.2 for Red Hat Enterprise Linux (4.0, 64-bit Xeon/AMD64)
& && &WebLogic Server 9.2 for IBM AIX (5.2, 5.3, pSeries)
& && &WebLogic Server 9.2 for Microsoft Windows (XP, , x86)
& && &WebLogic Server 9.2 for Microsoft Windows (2003, 64-bit Xeon/AMD64)
& && &WebLogic Server 9.2 for HP Integrity NonStop Server (Itanium)
& && &WebLogic Server 9.2 for HP-UX (11iV2, 11iV3, Itanium)
& && &WebLogic Server 9.2 for Red Hat Enterprise Linux (4.0, Itanium)
& && &WebLogic Server 9.2 for Novell SuSE Linux Enterprise Server (10, x86, 64-bit Xeon/AMD64, Itanium)
& && &WebLogic Server 9.2 for Novell SuSE Linux Enterprise Server (9, x86)
& && &WebLogic Server 9.2 for Sun Solaris (9, 10, SPARC) supporting 64-bit JVM
& && &WebLogic Server 9.2 (Simplified Chinese) for Microsoft Windows (XP, , x86, Simplified Chinese)
& && &WebLogic Server 9.2 (Simplified Chinese) for Red Hat Enterprise Linux (4.0-2+, 3.0-5+, AS, ES, WS, x86, Simplified Chinese)
& && &WebLogic Server 9.1 for Red Hat Enterprise Linux (3.0, 4.0, x86)
& && &WebLogic Server 9.1 for Red Hat Enterprise Linux (4.0, 64-bit Xeon/AMD64)
& && &WebLogic Server 9.1 for Microsoft Windows (XP, , x86)
& && &WebLogic Server 9.1 for Microsoft Windows (x86, 64-bit Xeon/AMD64)
& && &WebLogic Server 9.1 for Asianux (2.0, x86)
& && &WebLogic Server 9.1 for HP-UX (11iV2, Itanium)
& && &WebLogic Server 9.1 for Sun Solaris (9, 10, x86)
& && &WebLogic Server 9.1 for Sun Solaris (9, 10, SPARC) supporting Jrockit
& && &WebLogic Server 9.1 for Sun Solaris (8, 9, 10, SPARC)
& && &WebLogic Server 9.1 for IBM AIX (5.2, 5.3, pSeries)
& && &WebLogic Server 9.0 for Microsoft Windows (XP, , x86)
& && &WebLogic Server 9.0 for Red Hat Enterprise Linux (x86)
& && &WebLogic Server 9.0 for Sun Solaris (9, 10, x86)
& && &WebLogic Server 9.0 for Sun Solaris (8, 9, 10, SPARC64)
WebLogic Server 8.x
& && &WebLogic Server/Express 8.1 with SP6 for Microsoft Windows (Pentium)
& && &WebLogic Server/Express 8.1 with SP6 for Microsoft Windows (-bit Xeon/AMD64)
& && &WebLogic Server/Express 8.1 with SP6 for Microsoft Windows (Itanium)
& && &WebLogic Server/Express 8.1 with SP6 for IBM AIX (5.1,5.2,5.3, pSeries)
& && &WebLogic Server/Express 8.1 with SP6 for HP-UX (11iV2, 11iV3, Itanium)
& && &WebLogic Server/Express 8.1 with SP6 for HP-UX (PA-RISC)
& && &WebLogic Server/Express 8.1 with SP6 for Sun Solaris (9, 10, x86)
& && &WebLogic Server/Express 8.1 with SP6 for Sun Solaris (10, 64-bit AMD64)
& && &WebLogic Server/Express 8.1 with SP6 for Sun Solaris (SPARC)
& && &WebLogic Server/Express 8.1 with SP6 for Red Hat Enterprise Linux (Itanium)
& && &WebLogic Server/Express 8.1 with SP6 for Red Hat Enterprise Linux (Pentium)
& && &WebLogic Server/Express 8.1 with SP6 for Red Hat Enterprise Linux (4.0, 64-bit Xeon/AMD64)
& && &SP6 for WebLogic Server 8.1 for Novell SuSE Linux Enterprise Server (9, x86)
& && &WebLogic Server/Express 8.1 with SP6 for Novell SuSE Linux Enterprise Server (9, 64-bit Xeon/AMD64)
& && &WebLogic Server/Express 8.1 with SP6 for Novell SuSE Linux Enterprise Server (9, x86)
& && &WebLogic Server/Express 8.1 with SP5 for Microsoft Windows (Pentium)
& && &WebLogic Server/Express 8.1 with SP5 for Microsoft Windows (64-bit Xeon/AMD64)
& && &WebLogic Server/Express 8.1 with SP5 for Sun Solaris (9, 10, x86)
& && &WebLogic Server/Express 8.1 with SP5 for Sun Solaris (SPARC)
& && &WebLogic Server/Express 8.1 with SP5 for Red Hat Enterprise Linux (Pentium)
& && &WebLogic Server/Express 8.1 with SP5 for Red Hat Enterprise Linux (4.0, 64-bit Xeon/AMD64)
& && &WebLogic Server/Express 8.1 with SP5 for HP-UX (PA-RISC)
& && &WebLogic Server/Express 8.1 with SP5 for HP-UX (11iV2, Itanium)
& && &WebLogic Server 8.1 with SP4 for Microsoft Windows (x86, 64-bit Xeon/AMD64)
& && &WebLogic Server 8.1 with SP4 for Microsoft Windows (Itanium)
& && &WebLogic Server 8.1 with SP4 for Red Hat Enterprise Linux (x86, 64-bit Xeon/AMD64)
& && &WebLogic Server 8.1 with SP4 for HP-UX (PA-RISC)
& && &WebLogic Server 8.1 with SP4 for Sun Solaris (SPARC)
& && &WebLogic Server/Express 8.1 with SP4 for IBM AIX (5.1, 5.2, 5.3)
& && &WebLogic Server/Express 8.1 with SP4 for Red Hat Enterprise Linux 4.0 for IBM pSeries
& && &WebLogic Server/Express 8.1 with SP4 for Sun Solaris (9, 10, x86)
& && &WebLogic Server 8.1 with SP3 for Microsoft Windows (Pentium)
& && &WebLogic Server 8.1 with SP3 for Red Hat Enterprise Linux (Pentium)
& && &WebLogic Server 8.1 with SP3 for Sun Solaris (SPARC)
& && &WebLogic Server 8.1 SP2 for Microsoft Windows (Pentium)
& && &WebLogic Server 8.1 SP2 for Red Hat Enterprise Linux (2.1, Pentium)
& && &WebLogic Server 8.1 SP2 for HP-UX (11.0, 11i, PA-RISC)
& && &WebLogic Server 8.1 with SP2 for Sun Solaris (8, 9, SPARC)
& && &WebLogic Server 8.1 with SP1 for Microsoft Windows (Pentium)
& && &WebLogic Server 8.1 with SP 1 for Red Hat Enterprise Linux (2.1, Pentium)
& && &WebLogic Server 8.1 with SP 1 for IBM AIX (5.1, 5.2, 32 bit)
& && &WebLogic Server 8.1 for Sun Solaris (8, 9, 32 bit)
& && &WebLogic Server 8.1 for Microsoft Windows (32 bit)
WebLogic Server 7.x
& && &WebLogic Server/Express 7.0 with SP7 for Red Hat Enterprise Linux (Pentium) with JRockit
& && &WebLogic Server/Express 7.0 with SP7 for Sun Solaris (8, 9, 10, SPARC)
& && &WebLogic Server/Express 7.0 with SP7 for Microsoft Windows (Pentium)
& && &WebLogic Server/Express 7.0 with SP6 for Microsoft Windows (Pentium)
& && &WebLogic Server 7.0 with SP5 for Microsoft Windows (Pentium)
& && &WebLogic Server 7.0 with SP4 for Microsoft Windows (Pentium)
& && &WebLogic Server 7.0 with SP2 for Microsoft Windows (Pentium)
& && &WebLogic Server 7.0 with SP1 for Microsoft Windows (NT/2000)
WebLogic Server 6.x
& && &WebLogic Server 6.1 J2EE 1.2 Plus J2EE 1.3 Features with SP7 for Microsoft Windows (NT/2000)
& && &WebLogic Server 6.1 J2EE 1.2 Plus J2EE 1.3 Features with SP7 for Sun Solaris
& && &WebLogic Server 6.1 J2EE 1.2 Plus J2EE 1.3 Features with SP6 for Microsoft Windows (NT/2000)
& && &WebLogic Server 6.1 J2EE 1.2 Plus J2EE 1.3 Features with SP5 for Microsoft Windows (NT/2000)
& && &WebLogic Server 6.1 J2EE 1.2 Plus J2EE 1.3 Features with SP5 for Sun Solaris
& && &WebLogic Server 6.1 J2EE 1.2 Plus J2EE 1.3 Features with SP3 for Microsoft Windows (NT/2000)
& && &WebLogic Server 6.1 with SP2 for IBM S/390 with OS/390
& && &WebLogic Server 6.1 J2EE 1.2 Plus J2EE 1.3 Features for Microsoft Windows (NT/2000)
WebLogic Platform 9.x
& && &WebLogic Platform 9.2 MP3 for Microsoft Windows (2003, 64-bit Xeon/AMD64)
& && &WebLogic Platform 9.2 MP3 for Microsoft Windows (XP,
& && &WebLogic Platform 9.2 MP3 for Red Hat Enterprise Linux (3.0-5x, 4.0-2x, 5.0, x86)
& && &WebLogic Platform 9.2 MP3 for Red Hat Enterprise Linux (4.0, 5.0, 64-bit Xeon/AMD64)
& && &WebLogic Platform 9.2 MP3 for Red Hat Enterprise Linux (4.0, 5.0, Itanium)
& && &WebLogic Platform 9.2 MP3 for Sun Solaris (8, 9, 10, SPARC)
& && &WebLogic Platform 9.2 MP3 for Sun Solaris (9, 10, x86)
& && &WebLogic Platform 9.2 MP2 for Microsoft Windows (XP, , x86)
& && &WebLogic Platform 9.2 MP2 for Red Hat Enterprise Linux (3.0-5x, 4.0-2x, 5.0, x86)
& && &WebLogic Platform 9.2 MP2 for HP-UX (11iV2, 11iV3, Itanium)
& && &WebLogic Platform 9.2 MP2 for IBM AIX (5.2, 5.3, pSeries)
& && &WebLogic Platform 9.2 MP2 for Sun Solaris (8, 9, 10, SPARC)
& && &WebLogic Platform 9.2 MP1 for Microsoft Windows (XP, , x86)
& && &WebLogic Platform 9.2 for Microsoft Windows (x86)
& && &WebLogic Platform 9.2 for Red Hat Enterprise Linux (x86)
& && &WebLogic Platform 9.2 for Sun Solaris (8, 9, 10, SPARC)
WebLogic Platform 8.x
& && &WebLogic Platform 8.1 with SP6 for Microsoft Windows (Pentium)
& && &WebLogic Platform 8.1 with SP6 for Microsoft Windows (-bit Xeon/AMD64)
& && &WebLogic Platform 8.1 with SP6 for Microsoft Windows (2003, Itanium)
& && &WebLogic Platform 8.1 with SP6 for Red Hat Enterprise Linux (4.0-1, AS, ES, Itanium)
& && &WebLogic Platform 8.1 with SP6 for Red Hat Enterprise Linux (4.0, EM64T, AMD64)
& && &WebLogic Platform 8.1 with SP6 for Red Hat Enterprise Linux (Pentium)
& && &WebLogic Platform 8.1 with SP6 for IBM AIX (5.1, 5.2, 5.3, pSeries)
& && &WebLogic Platform 8.1 with SP6 for Sun Solaris (SPARC)
& && &WebLogic Platform 8.1 with SP6 for Sun Solaris (9, 10, x86)
& && &WebLogic Platform 8.1 with SP6 for HP-UX (11iV2, Itanium)
& && &WebLogic Platform 8.1 with SP6 for Novell SuSE Linux Enterprise Server (9, x86)
& && &WebLogic Platform 8.1 with SP5 for Microsoft Windows (Pentium)
& && &WebLogic Platform 8.1 with SP5 for Microsoft Windows (64-bit Xeon/AMD64)
& && &WebLogic Platform 8.1 with SP5 for Red Hat Enterprise Linux (Pentium)
& && &WebLogic Platform 8.1 with SP5 for Sun Solaris (SPARC)
& && &WebLogic Platform 8.1 with SP5 for Sun Solaris (10, 64-bit AMD64)
& && &WebLogic Platform 8.1 with SP5 for Sun Solaris (9, 10, x86)
& && &WebLogic Platform 8.1 with SP4 for Microsoft Windows (x86)
& && &WebLogic Platform 8.1 with SP4 for Microsoft Windows Itanium (2003) 64-bit
& && &WebLogic Platform 8.1 with SP4 for Red Hat Enterprise Linux (x86)
& && &WebLogic Platform 8.1 with SP4 for Sun Solaris (SPARC)
& && &WebLogic Platform 8.1 with SP4 for Sun Solaris (9, 10, x86)
& && &WebLogic Platform 8.1 SP3 for Microsoft Windows (Pentium)
& && &WebLogic Platform 8.1 SP3 for IBM AIX (5.1, 5.2, 5.3)
& && &WebLogic Platform 8.1 with SP3 for Red Hat Enterprise Linux (2.1, 3.0, Pentium)
& && &WebLogic Platform 8.1 SP2 for Microsoft Windows (Pentium)
& && &WebLogic Platform 8.1 for Microsoft Windows (Pentium)
& && &WebLogic Platform 8.1 for Red Hat Enterprise Linux (2.1, Pentium)
& && &WebLogic Platform 8.1 for HP-UX (11.0, 11i, PA-RISC)
WebLogic Platform 7.x
& && &WebLogic Platform 7.0 with SP7 for Microsoft Windows (Pentium)
& && &WebLogic Platform 7.0 with SP2 for Microsoft Windows (Pentium)
& && &WebLogic Platform 7.0 with SP1 for Microsoft Windows (NT/2000)
WebLogic Portal 10.x
& && &WebLogic Portal 10.0 MP1 for Microsoft Windows (XP, , x86)
& && &WebLogic Portal 10.0 MP1 for Microsoft Windows (2003, 64-bit Xeon/AMD64)
& && &WebLogic Portal 10.0 MP1 for Red Hat Enterprise Linux (3.0-5x, 4.0-2x, 5.0, x86)
& && &WebLogic Portal 10 for Microsoft Windows (, x86)
& && &WebLogic Portal 10 for Microsoft Windows (2003, 64-bit Xeon/AMD64)
& && &WebLogic Portal 10 for Red Hat Enterprise Linux (4.0, 64-bit Xeon/AMD64)
& && &WebLogic Portal 10 for Red Hat Enterprise Linux (5.0, x86, 64-bit Xeon/AMD64, Itanium)
& && &WebLogic Portal 10 for Sun Solaris (8, 9, 10, SPARC64)
WebLogic Portal 9.x
& && &WebLogic Portal 9.2 MP3 for Microsoft Windows (XP,
& && &WebLogic Portal 9.2 MP3 for Red Hat Enterprise Linux (3.0-5x, 4.0-2x, 5.0, x86)
& && &WebLogic Portal 9.2 MP2 for Microsoft Windows (XP, , x86)
& && &WebLogic Portal 9.2 MP2 for Red Hat Enterprise Linux (3.0-5x, 4.0-2x, 5.0, x86)
& && &WebLogic Portal 9.2 MP1 for Microsoft Windows (XP, , x86)
& && &WebLogic Portal 9.2 for Microsoft Windows (x86)
& && &WebLogic Portal 9.2 for Sun Solaris (8, 9, 10, SPARC)
WebLogic Portal 8.x
& && &WebLogic Portal 8.1 with SP6 for Microsoft Windows (Pentium)
& && &WebLogic Portal 8.1 with SP6 for Microsoft Windows (-bit Xeon/AMD64)
& && &WebLogic Portal 8.1 with SP6 for Red Hat Enterprise Linux (4.0, 64-bit Xeon/AMD64)
& && &WebLogic Portal 8.1 with SP6 for Sun Solaris (SPARC)
& && &WebLogic Portal 8.1 with SP5 for Microsoft Windows (Pentium)
& && &WebLogic Portal 8.1 with SP4 for Microsoft Windows (x86)
& && &WebLogic Portal 8.1 with SP2 for Red Hat Linux 3.0 (Pentium)
& && &WebLogic Portal 8.1 for Microsoft Windows (Pentium)
WebLogic Integration
& && &WebLogic Integration 9.2 MP3 for Microsoft Windows (XP, , x86)
& && &WebLogic Integration 9.2 MP3 for Red Hat Enterprise Linux (3.0-5x, 4.0-2x, 5.0, x86)
& && &WebLogic Integration 9.2 MP2 for Microsoft Windows (XP, , x86)
& && &WebLogic Integration 9.2 MP1 for Microsoft Windows (XP, , x86)
& && &WebLogic Integration 9.2 for Microsoft Windows (x86)
& && &WebLogic Integration 8.5 with SP6 for Microsoft Windows (Pentium)
& && &WebLogic Integration 8.1 with SP6 for Microsoft Windows (Pentium)
& && &WebLogic Integration 8.1 with SP6 for Red Hat Enterprise Linux (Pentium)
& && &WebLogic Integration 8.1 with SP5 for Red Hat Enterprise Linux (Pentium)
& && &WebLogic Integration 8.1 SP2 for Microsoft Windows (Pentium)
可惜无帐号哦
积分要高于1才能浏览,呵呵
找了好久,不知道能不能下的
都是需要metalink账号的,郁闷无比呀
是免费的吗 是不是都要破解呢?
卡来我刚1分。。
<td class="t_msgfont" id="postmessage_都在otn上可以免费下载,当然你需要创建一个OTN的帐号(免费的)
来自北京海淀区&
<td class="t_msgfont" id="postmessage_系列我正在上传到大米盘上,敬请期待
别忘记把aix的也传上去,这个很重要呀
我想下载一个weblogic6版本的
不知道哪里可以下载的到,请教!
迷恋weblogic……!
上面时候可以下载
晕啊,我的积分不够啊,特需要8.1.5的啊
好的 看看!!!
我也想要!!!
试试 多谢 !
多谢楼主.有没有8.1 sp4的补丁
很好,只是我想知道怎样才能加点。
[通过 QQ、MSN 分享给朋友]}

我要回帖

更多关于 求我的世界下载地址 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信