javier mugueta

Me and my circumstance

Bandwidth control when transfering files with sftp/scp


OpenSSH doesn’t support bandwidth control (no -l option at all) sftp -oIdentityFile=/home/oracle/mykey-open.ppk opc@12x.14x.2x.17x On the other hand scp does have the -l option: scp -l 400 -i /home/oracle/mykey-open.ppk fmw_12.2.1.0.0_bpm_quickstart.jar opc@12x.14x.2x.17x:/home/opc Please note that -l is informed in Kbits (400=50Kb/sec) COMMENTS Setting -l after -i didn’t work for me Renice is not a solution If you […]

More

Store Files Securely in Oracle Storage Cloud Service


SCS supports encryption. With this mechanism you can store your files in SCS with an encryption key that you provide. Here you are a java example: package es.jmu.testscsencrypt; import oracle.cloud.storage.*; import java.io.*; import java.security.KeyPair; import java.security.KeyPairGenerator; import java.security.SecureRandom; import java.util.UUID; public class TestEncrypt { public static void main(String[] args) { try { Long t0 = […]

More

BPM12c WorkSpace: FlexyFields for Custom Views


With Fexy Fileds you can configure custom views (filtering tasks list shown with flexy fields values criteria) as well as show business data related with human tasks. STEPS Create HumanTask Data variables: Assign process data to HumanTask variables: Deploy and create instances. Configure BPM WorkSpace FleyFields: Configure WorkSpace Views: Administrator can create custom views for […]

More

WCPortal 12c | PortalSharedLibrary | ADFBC TaskFlow issue: javax.naming.NameNotFoundException: While trying to look up comp/env/jdbc/xxxx


  I’ve got this error with a taskflow that uses ADFBC: <Jan 15, 2016 3:06:50 PM CET> <Error> <oracle.webcenter.webcenterapp.internal.view.error.WCErrorHandlerImpl> <BEA-000000> <getDisplayMessage Called=javax.naming.NameNotFoundException javax.naming.NameNotFoundException: While trying to look up comp/env/jdbc/HERCULESDS in /app/webapp/webcenter/949491555.; remaining name ‘comp/env/jdbc/HERCULESDS’         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1224)         at weblogic.jndi.internal.ApplicationNamingNode.lookup(ApplicationNamingNode.java:144)         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:307) This SOLUTION worked for me: Edit bc4j.cfg and put the name of […]

More

HowTo Configure WorkManagers for ejb’s


Put the following inside each weblogic-ejb-jar.xml: <?xml version=”1.0″ encoding=”UTF-8″?> <weblogic-ejb-jar xmlns=”http://www.bea.com/ns/weblogic/90&#8243; xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance&#8221; xsi:schemaLocation=”http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/920/weblogic-ejb-jar.xsd http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd”&gt; <weblogic-enterprise-bean> <ejb-name>InfoPaisesBean</ejb-name> <stateless-session-descriptor> <pool> <max-beans-in-free-pool>50</max-beans-in-free-pool> </pool> </stateless-session-descriptor> <jndi-name>JNDI_3EJBInfoPaises</jndi-name>     <dispatch-policy>     seurecatWM     </dispatch-policy> </weblogic-enterprise-bean> </weblogic-ejb-jar>

More

Cannot load /u01/wls_plugin/lib/mod_wl_24.so into server: libopmnsecure.so: cannot open shared object file: No such file or directory


I’ve configured weblogic proxy plugin 12c for linux according to documentation but I run into “Cannot load /u01/wls_plugin/lib/mod_wl_24.so into server: libopmnsecure.so: cannot open shared object file: No such file or directory” The error: [root@localhost ~]# apachectl restart Job for httpd.service failed. See ‘systemctl status httpd.service’ and ‘journalctl -xn’ for details. My settings: [root@localhost ~]# vi […]

More