Does CRM OnDemand supports soap api to login

is there any soap api to login into CRM OnDemand using Outbound SSO feature insead of sending a HTTP request

Hi, There are no SOAP APIs available - Venky CRMIT

Similar Messages

  • Does CRM OnDemand has the exam to take?

    Hi,
    Does CRM OnDemand has the exam to take if I want to certified?
    Could you please provide the link?
    Thanks
    Pae

    No, there is currently no certification exam for the Oracle CRM On Demand product. We used to have a certification program, but it was discontinued due to very low demand. However, for Oracle partners, we do have several guided learning paths - each of which has an associated assessment exam. Partners must pass the assessment before gaining certified partner status.

  • Does edge animate support any APIs for problematically defining the keyframe transitions ?

    Hi All Edge Animate Enthusiasts
    While playing around with the timeline window , I got a good idea of defining keyframes and modifying css properties of elements for transitions. However , when I look at the Edge Animate JS API, I see that there are functions available only for playing , stopping timeline from specific points ( time , label etc) . This obviously means that the animation sequence should have been defined in the timeline already , but what if I want to dynamically create a keyframe transition for an element in runtime.
    Does Edge Animate support it ?
    Thanks
    -Shyam

    The answer is no. But you can always write plain javascript code to achieve that, using the Edge API just for selecting various elements.
    But I doubt if generating dynamic keyframes using javascript will work as per http://stackoverflow.com/questions/18481550/how-to-dynamically-create-keyframe-css-animati ons
    And if you just want to add a static keyframe animations, then you can create a css file where you define such animations for a class say "myAnimation", and add this class dynamically to the html element which you want to animate by calling addClass() function.
         *You can insert the css rules or link the css file in the html page, by manually editing the html page using any text editor.
    hth,
    Vivekuma

  • Does Oracle Interconnect support SOAP?

    Hi,
    I want to know that whether Oracle Interconnect support SOAP xml or not?
    If yes, then how will we handle SOAP xml?
    Regards,
    Koushik

    No.

  • Does flex/actionscript support SOAP MTOM?

    as titled.

    i found feature request http://bugs.adobe.com/jira/browse/SDK-12723
    Does anyone know could the priority of the issue be raised?

  • Some Questions about customization degree of Siebel CRM OnDemand

    I am new to Siebel CRM OnDemand, had some concerns on customizaiton of Siebel CRM OnDemand comparing to Siebel enterprise version.
    1. Siebel OnDemand only support to create 3 new objects.
    Q:
    1) Are they exist objects in Siebel enterprise version, such as quote, order, or totally new objects to Siebel?
    2) How to build new relationships among existing object or between existing and new objects?
    2. Does Siebel OnDemand support to write script, if it does, is it escript or VB script, where to write it?
    3. Does Siebel OnDemand support to add new custom field as joined field to show some info of associate object on current object's UI, such as show account ship to address in SR detail page.
    4. Except to do limited customization in application, is there any way to make more complex customization, such as submitting a customizaiton request to customer care for it?

    1 - The Custom Objects are completely custom. You build the data model from the ground up. There are limitiations to the number of different fields that you can add, but it's pretty big.
    2 - There are pre-defined relationships between Custom Object 1 and Account, Contact, Opportunity, etc. you can't add any more, so make sure that the proper fields are already there that suit your needs.
    3 - No
    4 - No, however Oracle Professional Services can be engaged to do a bunch of stuff, including the development of Custom Web Services. There are Consulting Partners that can be creative, as well.

  • SOAP APIs needed to extract SOAP request arguments for message handler implementation

    1. I am facing problem in using the Message Handler approach for the implementation
    of webservices using SOAP on BEA weblogic 8.1. A SOAP request(XML format) can
    be interrupted using the message handler and hence can be modified before it invokes
    the webservice method. I have been able to successfully extract the SOAP Name
    space xml format as a part of the SOAP request using the APIs given below
    APIs:
    SOAPBody body = env.getBody();
    Name Spaces format:
    <m:sayHello xmlns:m="http://www.bea.com/servers/wls70/samples/examples/webservices/basic/statelessSession">
    <intVal xsi:type="xsd:int">100</intVal>
    <string xsi:type="xsd:string">vikas</string>
    </m:sayHello>
    The above is a Hello world example which invokes the sayHello method with arguments
    as an integer and a string. I have not been able to find the SOAP APIs to extract
    these arguments from the SOAP Body.
    2. But there are XML apis which can extract the tag data from the SOAPBody e.g
    NodeList nl = body.getChildNodes();
    for(int i = 0; i < nl.getLength(); i++)
    Node node = (Node)nl.item(i);
    if(node instanceof SOAPElement){
    SOAPElement se = (SOAPElement)node;
    String operationName = se.getLocalName();
    String value = se.getValue();
    The SOAPBody interface implements the following interfaces (Ref : http://java.sun.com/j2ee/1.4/docs/api/index.html
    javax.xml.soap > SOAPBody )javax.xml.soap.Node, javax.xml.soap.SOAPElement(SOAP APIs)
    org.w3c.dom.Node, org.w3c.dom.Element (XML Parser APis)
    3. But webservice implementation of Weblogic Application server 8.1(webservice.jar)
    doesn't support the XML parser APIs and only supports the SOAP APIs.
    i.e. The SOAPBody Interface of Weblogic Application Server only implements the
    javax.xml.soap.Node, javax.xml.soap.SOAPElement (SOAP APIs) and not the XML APIs
    (org.w3c.dom.Node, org.w3c.dom.Element)
    So the code snippet written as a part of point 2 will not be compiled(give compilation
    error) using the webservice.jar of Weblogic 8.1.
    4. I have tried to compile the same code using the saaj-1_2-fr-api.jar (SOAP 1.2
    apis jar) which I have downloaded from java.sun site. And the code got successfully
    compiled.
    In this latest version of SOAP APIs jar the SOAPBody interface implements both
    the SOAP as well as XML parser Apis.
    5. I was not able to run this code on the Weblogic server , bcoz at the runtime
    weblogic 8.1 is using its webservice.jar instead of saaj-1_2-fr-api.jar. And
    this code was giving me runtime error as
    java.lang.NoSuchMethodError: javax.xml.soap.SOAPBody.getChildNodes()Lorg/w3c/dom/NodeList;
    (see Fault Detail for stacktrace)</faultstring>
    So now I need to find out the version of the webservice.jar of Weblogic 8.1 which
    supports SOAP Apis as well as XML parser apis.
    Otherwise I have to find out the SOAP apis which can extract the tag data from
    the SOAP body.
    Please Help.

    You can use the SAAJ APIs to get the child nodes.
    Example here:
    http://manojc.com/tutorial/sample4/ServerHandler.java
    so instead of using body.getChildNodes(), you have to use
    body.getChildElements() which returns an iterator of SOAPElements.
    Regards,
    -manoj
    http://manojc.com
    "Vikas Garg" <[email protected]> wrote in message
    news:40dfb5e0$1@mktnews1...
    >
    1. I am facing problem in using the Message Handler approach for theimplementation
    of webservices using SOAP on BEA weblogic 8.1. A SOAP request(XML format)can
    be interrupted using the message handler and hence can be modified beforeit invokes
    the webservice method. I have been able to successfully extract the SOAPName
    space xml format as a part of the SOAP request using the APIs given below
    APIs:
    SOAPBody body = env.getBody();
    Name Spaces format:
    <m:sayHelloxmlns:m="http://www.bea.com/servers/wls70/samples/examples/webservices/basic
    /statelessSession">
    <intVal xsi:type="xsd:int">100</intVal>
    <string xsi:type="xsd:string">vikas</string>
    </m:sayHello>
    The above is a Hello world example which invokes the sayHello method witharguments
    as an integer and a string. I have not been able to find the SOAP APIs toextract
    these arguments from the SOAP Body.
    2. But there are XML apis which can extract the tag data from the SOAPBodye.g
    >
    NodeList nl = body.getChildNodes();
    for(int i = 0; i < nl.getLength(); i++)
    Node node = (Node)nl.item(i);
    if(node instanceof SOAPElement){
    SOAPElement se = (SOAPElement)node;
    String operationName = se.getLocalName();
    String value = se.getValue();
    The SOAPBody interface implements the following interfaces (Ref :http://java.sun.com/j2ee/1.4/docs/api/index.html
    javax.xml.soap > SOAPBody )javax.xml.soap.Node, javax.xml.soap.SOAPElement(SOAP APIs)
    org.w3c.dom.Node, org.w3c.dom.Element (XML Parser APis)
    3. But webservice implementation of Weblogic Application server8.1(webservice.jar)
    doesn't support the XML parser APIs and only supports the SOAP APIs.
    i.e. The SOAPBody Interface of Weblogic Application Server only implementsthe
    javax.xml.soap.Node, javax.xml.soap.SOAPElement (SOAP APIs) and not theXML APIs
    (org.w3c.dom.Node, org.w3c.dom.Element)
    So the code snippet written as a part of point 2 will not be compiled(givecompilation
    error) using the webservice.jar of Weblogic 8.1.
    4. I have tried to compile the same code using the saaj-1_2-fr-api.jar(SOAP 1.2
    apis jar) which I have downloaded from java.sun site. And the code gotsuccessfully
    compiled.
    In this latest version of SOAP APIs jar the SOAPBody interface implementsboth
    the SOAP as well as XML parser Apis.
    5. I was not able to run this code on the Weblogic server , bcoz at theruntime
    weblogic 8.1 is using its webservice.jar instead of saaj-1_2-fr-api.jar.And
    this code was giving me runtime error as
    java.lang.NoSuchMethodError:javax.xml.soap.SOAPBody.getChildNodes()Lorg/w3c/dom/NodeList;
    (see Fault Detail for stacktrace)</faultstring>
    So now I need to find out the version of the webservice.jar of Weblogic8.1 which
    supports SOAP Apis as well as XML parser apis.
    Otherwise I have to find out the SOAP apis which can extract the tag datafrom
    the SOAP body.
    Please Help.

  • Does CRM email router support digitally signed emails?

    Hello There,
    I have configured email router in a one of our test environment to check, i am able to trace incoming mails which has digital signed mails get tracked in CRM. 
    Does CRM email router support digitally signed emails? 
    i am not able to trace mails in to CRM,, have you ever faced this ???? kindly suggest i need this to figure this out.
    Thanks,
    Vinay Kumar.
    Vinay Kumar.

    Thanks Vinay, glad you got it working. We were having some issues and its related to the level of rollup and whether certain headers are allowed through exchange or not.
    However MS's answer is that it does not work.
    Confusing eh.
    CHeers
    Stuart
    Stuart

  • Does TT support OCI API except JDBC and ODBC?

    Hi
    Does TT support OCI API except JDBC and ODBC? or Do we have any plan to support OCI in the future

    Oracle policy does not permit us to give any commitment to when or if any specific functionality will be delivered. My understanding is that we plan to deliver this in the next major release of TimesTen (which may or may not be called 8.0) that is released after Oracle 11g (since a lot of the changes needed to enable OCI support for TimesTen are in the 11g client). We currently hope that this release will be available sometime in CY2008.
    You should not rely on any of the above information as it is, as always, subject to change without notice.
    Chris

  • Using Ajax and Siebel CRM OnDemand Web Services

    Hello,
    Is anyone using Ajax to access Siebel CRM OnDemand Web Services from a web page? If so do you perhaps have a code sample?
    thank you.

    Hi Zohaib,
    your problem is that you need to obtain and import the SSL security certificate from your CRMOD server into the certificate store of your client application.
    for example:
    C:\Oracle\Middleware11113\jdk160_18\bin\keytool -importcert -trustcacerts -keystore C:\Oracle\Middleware11113\jdk160_18\jre\lib\security\cacerts -storepass changeit -noprompt -file C:\Users\Mick\Documents\Projects\SCB\DER\DER.cer -alias crmodnew
    To be sure you are using that trust store you can then explicitly set the path to it thus:
    System.setProperty("javax.net.ssl.trustStore", "/Oracle/Middleware11113/wlserver_10.3/server/lib/cacerts");
    This should get you going in accessing CRMOD from your Java code (ie running the java class directly in jdev) i nJDeveloepr 11.1.1.4, however be aware that there is an issue in the embedded WebLogic Server 10.3.4.0 that prevents successfully calling a CRMOD ws (you can login but not invoke a QueryPage for instance). To work around this until it is fixed I suggest you use JDeveloper 11.1.1.3 as the embedded WLS in this does work when accessing CRMOD web services, however you need to undertake the extra steps of enabling JSSE in your embedded WLS as well as importing the above cert into the WLS cert store, ie:
    C:\Oracle\Middleware11113\jdk160_18\bin\keytool -importcert -trustcacerts -keystore C:\Oracle\Middleware11113\wlserver_10.3\server\lib\DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase -noprompt -file C:\Users\Mick\Documents\Projects\SCB\DER\DER.cer -alias crmodnew
    C:\Oracle\Middleware11113\jdk160_18\bin\keytool -importcert -trustcacerts -keystore C:\Oracle\Middleware11113\wlserver_10.3\server\lib\DemoIdentity.jks -storepass DemoIdentityKeyStorePassPhrase -noprompt -file C:\Users\Mick\Documents\Projects\SCB\DER\DER.cer -alias crmodnew
    Cheers,
    Mick.

  • Does Adobe Connect support CAS authentication?

    We use CAS authentication for many of our applications.  Does Adobe Connect support CAS authentication for Single Sign-On?  Our Adobe Connect is hosted.
    Thanks,
    Rod

    Single Sign-on support is only really available with a licensed deployment. With a hosted account you are limited to API's Adobe Connect 9 * Login and requests
    Configuring SSO on a licensed deployment can be found in this document http://help.adobe.com/en_US/connect/9.0/installconfigure/connect_9_install.pdf

  • Retrieving data from Salesforce SOAP API

    Hi
    I would like to using BizTalk 2010 to call the 'query' web method of the SalesForce SOAP API and have it return some data I further process in BizTalk.  There are various online examples, albeit quite old ones, of sections of what I want to achieve
    this but no complete examples with sample code.  I would like to avoid doing any SalesForce APEX customisation.
    So far I have a SalesForce account and have created some contacts.  In BizTalk I've created an orchestration, which calls a Helper class.  This C# helper class just logs into SalesForce and returns a Session ID and Server URL.  BizTalk then
    creates a SalesForce 'query' message, with a query such as 'SELECT FirstName, LastName FROM Contact'.  I then populate the message header with the Session ID and using a dynamic port, set the address to be the Server URL.  This seems ok, I get the
    sessionID and Server URL, but when calling the 'query' method from the orchestration I just get a 'The remote server returned an error: (500) Internal Server Error.' error.
    I really can't see what I doing wrong.  Any advice would be greatly appreciated.
    Colin.

    Correctly pointed out by Ashwin, this error is definitely due to wrong message structure/data value being passed across to the server.
    Periodically there are refresh happening in Salesforce Sandbox database to bring it in sync with production Salesforce database. After such refresh
    there might be problems to connect or communicate with Salesforce.com using SOAP receiver adapter.
    To debug the issue further you can import the latest enterprise WSDL into the SOAP UI tool and set up proxy server details if any. Under each project
    there will be operations such as login, logout, query etc. Right click on query and generate new instance of query. This is because this helps to find out the exact structure of the SOAP message being accepted by Salesforce.com.  There cannot be any change
    in number of tags or name of tags in SOAP message.
    Compare the message structure with the message you have created in orchestration. Issue could be as simple as difference in namespace information.
    For more details refer: Troubleshooting
    SAP-PI and Salesforce.com integration scenario
    Rachit

  • Invoking Siebel CRM OnDemand Web Service via BPEL

    I'm trying to invoke a Siebel CRM OnDemand Web Service via BPEL. Basically, the Siebel guide says to post to a url with user/pwd to get a session ID returned from a cookie. I did that using embedded java and have the session ID as a variable in my BPEL process. My problem is with now calling the Web Service to perform the action. I have a WSDL from Siebel, but the guide says to use an HTTP post with the session ID in the url and the XML in the body. How do I do that? Shouldn't the WSDL handle that when I create the Partner Link? Do I need to use more embedded Java for this or can I set up a Partner Link? I created a Partner Link and it shows the methods I want to use, but I get the following error when I try to call it because I don't know where to add the session ID:
    <ErrorCode xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">SBL-ODU-01006</ErrorCode>
    <ErrorMessage xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">Internal Error: Session is not available. Aborting.</ErrorMessage>
    Any help would be GREATLY appreciated. Please let me know if you need more information.
    THANKS!

    The Siebel OnDemand web services can accept the siebel session token in the URL. Append ';jessionid={%sessionIdFromCookie%}' to the end point. Obviously this has to be done dynamically. Refer to the article called 'Making BPEL Processes Dynamic' (http://www.oracle.com/technology/pub/articles/bpel_cookbook/carey.html) pay particular attention to the 'Eliminating address dependency at run time' section.
    Peter

  • Soa suite v11.1.1.4.0 supports soap 1.2?

    Hi,
    I am using following environment.
    SOA Version: v11.1.1.4.0 - 11.1.1.4.0_110106.1932.5682
    WebLogic Server 10.3.4.0
    Does this soa suite(using bpel and owsm policies) version supports soap 1.2 ?
    This is very urgent. Please provide the inputs.
    Thanks

    Does this soa suite(using bpel and owsm policies) version supports soap 1.2 ?AFAIK, BPEL can be used to invoke the WS implemented with SOAP 1.2 but BPEL itself cann't expose it as a SOAP 1.2 WS. Raise an ER with support if you need any additional feature in the product.
    Regards,
    Anuj

  • Does AS10g Wireless Support Voice Recognition?

    Hi,
    We are looking to allow customers to create service requests in Oracle CRM via a voice recognition interface. The customer could speak answers to pre-defined questions over the phone and this is loaded into the CRM via an XML interface. Does AS10g wireless support this? If so, are there standard templates or does everything need to be custom built? Is this a lot more effort than other types of programming?
    Any help would be appreaciated.
    Paul

    As far as I know, there isn't anything packaged to log SR into Oracle CRM using voice. But there is similar application available for Field Service Technicians. Technicians can get Customer/Task information using normal phone and using voice commands.
    You may try to build a custom application using Mobile XML (MXML) of Oracle iAS Wireless for this purpose.
    Thanks,
    Hardik

Maybe you are looking for