ESB SOAPAction from Siebel

Hi all,
I´m having problem with Siebel Outbound Web Service integration with Oracle ESB.
Basically, Siebel doesn´t send soapAction to ESB, and then ESB throw an exception (java.lang.NullPointerException - not very clear....).
I have imported Siebel WSDL to ESB, and it´s working just fine accessing directly WS endpoint. But Siebel can´t because it doesnt send into HTTP header soapAction to WS.
Please someone with any knowledge in Siebel WS/ESB could help me!!!
If is more easy, my email is: alberto.rossi at gmail.com
Tks a lot,
Alberto

Phani,
Here are the links
Upgrade Siebel Analytics repository  to OBIEE Enivornment
http://siebel.ittoolbox.com/groups/technical-functional/siebel-analytics-l/migration-from-siebel-analytics-to-obiee-need-process-or-procedure-or-standard-used-in-this-process-2522178#M2523833
http://siebel.ittoolbox.com/groups/technical-functional/siebel-analytics-l/analytics-to-obiee-upgrade-3131080
thanks,
Saichand.v

Similar Messages

  • Error while invoking ESB process from a BPEL process

    Hi all
    We have a requirement to call an ESB process from a BPEL process. We are using an adapter wth the ESB's WSDL url. After deploying the BPEL process, the registered ESB is getting called for most values while suddenly some values return the followign error
    *"exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: Connection reset"*
    The catch here is, if we re-run the process with the same values again, the ESB is called successfully! How is it possible for a process to error out and run normally for the same inputs ?
    What could be the possible fix for this? I am thankful for any inputs on this.
    Vijay

    Hi Vijay,
    This is a bug and you can refer the metalink note:
    "Applying Patch 7445876 Results in Error "java.lang.NullPointerException". [ID 942575.1]" for reference.
    Also you can refer the following link:
    "http://puchaanirudh.blogspot.com/2008/12/exception-on-jaxrpc-invoke-http.html" also.
    Thanks,
    Vishwanath.

  • Invoking an ESB service from a PL/SQL procedure (URGENT)

    I used this utl_http example:
    DECLARE
    req Xxm_Web_Service_Client_Pkg.request;
    res Xxm_Web_Service_Client_Pkg.response;
    l_return_status VARCHAR2(2);
    l_msg_count NUMBER;
    l_msg_data VARCHAR2(2000);
    BEGIN
    req := Xxm_Web_Service_Client_Pkg.new_request('alta','xmlns="http://cliente.services.provisioning.vision.com"');
    Xxm_Web_Service_Client_Pkg.add_TagGroup(req,'altaClienteParameters');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'apellido','xsd:string','deHaro');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'email','xsd:string','[email protected]');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'nombre','xsd:string','emilio');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'password','xsd:string','a');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'passwordInstalador','xsd:string','a');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'tipoCliente','xsd:string','1');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'username','xsd:string','1');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'versionContrato','xsd:string','1');
    Xxm_Web_Service_Client_Pkg.add_TagGroup(req,'commonParameters');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'idAdmin','xsd:long','1');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'idCaller','xsd:long','9');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'idCliente','xsd:long','1000000');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'idEmpresa','xsd:long','1000');
    Xxm_Web_Service_Client_Pkg.add_parameter(req,'idEntradaCaller','xsd:long','1');
    Xxm_Web_Service_Client_Pkg.close_TagGroup(req,'commonParameters');
    Xxm_Web_Service_Client_Pkg.close_TagGroup(req,'altaClienteParameters');
    res := Xxm_Web_Service_Client_Pkg.invoke(p_init_msg_list => FND_API.G_TRUE,
    p_url => 'http://198.137.253.178:7777/event/DefaultSystem/clienteService_RS',
    p_action => 'alta',
    x_return_status => l_return_Status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data,
    x_req => req);
    IF (l_return_Status != FND_API.G_RET_STS_SUCCESS) THEN
    dbms_output.put_line(XXM_Util_Pkg.Get_Msg(l_msg_count));
    END IF;
    END;
    The process deployed is an ESB service .However on execution of the above code I get the following message as the response from the server. Also there is no new instance of the ESB services created (to show that the service was triggered)
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Header/>
    <env:Body>
    <env:Fault xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <faultcode>env:Server</faultcode>
    <faultstring>java.lang.NullPointerException</faultstring>
    <faultactor></faultactor>
    </env:Fault>
    </env:Body>
    </env:Envelope>
    I found the following messages in esb-rt J2EE Application log
    Cluster Topology > Application Server: soasuite.esbprov > Log Files > Search Logs >
    OWS-04052 Unable to determine operation id from SOAP Message
    OWS-04005 An error ocurred for port: EventProvider: javax.xml.rpc.JAXRPCException: java.lang.NullPointerException
    The soap message that I am using in the code (as input to the process) is
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <soap:Body>
    <alta xmlns="http://cliente.services.provisioning.vision.com/"
    soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <altaClienteParameters>
    <apellido>xxxxx</apellido>
    <email>[email protected]</email>
    <nombre>emilio</nombre>
    <password>a</password>
    <passwordInstalador>a</passwordInstalador>
    <tipoCliente>1</tipoCliente>
    <username>1</username>
    <versionContrato>1</versionContrato>
    <commonParameters>
    <idAdmin>1</idAdmin>
    <idCaller>9</idCaller>
    <idCliente>1000000</idCliente>
    <idEmpresa>1000</idEmpresa>
    <idEntradaCaller>1</idEntradaCaller>
    </commonParameters>
    </altaClienteParameters>
    </alta>
    </soap:Body>
    </soap:Envelope>
    Another SOAP message when used directly to initiate the ESB services (by pasting this SOAP on Test WebService option) worked fined
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body xmlns:ns1="http://cliente.services.provisioning.cablevision.com/">
    <ns1:alta>
    <altaClienteParameters>
    <apellido>A</apellido>
    <commonParameters>
    <idAdmin>10</idAdmin>
    <idCaller>10</idCaller>
    <idCliente>10</idCliente>
    <idEmpresa>1</idEmpresa>
    <idEntradaCaller>10</idEntradaCaller>
    </commonParameters>
    <email>[email protected]</email>
    <nombre>AAAA</nombre>
    <password>sssss</password>
    <passwordInstalador>sssss</passwordInstalador>
    <tipoCliente>1</tipoCliente>
    <username>cccccc</username>
    <versionContrato>1</versionContrato>
    </altaClienteParameters>
    </ns1:alta>
    </soap:Body>
    </soap:Envelope>
    Thanks in advance.

    I change p_action value ( before p_action => 'alta' ) now ( p_action => '"alta"' )
    res := Xxm_Web_Service_Client_Pkg.invoke(p_init_msg_list => FND_API.G_TRUE,
    p_url => 'http://198.137.253.178:7777/event/DefaultSystem/clienteService_RS',
    p_action => '"alta"',
    x_return_status => l_return_Status,
    x_msg_count => l_msg_count,
    x_msg_data => l_msg_data,
    x_req => req)
    And the invokation an ESB service from a PLSQL procedure began to work fine !!!
    Thanks for all answers
    Thans Peter !!!
    Claudio

  • Getting error while generating report from Siebel (Siebel/BI Publisher)

    Dear,
    I have completed the integration of siebel and BIP according to the oracle document, I successfully upload the sample template from siebel application to BIP server.
    But now I am facing two issues,
    I am getting error "Unauthorized access, Please contact the administrator."  when I open report on BIP which I have uploaded from siebel.
    When I try to generate report from siebel=>application=>Tables=>S_Contact I am getting the below error when click on table report from Report button.
    (httptransport.cpp (1635)) SBL-EAI-04117: HTTP Request error during 'Submitting Data SendHTTP request': 'Status code - 500'
    (httptransport.cpp (983)) SBL-EAI-04117: HTTP Request error during 'Submitting Data Send HTTP request': 'Status code - 500'
    (soapbinding.cpp (675)) SBL-EAI-04304: Unknown Part ':oracle.xdo.webservice.exception.InvalidParametersException'  for operation 'runReport' exists in SOAP message.
    (outdisp.cpp (247)) SBL-EAI-04308: Operation 'runReport' of Web Service 'http://xmlns.oracle.com/oxp/service/PublicReportService.PublicReportServiceService' at port 'PublicReportService' failed with the following explanation: "oracle.xdo.webservice.
    Invalid User Name and Password for BIP Server
    (xmlpadaptersvc.cpp (2287)) SBL-RPT-50529: Verify BI Publisher Server Userid and Password.
    Error in generating Report Output file /siebel8/sea81/siebsrvr/siebel8/sea81/siebsrvr/xmlp/reports/Rept11-3U7M403.PDF in the XMLP Engine
    (xmlpadaptersvc.cpp (2983)) SBL-RPT-50524: BI Publisher engine failed to generate report.
    Object manager error: ([0] BI Publisher engine failed to generate report.(SBL-RPT-50524) (0x95c55c))
    ( (0) err=2818155 sys=9815388) SBL-OMS-00107: Object manager error: ([0] BI Publisher engine failed to generate report.(SBL-RPT-50524) (0x95c55c))
    (bsvcmgr.cpp (1392) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    (bsvcmgr.cpp (1236) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    (smireq.cpp (425) err=2818251 sys=0) SBL-OMS-00203: Error 9815388 invoking method "GenerateReport" for Business Service "XMLP Driver Service"
    Please help to resolve this issue.
    Regards,
    Soahil

    This specifically means that the destinations have not been configured in the Crystal Job Server.  If you're running 4.x, this may be part of the "Adaptive Job Server" instead of or in addition to a Crystal Job Server.  If you're using 3.1 or earlier, you'll also have to set up the destination in the Destination Job Server.
    You'll have to log in to the CMC, go to Servers, right-click on the correct job server and go to "Destinations".  You'll then add something like "File" or "Unmanaged Disk" to the available destinations and save.  Stop the job server, start it again, and your error should go away.
    Please be aware that unless you're using specific credentials to schedule the report or you're saving to the server where BO is installed, you'll need to make sure that the BO services are running under a network "Services" account that has access to the folder you're scheduling the report to. By default during installation it's set to run under the "Local Services" account that doesn't have access to the network.
    -Dell

  • Error while invokinjg BPEL from Siebel CRM  SBL-EAI-04007

    Hi,
    I am getting the following error when we invoke a BPEL service from siebel CRM through its wsdl. The error message is
    =====================================================================================
    Error invoking service 'ProcessAccountCreationSiebelJMSProducer', method 'process' at step 'Invoke AIA'.(SBL-BPR-00162)
    Error while processing argument ProcessAccountCreationSiebelJMSProducerRequestMessage:payload for operation process(SBL-EAI-04316)
    Integration Object Message error -- object list property set has wrong type: 'ListOfCMUQueryAccount Io' (expecting 'ListOfListOfCMUQueryAccount Io')(SBL-EAI-04007)
    There is a mismatch again, we are trying to send the XML like 'ListOfCMU Query Account Io' in the header level, but the error is expecting xml format as “ListOfSiebelMessage” in AIA
    =====================================================================================
    When the CRM is invoking the middleware, it is appending "Listof" to the root element of the input XML that is going to the BPEL. As the error message shows, the middleware is expecting "ListofListOfCMUQueryAccount Io" but in reality it is expecting "ListOfCMUQueryAccount Io". I am not sure how the "Listof" is getting appended to the root element.
    The basic solution for such a problem is that wrong input type has been set as mentioned in the error. But, this is not true. The input expected by the middleware has the root element tag of xml as ListOfCMUQueryAccount Io and the root element tag sent by the CRM is ListOfCMUQueryAccount Io. i am not sure from where the "Listof" tag got appended. I have learnt from google that this is a product defect. Please let me know the exact problem for this. Any help will be highly appreciaed.

    Hi,
    We are not sending Pricelist Info while product synk, as per BRM team they are doing following :
    1. created a product
    2. attached the product with a deal
    3. the deal is attached to a plan
    4.comnmiting Product
    previously we were using Siebel 8.1.1 SIA [21111] and AIA2.0.1 at that time also they did not pass value for Pricelist but that time Products was getting synk without issue.
    now we upgraded to 8.1.1.4 SIA [21225] ENU(*) and applied ACR474 and AIA2.5 and getting above error.
    the data is going to AIA properly but it is facing issue while synk to CRM.
    Please guide,
    Thanks and Regards,
    Suchetana.

  • How to call ESB asynchronously from BPEL

    Hi,
    I have ESB that take input and returns output and fault. As while creating ESB we can not specify as sync esb or async esb. So how would i invoke ESB asynchronously from BPEL?

    ws-addressing is not supported in ESB, so you can not expose ESB as call/reply later, so there is no question of calling from BPEL asynchronously.
    ESB does support store and forward pattern (async), to call such ESB it is simple as calling any other web service.
    Regards,
    Chintan

  • How to write Join View Adaptor which will pull data from Siebel and OID ?

    Hi Experts,
    I wanted to write web service call where OIF will talk to OVD than OVD will have join adaptor which will pull few data like msisdn from Siebel and view data from oid like given name and generate SAML assertion.
    I wanted to know how to write join adaptor for the same
    Help Appreciated.

    Hi Experts,
    Is anyone has any idea on webservice call to OIF which will call OVD that will have join adaptor connecting siebel and oid ?
    any help is appreciated

  • Need to Get Data From Siebel On Demand ( I am new to Siebel Please Help)

    Hi All,
    I have a project in which i need to get data from Siebel On Demand and Automate this process.
    I have downloaded the Custom WSDL file and the Schema file from Oracle Siebel On Demand. I am using IDE WSAD and when i import these files into WSAD i am getting an error stating the schema definitions are wrong. Can anyone help me.....
    I need to complete it asap....
    Edited by: user491578 on Nov 11, 2008 6:50 PM

    You should probably ask Advantech. This question really has nothing to do with LabVIEW SE or NI-ELVIS. You could try posting to the LabVIEW board but there have only ever been two posts regarding 'advantech 4716'.

  • Issue in Migrating Attachments from Siebel to SAP CRM

    Hi All,
    We are doing Data Migration for Attachments into SAP CRM from Siebel. and have an issue for migrated attachments showing blank pages while opening in SAP CRM.
    We  have used all the formats of converting the data into binary and loading the attachments from Application Server.
    But the PDF/File open with blank pages.  The no. of pages in the original attachment and the migrated file from application server matches.
    May i know the best approach of meeting the above Requirement .. Its prioritized issue !!
    Thanks a lot !!

    Go to sm58-->Select IDOC_INBOUND_ASYNCHRONOUS this function module, in menu mar select edit--> execute LUW.
    or take help from sap basis team, can you please check user in the source system have authorizations profile. 'S_BI-WX_RFC' for this u can refer sap note :150315.
    if you need more information refer this document:
    How to check a BW - SAP source system connection - SAP NetWeaver Business Warehouse - SCN Wiki

  • How to migrate the RPD and catalog file from siebel analitics to obiee

    hi all
    How to migrate the RPD and catalog file from siebel analitics to obiee and obiee to obiee 11g
    Thanks
    Sreedhar

    hi sreedhar,
    you can migrate from siebel to obiee 10g...check this out http://debaatobiee.wordpress.com/tag/migration-siebel-analytics-obiee/
    Next install OBIEE 11g and migrate obiee 10g to 11g using this http://prolynxuk.com/blog/?p=424
    hope answers your questions.
    Cheers,
    KK

  • Can I Export Accounts and Delete them from Siebel?

    We have many accounts that need to be deleted from Siebel. They need to be pulled out for now and pushed back in at a later date. How can we do this?
    Thanks,
    Anita

    Anita, I assume you do not want to delete the 80 accounts that have opportunities and it's OK to delete the others including any related objects such as activities and leads. If you change the sales stage on those 80 opportunities to either Closed/Won or Closed/Lost you can then delete all 90,000 accounts and 80 accounts that have opportunities (Closed/Won or Closed/Lost) will not
    delete. The system will not allow you to delete an account with a related opportunity which is Closed/Won or Closed/Lost.

  • Creating siebel image file for Siebel Patch 7.8.2.16 to upgrade from Siebel 7.8.2.14

    I new to installing Siebel Patch 7.8.2.16 for Microsoft Windows 2003 Servers, Mobile Web Client. We are currently running Siebel version : 7.8.2.14 on 7.8.2.14 SIA [19251] ENU patch applied. We need to install upgrade to Siebel 7.8.2.16 to install QF0E26 for an issue with MVG popup. What is the best practice to create Siebel image file from Siebel CD which has multiple JAR files on CD media for Siebel CD Media pack sent to me. Let me know if you need additional details.  Thanks JollyRoger

    Hello Jolly,
    Thanks for using Oracle communities.
    You need to download installables for 7.8.2.16 SIA. Follow below instructions to download:
    1) Login to My oracle support through your credentials
    2) Go to tab 'Patches & Updates'
    3) Enter patch number as '11687049' in 'Patch Name or Number' field and click on search.
    4) Download patch for Windows.
    Once you download, you need to use Image Creator Utility to generate an Installation image.
    Please follow below online bookshelf link on how to create Image.
    http://docs.oracle.com/cd/B31104_02/books/SiebInstWIN/SiebInstCOM_Image5.html#wp1594731
    I hope it helps.
    Best Regards,
    Chetan

  • Data extraction from Siebel to BW - use BC or not

    Hello
    I am doing data extraction from Siebel to BW. I can map just 15% of Siebel fields to SAP BC data sources. Do you still recommend me to use BC or forget it and create whole buch of new infoobjects and custom ods/cubes?

    Hi,
    If data is comming from out of SAP, then carefully select the infoObects, because SAP provided InfoObjects are more meaningful and better integration with other infoobjects(Compound Objects, Navigational and so on).If You are created any custom objects, You have to take care all of them in overall design and architecture.
    I am prefering first to choose existing BC Infoobjects, if not available and then create new objects. But here You need lot of functional knowledge also

  • Not able to connect to an external API URL from Siebel Server

    Hi All,
    We are facing a very basic problem of failing in connecting to an external API URL call from siebel server.
    We are able to access the same URL from Internet explorer on the server.
    what can be the issue. kindly help?
    Regards,
    Nishith

    what siebel component is trying to make the call to the external server?
    nature of the call? SOAP, HTTP GET, POST?
    What if any error does Siebel return?
    I assume the server in windows since you mention connecting from IE on server works.

  • Error when Call DS Smoke Test from Siebel.

    Hi ,
    I am trying to test the DS Smoke test from Siebel. I have configured as per the document. but when I click the Button "DS Smoke Test" button I am getting below error
    Error invoking service 'Policy Automation Determination Server', method 'Assess' at step 'Call Determination Server'.(SBL-BPR-00162)
    Operation 'Assess' of Web Service 'http://oracle.com/determinations/server/10.0/server/types.DeterminationServer' at port 'AdminSmokeTest' failed with the following explanation: "Can not parse request. Reason: request does not contain expected root element: assess-request".(SBL-EAI-04308)
    I have Verifiyed the Message that send by Siebel,the root element is assess-request. I have copied the Message below.
    can anyone help me to reslove this issue?
    <?xml version="1.0" encoding="UTF-8" ?>
    <?Siebel-Property-Set EscapeNames="true"?>
    - <PropertySet>
    - <Message MessageId="" IntObjectName="Policy Automation Assess Request" MessageType="Integration Object" IntObjectFormat="Siebel Hierarchical">
    - <ListOfPolicy_spcAutomation_spcAssess_spcRequest>
    - <assess-request>
    - <ListOfsession-data>
    - <session-data>
    - <ListOflist-entity>
    - <list-entity entity-type="global">
    - <ListOfentity>
    - <entity id="global">
    - <ListOfrelationships>
    <relationships />
    </ListOfrelationships>
    - <ListOfattribute>
    <attribute datetime-val="2010-10-05T23:36:21" id="created" />
    <attribute text-val="X" id="firstname" />
    <attribute text-val="6734VN8" id="lastname" />
    <attribute text-val="P002704" id="userid" />
    </ListOfattribute>
    - <ListOfattribute-outcome>
    <attribute-outcome outcome-style="value-only" id="validity_text" />
    </ListOfattribute-outcome>
    </entity>
    </ListOfentity>
    </list-entity>
    </ListOflist-entity>
    </session-data>
    </ListOfsession-data>
    </assess-request>
    </ListOfPolicy_spcAutomation_spcAssess_spcRequest>
    </Message>
    </PropertySet>

    Hi there,
    Can you put in your response what version of the following components you are using:
    - OPA Connector for Siebel
    - Siebel
    From first glance, I suspect that you are not sending the request to the correct Determinations Server URL/end point. The Determinations Server generally starts several End points for each rulebase that it deploys.
    Check the Outbound Web Service by going to; Administration - Web Services --> Outbound Web Services
    - Search for the web service with name space "http://oracle.com/determinations/server/10.0/server/types"
    - Select the Service port "AdminSmokeTest"
    - Check the address, it should be something like: "http://localhost:8888/siebel-determinations-server/assess/soap/generic/10.0/AdminSmokeTest"
    It might help if you posted the address in your configuration here.
    Cheers
    Frank

Maybe you are looking for

  • Deleting a table or a sheet in Numbers for iPad

    Hi, I think I must be getting fairly thick as I get older. I cannoy see how to delete a table or a sheet from a numbers worksheet. I have searched this forum but couldn't seem to turn up any discussions. Andrew.

  • No signal in Sweden on EE

    In Sweden have no signal on phone, tried selecting 2 and 3G but still no signal. Asked EE last week if I needed to do anything when going aboard, they said no. Any suggestions Thanks

  • 6230i help plz pzl :(

    i Have a 6230i i have connected it to my pc but i need a MMC to explore the fetures i havnt got a MMc is there any other way i can connect whtih my computer p.s ashamed but truth is i dont now what sync is so can u say full information plz thx alot H

  • How can I add customer's information?

    I can add user to the wlcs_user table with jsp now . <um:createuser.............> But 1. How can I add user to customer with jsp? 2. How can I add user's information eg:cardid,e_mail,address etc) with jsp? which table these information will put into

  • How to set inner glow in style ?

    I create a style with DropShadowEffect which the shadow of the button is outer glow. However i want to did something when MouseOver, there is inner glow on the button. Anyone have idea on how to do it on style ?Thank you. <Style x:Key="ButtonStyleTes