WCPortal 12c Quick Review
Improved Portal Browser with Alta UI Best Intuitive User Interface, drag&drop, more options Jdev 12.2.1 Skin Editor Easy Publication of Changes per Page Edit In Place Portal Example Created with a few Clicks:
MoreMe and my circumstance
Improved Portal Browser with Alta UI Best Intuitive User Interface, drag&drop, more options Jdev 12.2.1 Skin Editor Easy Publication of Changes per Page Edit In Place Portal Example Created with a few Clicks:
MoreMy purpose is tunneling my office with the cloud utilizing ipsec. I will provision a gateway machine in the cloud running openswan, in my office I am using pfsense. In my cloud gateway vm image: [root@gtw ~]#yum install openswan (if it isn’t already) [root@gtw ~]#vi /etc/ipsec.d/myconn config setup nat_traversal=yes oe=off protostack=netkey […]
MoreThis WLS WorkManager has been configured in a 6-node WLS cluster serving the first travel & tourism technology provider company website in the world. In weblogic.xml: <wl-dispatch-policy> RSSworker </wl-dispatch-policy> The following can be done in weblogic.xml or you can configure it with WLS console at runtime (better because is decoupled): <work-manager> <name>RSSworker</name> <capacity> <name>DELmaxcap</name> <count>10</count> […]
MoreIf your application is calling several WS and there is no need to do it in serial, you can implement a multithreaded approach: Example: … Class1Service class1Service = new Class1Service(); x = class1Service.getClass1Port(); setWSTimeout(x); // esto lo veremos en la siguiente seccion class Task implements Callable<Object> { private Object result; […]
MoreIf your app server has lots of threads waiting for response from a ws endpoint that doesn’t run as well as you would like you should start thinking in some kind of timeout control implementation. If your are using OSB this configuration can be done in the PS settings, but if your integration in point to […]
More