
jjzheng.blogspot.com
Zheng Tech BlogA blog about technical experience in Oracle Fusion Middleware technology
http://jjzheng.blogspot.com/
A blog about technical experience in Oracle Fusion Middleware technology
http://jjzheng.blogspot.com/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Monday
LOAD TIME
0.8 seconds
16x16
32x32
PAGES IN
THIS WEBSITE
19
SSL
EXTERNAL LINKS
31
SITE IP
172.217.10.1
LOAD TIME
0.827 sec
SCORE
6.2
Zheng Tech Blog | jjzheng.blogspot.com Reviews
https://jjzheng.blogspot.com
A blog about technical experience in Oracle Fusion Middleware technology
Zheng Tech Blog: Does OAM DCC Support Programmatic Authentication? - Maybe not yet!
http://jjzheng.blogspot.com/2013/10/does-dcc-authentication-support.html
Sunday, October 13, 2013. Does OAM DCC Support Programmatic Authentication? Credential Collection is the process of collecting the end user's credentials through a login page. When OAM Webgate intercepts a requests and detects the user is not authenticated yet, it would redirect the user to the login page. In OAM, when the login page is hosted on the OAM server, it's called Embedded Credential Collector (ECC). Input type="hidden" name="request id" value="${param.request id}" id="reqid1"/ -! Note the impo...
Zheng Tech Blog: Difference on Getting Error Code from OAM ECC and DCC
http://jjzheng.blogspot.com/2013/10/difference-on-getting-error-code-from.html
Tuesday, October 15, 2013. Difference on Getting Error Code from OAM ECC and DCC. In case of OAM authentication failures, the OAM server will send the error codes back to the client. It's up to the client to decide what actual error message needs to be displayed on different types of authentication failures. For the list of the standard error codes, you can refer to here. DCC (Detached Credential Collector) is introduced in OAM 11gR2. ECC is embedded credential collector. My previous post. Page import="m...
Zheng Tech Blog: Inline Style Isn't Just for CSS Styles
http://jjzheng.blogspot.com/2014/02/inline-style-isnt-just-for-css-styles.html
Sunday, February 23, 2014. Inline Style Isn't Just for CSS Styles. In this post I will discuss another use of inline style which is an uncommon use case in WebCenter Portal. It isn't just for CSS styles as I found in my recent practice. The inline style can set the selected state of a navigation node in WebCenter portal application. This is a very unique use case. It has to satisfy the following scenario:. A): set the context parameter oracle.webcenter.navigationframework.REDIRECT OPTIONS. Context parame...
Zheng Tech Blog: Interview with Bob Rhubart on Responsive WebCenter Portal @ Collaborate 14
http://jjzheng.blogspot.com/2014/04/interview-with-bob-rhubart-on.html
Tuesday, April 22, 2014. Interview with Bob Rhubart on Responsive WebCenter Portal @ Collaborate 14. Short after my presentation on Responsive WebCenter Porta. L @ Collaborate 14 in Vegas, I had a video interview with Bob Rhubart. Who runs Oracle ArchBeat. The official blog of the OTN Architect Community. In this 10 min talk, I had reviewed my presentation topic, the hot gossips in the hallway and the visions of hot topics in the next coming collaborate. Subscribe to: Post Comments (Atom).
Zheng Tech Blog: Build Your Responsive & Mobilized Enterprise Portal
http://jjzheng.blogspot.com/2014/04/build-your-responsive-mobilized.html
Monday, April 7, 2014. Build Your Responsive and Mobilized Enterprise Portal. Let’s collaborate at. Las Vegas, NV – Venetian and Sands Expo Center. 8211; April 11. Build Your Responsive and Mobilized Enterprise Portal. 11:00 AM – 12:00 PM. Level 3, San Polo 3502. Discover fundamentals utilized in the Oracle WebCenter 11.1.1.8 mobile support. Describe and explain how to build a responsive template from scratch. Subscribe to: Post Comments (Atom).
TOTAL PAGES IN THIS WEBSITE
19
Tanvir Pathan's Blog: ADF-GROOVY : Use Java classes in groovy expressions
http://blog.tanvirpathan.com/2011/09/adf-groovy-use-java-classes-in-groovy.html
Blog about Oracle ADF, WebCenter, UCM, SOA. Sep 22, 2011. ADF-GROOVY : Use Java classes in groovy expressions. Posted by Tanvir Pathan. Today I will discuss about how you can use Java classes in groovy expressions. In this blog I will show you how you can access Private class fields, Protected class fields, Static class fields and Enums. Download Application: (Developed using Jdeveloper 11g R2). Here is the snippet of Bean.java. Comtanvir.groovy.model.views;. String privateJobId = "FI ACCOUNT". Yannick O...
ECM Consultant: December 2011
http://www.ecmconsultant.net/2011_12_01_archive.html
Wednesday, December 21, 2011. Testing flow - It's a need to know! Above is the typical testing flowchart provided by Bugzilla. It's a quite decent chart, so I wanted to post it to help nudge proper testing in the UCM / WebCenter realm :). Tuesday, December 20, 2011. Win7: Computer crashing while sleeping. A quick Windows related note. If you have been having Sleep issues since upgrading to Windows 7 SP1, then this might be the official hotfix. Http:/ support.microsoft.com/kb/2541014. Leave a Voice Message.
ECM Consultant: April 2011
http://www.ecmconsultant.net/2011_04_01_archive.html
Tuesday, April 26, 2011. OnTrack: Unit Testing the OutsideIn Configuration. Here's a quick video I put together for internal viewing to help the team put together some training videos. I figured I could simply redact some info and provide it to the community. There was a troubleshooting email that went along with this, so please let me know if there's anything missing or any information required. Please let me know what you think! Subscribe to: Posts (Atom). Anything About Fusion Middleware.
ECM Consultant: November 2012
http://www.ecmconsultant.net/2012_11_01_archive.html
Monday, November 19, 2012. WebCentet Content - Site Studio Sample Site for PS3 and beyond. Since the filestore provider is enabled by default since WCC PS3, that means that there are dispersion paths in all of the weblayout file paths by default as well. The provided Site Studio sample site has a number of broken paths due to this change, so I've taken the steps to update everything for the current method. You can find the link to the new zip here: enter link for zip. Subscribe to: Posts (Atom).
ECM Consultant: November 2011
http://www.ecmconsultant.net/2011_11_01_archive.html
Saturday, November 19, 2011. If you want to add a quick and simple auto-timestamp whenever a cell is affected, here's some sample code:. Private Sub Worksheet Change(ByVal Target As Range). Add the below line if you want to avoid timestamping null cells. If Target.Value = " Then Exit Sub. On Error GoTo ws exit:. Application.EnableEvents = False. With Cells(Target.Row, 15). NumberFormat = "dd/mm/yyyy h:MM:ss AM/PM". Application.EnableEvents = True. Tuesday, November 15, 2011. Subscribe to: Posts (Atom).
ECM Consultant: October 2011
http://www.ecmconsultant.net/2011_10_01_archive.html
Sunday, October 9, 2011. JS: Filter array of objects sharing the same prefix. Just some sample code to filter an array of objects based upon prefix. Var uniqueArr = new Array();. CompleteArray = completeArray.sort();. For (var i = 0; i completeArray.length - 1; i = 1). If (completeArray[i 1].replace(/ d/," )! CompleteArray[i].replace(/ d/," ). UniqueArr.push(completeArray[completeArray.length-1]);. Subscribe to: Posts (Atom). JS: Filter array of objects sharing the same prefi. Oracle - ECM Architecture.
Tanvir Pathan's Blog: March 2011
http://blog.tanvirpathan.com/2011_03_01_archive.html
Blog about Oracle ADF, WebCenter, UCM, SOA. Mar 10, 2011. Installing UCM(ECM) 11g (64-bit, Windows). Posted by Tanvir Pathan. And install 64-bit JDK. Install WebLogic Server(10.3.4). Create schemas using RCU. And Extract ucm zip distribution in your desired folder and run Disk1 setup.exe. Mar 6, 2011. Installing WebCenter 11g PS3 (64-bit, Windows). Posted by Tanvir Pathan. And install 64-bit JDK. Install WebLogic Server(10.3.4). Create schemas using RCU. Mar 5, 2011. Create schemas using RCU 11g.
Tanvir Pathan's Blog: Installing WebCenter 11g PS3 (64-bit, Windows)
http://blog.tanvirpathan.com/2011/03/installing-webcenter-11g-ps3-64-bit.html
Blog about Oracle ADF, WebCenter, UCM, SOA. Mar 6, 2011. Installing WebCenter 11g PS3 (64-bit, Windows). Posted by Tanvir Pathan. And install 64-bit JDK. Install WebLogic Server(10.3.4). Create schemas using RCU. Extract webcenter zip distribution in your desired folder and run Disk1 setup.exe. Provide JDK path installed in first step. Follow onscreen wizard to complete the installation of webcenter. Configure the WebCenter domain using the "Configure Application Server" menu item. Follow me on Twitter!
ECM Consultant: September 2011
http://www.ecmconsultant.net/2011_09_01_archive.html
Monday, September 26, 2011. Linux: Does size matter? Just a quickie to point out a few helpful linux commands that will help you keep an ad-hoc eye on your storage usage. Also, some will help you pinpoint some options for quick cleanup:. Http:/ www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/. Http:/ www.codecoffee.com/tipsforlinux/articles/22.html. Have a good day,. Wednesday, September 14, 2011. JS Fiddle - Sandbox for css, jquery, javascript, etc. String f...
ECM Consultant: Oracle Database 11.2.0.3
http://www.ecmconsultant.net/2013/01/oracle-database-11203.html
Saturday, January 12, 2013. Oracle Database 11.2.0.3. Each time I need to download the current (as of 2013/01/13) Oracle database, I can never find the patch number. so, here it is:. That is the patch number for the x64 linux package. Hope this saves you some time,. January 13, 2013 at 5:40 PM. Typically I find I only need to download parts 1 and 2. Is that the same for you? February 10, 2013 at 8:39 PM. Thanks for pointing that out! April 7, 2015 at 9:14 AM. Ban dat quan 9. Nha dat quan thu duc. Khi mẹ ...
TOTAL LINKS TO THIS WEBSITE
31
九江振华玻璃纤维有限公司-玻璃纤维-九江玻璃纤维-无碱玻璃纤维纱-无碱玻璃纤维布
解决之道顾问机构|营销策划|品牌建设|管理咨询|全国百强|战略规划|销售提升
刘岩嵩先生受邀深圳卫视 2012年11月19日,解决之道总顾问刘岩嵩先生被邀请在深圳卫视财经频道 非常财经观察 栏目,并与另外两名专家嘉宾,共同探讨 央视广告招标,凭什么这么火 . 盟友至少得到九大价值 1、业绩倍增 盟友首选采购、价. [查看详情]. 集团简介 中国产权平台控股 集团 有限公司 China Equity Platform Holding Group Limited 是一家通过资本和技术手段深度介入各地产权机构,致力于. [查看详情]. 创办于2004年 2008年8月,汇丰银行捐赠1.5亿人民币支持北京大学建设世界一流商学院 北京大学深圳商学院 正式冠名为 北京大学汇丰商学院 . [查看详情]. 电话 0755-83130516 传真 0755-83130517 邮箱 jjzhd@126.com 网址 http:/ www.jjzhd.com. 2014coyright 解决之道powerand design by zeusus 粤ICP备00000000号-2.
365备用网址-365bet体育投注-28356365体育在线
365bet手机网址汇泰在线 孙宏斌 以后你骂我一句,我骂你十句 (转载). 热播韩剧 致美丽的你 幕后花絮照 雪莉珉. Mobile365体育在线投注 萌萌复盘 满血复活 满满干货. 王璐丹 红娘子 片花大赛颁奖 甜美装扮亮. 黄小琥新歌 重来 MV首播 萧淑慎担纲女主. 许秦豪 危险关系 入围 导演双周 未获奖. 大师 帮阿婆 趋吉避凶 敛财4万 民警一. 毛呢外套 短裙 裤袜 最IN搭配超显瘦. 因主演风靡一时的经典剧 上海滩 中的冯程程以及 新白娘子传奇 中的白素贞而为上. 导读 9月16日,王力宏 火力全开 演唱会香港站. 张柏芝 河东狮吼2 换装33套 上演惊艳古装. 汪小菲卷入 迷奸门 并非 躺着中枪. 王璐丹 红娘子 片花大赛颁奖 甜美装扮亮. 许秦豪 危险关系 入围 导演双周 未获奖. 周迅 云图 一人分饰三角 造型似混血儿. 导读 云集了包括汤姆 汉克斯、哈莉 贝瑞、苏. 周迅 云图 一人分饰三角 造型似混血儿. 导读 传闻 步步惊心2 希望请原班人马出演,但. 观察足球场 365体育备用网址 柯P当场开踢 - 中. 张敬轩 PS.I Love You 原创大碟前的序曲.
Zheng Tech Blog
Friday, August 4, 2017. A Quick Talk On Generic Cloud App Integration With Informatica Cloud. The Informatica Cloud Integration platform is the industry's complete cloud integration platform as a service (iPaaS). Informatica has been continuously playing as the leader role in this space for the 4th consecutive year ( Gartner's margic quadrant for enterprise integration platform. It's definitely your top choice for data integration management. While creating the Swagger file, you basically defines the API...
正新奇礼品
NANV 宝珠笔 名片盒 NN29. NANV 保温杯400ml NN36-Z ,NANV 保温杯300ml NN34-L. A4 A5 A6 PP笔记本. NANV 保温杯400ml NN36-Z ,NANV 保温杯300ml NN34-L. NANV 宝珠笔 名片盒 NN29.
法医解剖设备,酒精检测仪,执法视音频记录仪,刑侦警用设备首选靖江市振弘实业有限公司
靖江市振弘实业有限公司是国内较早专业研发,生产和销售公安刑侦设备,警用装备器材,交通管理器材,公安安全器材的专业企业.公司至今已有多年历史,公司拥有强大的生产制造能力,具有先进的生产设备和生产基地. 网址 www.jjzhenhong.com. MAIL TO [email protected].
九江商务调查公司-九江侦探公司-九江婚姻调查-九江外遇调查-九江寻人查址
电话 18217556858 QQ 285949589 联系人 李经理 地址 九江市龙开河路55号步红写字楼.
澳门网上真人合法赌场、赌场排名线上第一休闲网
只有质量过硬的能真正受到消费者的青睐,而服务则是一个企业能否最终走向成功的关键所在,秉承 有序管理、锐意创新、开拓奋进 、跨越赶超 的经营理念企业不断发展。 资中 常念普法 五字经 硕澳门网上合法赌场果满枝头. 四川旧事网内江8月6日讯 程志彬廖璐 2011年以来,资中县各级各部分慎密环绕“六五”普律例划,常念“快”“全”“真”“浓”“明”普法“五字经”,高终点谋划、高尺度要求、高规格促进、高品质落真,全县“六五&rd. 原题目 新职业上线 大之剑 圣导师今日重磅登场 大之剑 全新职业“圣导师”今日炽热上线,犹如童话中的王子正常,他身穿黄金铠甲,肩上的披风随风漂泊,气势 ,澳门网上合法赌场一种骑士班师而归的派头情不自禁 圣导师的技术不只仅是酷炫富丽,水平更是所向无敌,让你正在体验游戏时分分钟艳惊四座,技压群芳. 公司公布2015年半年度业绩预报:15年上半年脏利润脏利润3,710.91 万元-4,385.62 万元,比上年同期降落35-35%,低于市场战咱们的预期。 本文摘自 中老年时报 2013年7月19日8版,作者 张维功,原题为 东山组筑“知青连”.
九江振浔管理咨询有限公司 - Powered by CmsEasy