Skip to main content

Posts

Showing posts from February, 2021

How to import wsdl in Siebel Tools

Please your wsdl file in Temp folder. E:\siebel\8.2.2.0.0\Tools_1\TEMP Open Siebel Tools and Login. Click on "New" button, "New Object Wizards" window will open go to "EAI" tab and select "Web Services". Click "OK". On "WSDL Import Wizard" provide the Project and specify the wsdl file using "Browse" button and click "Next>". In Next window click on "Finish" button. On Finish below objects will be created in the repository. in Tools Integration Object(s) Business Service(s) and in application Outbound web services. See Also: How to host middle ware or website on iis manager for Siebel How to create and publish Inbound Web Service in Siebel based on Workflow

How to host middle ware or website on iis manager for Siebel

Go to web server and paste the published code on below path (you can chose any path) : C:\inetpub\wwwroot Now from Start  (press windows key) type iis and open "Internet Information Services (IIS) Manager". Right click on "Site" folder and from menu click on "Add Website.." Provide the "Site name", "Physical path" (from step 1) and "Port" and click "OK" button. All done. For testing right click on newly added and from menu go to "Mange Website" and from its child menu click on "Browse". Site will be open in default browser. In my case I need to access the asmx page so I added my asmx page path (after the default folder selected in physical path) . In case if it is middle ware for external service, from "Service Description" link get the wsdl definition (copy the code from <wsdl:definitions to </wsdl:definitions> and save as ".wsdl" using notepad) and import in Sie...

How to sort and add search specification in Siebel Applet Load script

Normally we use Search specification filed in Applet List, but sometime we have to add long search expression which Search specification field can not contain (max length is 255 characters). For that we can add search specification in applet load server scripts. Right click on applet and from menu click on "Edit Server Scripts". From functions list click on "WebApplet_Load". First get the bussiness component by follow below script var oBusComp = this .BusComp () ; Now add with (The ' with ' statement adds the given object to the head of this scope chain during the evaluation of its statement body.) and statement Add Sort specification as below SetSortSpec( "Created(DESCENDING)" ); Now write search specification on the desired fields for mvl field you need to use "EXISTS". var Search1 = "EXISTS ([Case Contacts] = '" + case_id + "')" Using AND/OR you can extend the search specification. var Search1 = "...