Before Deploying the Task Form: Port Changes
If you are not using the default values for RMI or HTTP ports, open the wf_client_config.xml
file in Oracle JDeveloper to change values.
When you want to deploy task details on non-SOA servers, you must configure the wf_client_config.xml
file. This file should be created and added to the task details project only if the task detail is deployed to a separate managed server that is not the SOA server. The <serverURL>
and <rootEndpointURL>
in the file should refer to the SOA server host name and port number.
The following example shows a sample wf_client_config.xml
file.
<?xml version="1.0" encoding="UTF-8" ?> xmlns="http://xmlns.oracle.com/bpel/services/client"> <server default="true" name="default"> <localClient> <participateInClientTransaction>false</participateInClientTransaction> </localClient> <remoteClient> <serverURL>t3://my_host.us.example.com:8001</serverURL> <initialContextFactory>weblogic.jndi.WLInitialContextFactory</initialContextFactory> <participateInClientTransaction>false</participateInClientTransaction> </remoteClient> <soapClient> <rootEndPointURL>http://my_host.us.example.com:8001</rootEndPointURL> </soapClient> </server> </workflowServicesClientConfiguration>