Results 322 comments of Edwin Biemond

Hi, there can be only 1 version of a shared lib exist, that is the puppet way like rpm etc. so that is why there is an undeploy which fails...

Hi, wlsbjmsrpDataSource is the reporting datasource and you can create it yourself or with RCU is default located in soa-infra DB schema. So in case OSB 10 or 11g and...

just need to update this py OSB template and do this https://github.com/biemond/biemond-orawls/blob/b34e6b38586cc6835c288ccdfc2e3806c6ce6e32/templates/domains/extensions/osb_template.py.erb ``` if WEBLOGIC_VERSION in [1036, 1111] and OWSM_ENABLED == false: print 'Delete wlsbjmsrpDataSource datasource' try: delete('wlsbjmsrpDataSource','JDBCSystemResource') except: print...

ok very strange , maybe some low level OSB template thing. let's replace the delete with unassign of this datasource on osb_server1 & AdminServer also this will fail https://github.com/biemond/biemond-orawls/blob/b34e6b38586cc6835c288ccdfc2e3806c6ce6e32/templates/wlst/wlstexec/fmw/assignOsbSoaBpmBamToClusters.py.erb#L555 let's...

ok, I will do a test, so you basically want an OSM 11g cluster without any DB dependency

Hi, So as default the datasource is connecting to the derby DB, which I disable in case of an OSB domain https://github.com/biemond/biemond-orawls/blob/master/manifests/domain.pp#L674 So the quickfix can be this if (...

I guess these fails unassign('JdbcSystemResource' ,'*', 'Target' , All) or assign('JdbcSystemResource', 'wlsbjmsrpDataSource' , 'Target', OsbAdmin) because there is no datasource left when we delete wlsbjmsrpDataSource. Probably this unassign('JdbcSystemResource' ,'*', 'Target'...

Ok, it works now with this commit 542050f36ddbadfc971459db8960c865ab7d4db8 but with latest JDK 7 you also need to set this to enable derby from java $JAVA_HOME/jre/lib/security/java.policy and make the following changes....

HI, you shouldn't try to delete it, use derby or oracle db else probably you get the OSB Reporting ear will be failing. if you still want to delete it...

Ok, can you provide me the real parameters values of domain.pp plus what do you want to achieve here. Do you want to use a RCU repository? For 11g you...