Monday, April 15, 2013

How to test Siebel Inbound Webservices in Local

Follow the steps below to test Webservice from Local:

1. Add the parameters below in client CFG in Siebel section

EnableWebServices =TRUE
WebServicesPort=2330

2. To confirm that the siebel.exe process is listening



From the command prompt, type the following:

netstat -a -p TCP



Examine the output for the port number you set in the application configuration file, for example:

TCP mycomputer:2330 mycomputer.mycompany.com:0 LISTENING


3. To Test the webservice from SOAP UI use the URL below:
http://localhost.:2330?SWEExtSource=WebService&UserName=&Password=

For detailed information about Testing te webservice from Local follow the bookshelf link:
http://docs.oracle.com/cd/E14004_01/books/EAI2/EAI2_WebServices12.html


Monday, February 4, 2013

How to submit an Asynchoronous Request in eScript

The eScript below helps you to invoke the WF process asynchronously.  Like this we can call any WF process asynchronously from the Business Service / BC / Applet scripts.

var oBS = TheApplication().GetService("Asynchronous Server Requests");

var psInputs = TheApplication().NewPropertySet();

var psOutputs = TheApplication().NewPropertySet();

var psChild = TheApplication().NewPropertySet();

var sObjId = this.GetFieldValue("Id");

psInputs.SetProperty("Component", "WfProcMgr");

psChild.SetProperty("Object Id", sObjId);

psChild.SetProperty("ProcessName", "Sample WF Process Name");

psInputs.AddChild(psChild);

oBS.InvokeMethod("SubmitRequest", psInputs, psOutputs);


Friday, January 11, 2013

How to Drop and Regenerate Triggers

To drop trigger:

1. Navigate to Application - Server Management > Jobs
2. Create a new job with Component / Job as 'Generate Triggers' with the below Parameters

Privileged User - SADMIN
Privileged User Password - SADMIN User's Password
EXEC - TRUE
Remove - TRUE

To Regenerate Trigger:

1. Navigate to Application - Server Management > Jobs
2. Create a new job with Component / Job as 'Generate Triggers' with the below Parameters

Privileged User - SADMIN
Privileged User Password - SADMIN User's Password
EXEC - TRUE
Remove - TRUE