Showing posts with label Jdeveloper. Show all posts
Showing posts with label Jdeveloper. Show all posts

Monday, January 15, 2018

BPM MDS Connection Error -BPM-80112: Generic Security Error. Cause: Invalid Token Error in Verification Service. - ORABPEL-30503

Hello ,


I faced the following issue while creating the MDS connection in Jdeveloper 11.1.1.7

Test Failed: BPM-80112: Generic Security Error. Cause: Invalid Token Error in Verification Service.
Invalid Token Error in Verification Service. Received invalid token in null.
Verify that correct token is passed.


ORABPEL-30503 : Invalid Token Error in Verification Service. Invalid Token Error in Verification Service. Received invalid token in getTokenType. Verify that correct token is passed
























Solution:

Copy the bpm-services.jar from the server Replace the bpm-services.jar on the client application with the one from the server Ensure that after any patches are applied that the jars on the server are replaced in the client application. This also applies to using jars within JDeveloper which can become out of sync due to patches not being applied on both dev and server machines. You may need to replace the bpm-services.jar located here JDeveloper/soa/modules/oracle.soa.workflow_11.1.1/bpm-services.jar with the one located here [soa_install_dir]/soa/modules/oracle.soa.workflow_11.1.1/bpm-services.jar.

Good Luck

Sunday, November 3, 2013

ADF Tree based on self join case, 3 functionality.(drag & drop, delete & move children, delete & delete multiple level children)

In this post I tried to show 3 operation for ADF tree using simple solution.   the drag and drop , delete node and move it's children to up level and delete node and delete multiple level children. 
the drag and drop
As shown in the images below, Having a two level tree. Expanding a node will make all detail nodes appear. drag  node from one level and drop him to another.


In the Model project we just need the  view objects  should be updatable connected with a viewLink based on common attribute ParentId. In the view object we need a bind variable which we also add to the query so that we can execute-with-params.



About delete and node and move it's children node to level up 
through application module method I get select node and update its children parent value by the value of selected root node parent value then delete value
About  delete node and delete multiple level children
  I used the power of sql to get all children for selected root node though customize the query of another updatable view object get multi level children, In the view object we need a bind variable which we also add to the query so that we can execute-with-params
And through application module method I get selected node and delete its multi level children then delete root node


The JDeveloper 11.1.1.7.0 workspace of the sample application and script file for this post can be downloaded from here