Integration Web Service Support?

Does the new Integration 7.0 BPM have web service/SOAP support?
In particular, I would like to start my workflow from a web service call, or be
able to call web services directly from tasks in my workflow. Can this be done?
Please advise,
Dave

No it does not. You have two choices. There is a alpha plug-in available to call
web services from a node task. It is for Integration 2.0. I have not been able
to run it against 7.0. The other option is to utilize workshop. There is a sample
on dev2dev. Search for integration interoperability.
"David Mrozek" <[email protected]> wrote:
>
Does the new Integration 7.0 BPM have web service/SOAP support?
In particular, I would like to start my workflow from a web service call,
or be
able to call web services directly from tasks in my workflow. Can this
be done?
Please advise,
Dave

Similar Messages

  • Does web service support all the properties in the standalone BI console?

    Hi,
    Currently I am using BI web service API to get the report and its parameters and so on. But I find that the object definition in the web service can't be full defined to match the properties in the console UI. For exaple, ReportDefinition object there is no description property, so I can't get the desc by the ReportDefinition object (By now I don't know how to get it). Another sample is, there is no Parameter object defined in the web service, only ParamNameValue object, so I can't get the default value for the parameter defined in the console UI.
    Is there any solution for me?
    HELP!!!

    It is just not working for me. I am using static stub.
    After tracking the HTTP traffic, I found that the WL70 server is not issuing any
    cookie. I have configured all the parameters for tracking session in the web application,
    but I still don't see any cookie in the HTTP headers from the server. I also tried
    to invoke the service using a browser, still no cookie seen. Is this a bug or
    there is some other configuration for the server?
    - Hao
    "manoj cheenath" <[email protected]> wrote:
    By default client will maintain the session. You dont have to set this
    property.
    Are you using static or dyn client?
    Also, you should use the same instance of the stub for all your invokes
    (all invokes to be in the same session).
    regards,
    -manoj
    "Hao Chen" <[email protected]> wrote in message
    news:[email protected]..
    It is not working for me.
    When I set the "javax.xml.rpc.session.maintain" property, weblogicthrows
    "UnsupportedOperation"
    exception and be default I don't see any session information beingpassed.
    How do I configure the client side or even the server?
    Thanks.
    - Hao
    "manoj cheenath" <[email protected]> wrote:
    WL70 client does support http session. Is this not
    working for you?
    regards,
    -manoj
    "Hao Chen" <[email protected]> wrote in message
    news:3d6402ac$[email protected]..
    Does anybody know how to make WL70 Web Service support sessions?
    The "javax.xml.rpc.session.maintain" property on Stub does not seemto
    work.
    Without session support, it is almost no use for us because we haveto
    authenticate
    the user each time.
    Thanks in advance.
    - Hao

  • Does WL70 Web Service Support Sessions?

    Does anybody know how to make WL70 Web Service support sessions?
    The "javax.xml.rpc.session.maintain" property on Stub does not seem to work.
    Without session support, it is almost no use for us because we have to authenticate
    the user each time.
    Thanks in advance.
    - Hao

    It is just not working for me. I am using static stub.
    After tracking the HTTP traffic, I found that the WL70 server is not issuing any
    cookie. I have configured all the parameters for tracking session in the web application,
    but I still don't see any cookie in the HTTP headers from the server. I also tried
    to invoke the service using a browser, still no cookie seen. Is this a bug or
    there is some other configuration for the server?
    - Hao
    "manoj cheenath" <[email protected]> wrote:
    By default client will maintain the session. You dont have to set this
    property.
    Are you using static or dyn client?
    Also, you should use the same instance of the stub for all your invokes
    (all invokes to be in the same session).
    regards,
    -manoj
    "Hao Chen" <[email protected]> wrote in message
    news:[email protected]..
    It is not working for me.
    When I set the "javax.xml.rpc.session.maintain" property, weblogicthrows
    "UnsupportedOperation"
    exception and be default I don't see any session information beingpassed.
    How do I configure the client side or even the server?
    Thanks.
    - Hao
    "manoj cheenath" <[email protected]> wrote:
    WL70 client does support http session. Is this not
    working for you?
    regards,
    -manoj
    "Hao Chen" <[email protected]> wrote in message
    news:3d6402ac$[email protected]..
    Does anybody know how to make WL70 Web Service support sessions?
    The "javax.xml.rpc.session.maintain" property on Stub does not seemto
    work.
    Without session support, it is almost no use for us because we haveto
    authenticate
    the user each time.
    Thanks in advance.
    - Hao

  • Web Services support for collection like ArrayList

    Getting this error message:
    "<Info> Did not find property empty in java.util.ArrayList:
    java.lang.NullPointerException"
    Are collections like ArrayList supported or am I trying to do something that
    can't be done? Any suggestions?
    Thanks
    Danny

    Hi Danny,
    Betcha thought I forgot 'bout cha, huh?
    I didn't ;-)
    The short answer to your question is no; WLS 6.1 does not support using any of
    the classes in java.util.*. However, it does support Object arrays as an element
    of an Object array, which means you can have code in you service implementation
    that looks like this:
    public Object[] getNestedObjects()
         Object[] objects = new Object[2];
         objects[0] = new Object[]{
              new String("23.76"),
              new Float((float)23.76)
         // Here, WorkOrder is a JavaBean or an object
         // that implements weblogic.soap.xml.XMLizable
         WorkOrder[] workOrders = new WorkOrder[]{
                        new WorkOrder(),
                        new WorkOrder(),
                        new WorkOrder()
         objects[1] = new Object[]{
              new String("My name is"),
              new String("Slim Shady"),
              workOrders
         return objects;
    The main issue I see with doing this is again, interoperability ;-)
    If the SOAP toolkit consuming the WSDL for the web service with the above method
    cannot handle the "xsd:anyType" XML Schema data type, you're in trouble. In general,
    SOAP toolkits want to know what type an element is so they can process it correctly.
    When you use a Variant data type (in Visual Basic) or java.lang.Object (in Java),
    you are basically promoting the use of weak data typing (or late binding). From
    what I've read about SOAP (well, actually what Don Box said he had in mind), XML
    Schema and namespaces were adopted to combat this very thing- weak or no data
    typing. Personally, I agree ;-) I think strong data typing makes processing a
    SOAP request much easier and faster, for everyone. Don't get me wrong, I don't
    have anything against object casting, but SOAP parameters (and return values)
    are not objects. They are XML elements, just like the other parts of the SOAP
    message. There is no behavior, just state. This being the case, isn't it safer
    to stick with the data types (e.g. arrays, structures, primitives, etc.) defined
    in the SOAP spec and "XML Schema Part 2: Datatypes" document? Enough SOAP boxing
    (pun intended). If you are interested in the "complexTypes" object graphs (using
    developer defined classes that implement weblogic.soap.xml.XMLizable) lab results,
    I can send you a zip. The biggest difference between using JavaBeans and objects
    that implement weblogic.soap.xml.XMLizable, is that you have much more control
    over which Java objects the later gets serialized/deserialized to/from. With classes
    that implement weblogic.soap.xml.XMLizable, the SOAP processor passes you the
    actual XML stream for the SOAP parameter (which in this case, is your developer
    defined class). It (the SOAP processor) also calls your developer defined class
    to get an XML representation for it's data types. It works great with Java clients
    (using the client.jar, of course), and I'm trying it out with .NET and MS SOAP
    clients this weekend. The most interesting revelation was figuring out how wsgen
    (well, actually the WSDL processor) generates the information in the <types> element
    of the WSDL ;-) I actually even know how to code an XMLizable so that it produces
    the exact element and attribute names I want. I also figure out how to get it
    to produce an <element ...>, as opposed to a <attribute ...>, and visa versa.
    Of course, WLS 7.0 (and WebLogic Workshop) make all of this a moot point, but
    it was fun to get the SOAP/WSDL processors in WLS 6.1 to "do my bidding" for a
    short while ;-)
    Regards,
    Mike Wooten
    "Danny Ngo" <[email protected]> wrote:
    >
    Hi Mike,
    Thank you for your response. Do you know if WLS 6.1 Web Services support
    the
    return of nested object array (object that contains other object arrays).
    Thanks
    -Danny
    "Michael Wooten" <[email protected]> wrote:
    Hi Danny,
    For interoperability (with non-Java SOAP implementations)reasons, the
    Java collections
    are not supported in WLS 6.1 ;-) You should consider using an arrayin
    place of
    this.
    Regards,
    Mike Wooten
    Danny Ngo <[email protected]> wrote:
    Getting this error message:
    "<Info> Did not find property empty in java.util.ArrayList:
    java.lang.NullPointerException"
    Are collections like ArrayList supported or am I trying to do something
    that
    can't be done? Any suggestions?
    Thanks
    Danny

  • How Web Services support transactions ?

    Hello,
    I have this questions:
    - Web services support statefull?
    - There is some specification about 2PhaseCommit for Web Services?
    - How Web services handle transactions (commit, rollback)?
    - How can I handle commit across multiple systems (using web services)?
    There are standards that support this topics?
    Best regards,
    Luis Carlos

    Yes and no. <a href="http://www.w3.org/Protocols/rfc2109/rfc2109.txt">rfc2109</a> . This means that cookies provide a kind of session and therefore state, which can be hold on server side.
    SAP ABAP ERP holds session:
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/b7/d7baaf1481a349ab723e3acd7334b3/frameset.htm">Providing and Consuming Web Services</a>
    "WSDLs - There are two kinds of WSDLs – Standard and SAP WSDL. The standard WSDL is provided for those users who will use tools from other vendors to create clients. For SAP users, there is an extended SAP WSDL. This is an extended version of WSDL and can be parsed using SAP tools (SAP Proxy Generator), thus providing information about additional Web service requirements such as authentication, session, and so on."
    for me is also the technical implementation - how is the webservice session managed on server and on client -  not totally clear. If someone can help me to find exaxct technical details. Unfortenately I also always used it (esp. with Web Dynpro) without thinking about details.

  • Integrating Web Services Manager with Oracle Portal and SSO

    Hi,
    I wanted to throw this out there and make sure I was on the right track and also if somebody can point me to some resources online that might help. Basically, we have OWSM acting as a Gateway securing some web services. Oracle Portal is integrated w/ Oracle SSO (as well as using OID). What is the best way to pass the credentials to the OWSM from the Portal for authentication purposes? I believe using SAML voucher token is the way to go, but I'm not positive. Has anybody done this before and if so, what methodology did you use? I'm assuming since using SSO, we don't necessary want to also pass in the password.
    Thanks,
    Nathan

    I have noticed that nobody has same kind of situation and this is not intresting question. Still we have same problem and I have heard many oracle employee saing that this behaviour is wanted situation. In our kind of virtual host enviroment it would be nice to choose behaviour of Single-sign-on server and I request oracle support to find out ways to enable this option... I would be pleased if some oracle development would say opinion about this mater. Waiting for ideas.

  • Data Integrator Web Service Job State

    I would like to know if there's any way, through DI's web services to know if a job is running on the job server or not.  I am building a .NET application that will allow a user to manually launch a job, but I need to prevent the users from launching the job if it's already running.
    I am using Data Integrator 7.2
    Thanks

    you can check the following post with similar discussions
    Re: Extracting JOB_ID for WebClient via webservice
    Extracting JOB_ID within the DS Job

  • Web Service Support

    Hi,
    I was wondering if the web service wsdl import and class generation supports all the different types of encodings (RPC, Document Literal,etc..).
    I am getting a null being returned...I was wondering if there is a way to get the actual soap response or to output it in some way...to see whats going wrong.
    Thanks,
    Ashish

    Hi,
    I was wondering if the web service wsdl import and
    class generation supports all the different types of
    encodings (RPC, Document Literal,etc..).Please see the JAX-RPC spec at http://java.sun.com/xml/downloads/jaxrpc.html for a complete explanation of the types of encodings supported.
    >
    I am getting a null being returned...I was wondering
    if there is a way to get the actual soap response or
    to output it in some way...to see whats going wrong.Have you checked the deployment server log? From the server navigator, on the localhost:4848 node, choose "View Server Log" from the context menu.
    - David

  • Web Service Support for WebLogic

    Add Support for Web Services to WebLogic using IONA's XMLBus
    For anyone interested in Web services, IONA has just released a free
    technology preview of iPortal XMLBus, with support for BEA WebLogic 6.0
    patch 1. You can download it today from www.xmlbus.com, a Web site entirely
    dedicated to Web services.
    The iPortal XMLBus Technology Preview enables Java Developers to turn
    existing EJBs and Java Applications into Web services. XMLBus is 100% pure
    Java and installs seamlessly on top of the
    WebLogic. It implements the W3C v1.1 draft specifications of SOAP and WSDL.
    SOAP is the communication protocol used by Web services to traverse over
    HTTP, SNMP, and FTP. WSDL has become the standard for describing Web service
    interfaces in XML.
    XMLBus automates the process of turning Java classes into Web services,
    ensuring that Java developers do not need to learn a whole new programming
    language to turn existing applications into Web services.
    Wizards guide the developer through the identification of interfaces and
    methods the developer wants to become a Web service. The wizard deploys a
    SOAP Listener and a WSDL interface for that Java Class, as well as Java
    client proxy applications. The client proxy can easily be incorporated into
    any Java Application to invoke the corresponding methods described in the
    WSDL.
    Download a free copy of the iPortal XMLBus Technology Preview from:
    http://www.xmlbus.com/work/
    Post Questions to the XMLBus Newsgroup:
    news://inews.iona.com/iona.products.xmlbus
    For more information on SOAP or WSDL, reference: http://www.xmlbus.com/learn
    thanks
    becky
    Rebecca Dias
    Technical Product Manager
    IONA Technologies
    http://www.iona.com
    http://www.xmlbus.com
    Mailto:[email protected]

    This is fixed now. Someone had defined a Servlet for the web service in web.xml that was preventing the EJB container to kick in.
    Edited by: user572625 on Aug 25, 2011 11:54 PM

  • WCF Web Service Support

    Does Xcelsius support Microsoft Windows Communication Foundation Web Services? I've downloaded the trail version of Xcelsius Engage 2008 and when I try to load a WCF WSDL I get an error message stating Unable to Load.
    Thanks in advance,

    Hi Zhong,
           Thanks you for your reply and shared link. I have read that post before i post here. I'll read again.
           I do understand on "PreAuthenticate" like this. I'll be receive 401 first request if i set "PreAuthenticate=true". Because i haven't pass authentication to server. After authentication is successful
    I'll receive 200. So response should be like 401,401,200. Same as your explanation to me.
    But it does not mean it'll send the authentication information the first time HttpWebRequest send request to the server. So the server will give you a 401 response at the first request, then the HttpWebRequest will resend the request with the Authentication header information.
    In the subsequent requests, the authentication information will be cached.
     But why i got 401 again after i passed authentication to server and server already cached the authentication. It should be
    401,401,200,200.
     Now i got 401,401,200,401,200. I confuse on this part.
     If i use below code
    // Below is work but i can't use for my requirement.
    _Cred = new NetworkCredential("user", "password", "domain");
    credCache.Add(new Uri(url), "Negotiate",
    _Cred);
    req = (HttpWebRequest)WebRequest.Create(url);
    req.PreAuthenticate = true;
    req.Credentials = credCache;
    resp = req.GetResponse();
    if (req.HaveResponse)
    resp.Close();
    req = HttpWebRequest.Create(url) as HttpWebRequest;
    req.PreAuthenticate = true;
    req.Credentials = credCache;
    resp = req.GetResponse();
    if (req.HaveResponse)
    resp.Close();
    I'll get 401,401,200,200. Third time response is 200. Only different is user name and password and DefaultNetworkCredentials.
       Am i misunderstand on this? I appreciate your help.
    Regards,
    Yukon
    Make Simple & Easy

  • Asynchronous web services support?

    Hi all
    Please advice is async web service calls are supported in siebel crm on demand. Is web services are configurable through admin interface to support asynchronous?
    Thank you.

    Any Information on Asynchronous Web Services request???

  • Web service - Support package

    Hi,
    Our scenario is based on ECC 6.0 sp12: soon many web service wil be created on that system.
    For this purpose an installation of suport package 14 is sufficient (to get not obsole platform)? Instead it is better for us support package above or enhancement package?
    we do not know if we will use Composition Environment with ESR and SR.
    Thanks.

    Hi,
    Enabling ECC with Enterprise Services is very tedious task and SAP is doing it for you by releasing new Enhancement Packs, so with every Ehp you get set of new services and improved features (for list of services visit here (available in pdf): http://help.sap.com/content/documentation/esoa/docu_esoa_erp.htm)
    If you don't want standard SAP services then you can always develop them by your own (but you must adhere to strict SOA governance to avoid SOA chaos). To develop custom build service there are two ways:
    - Bottom up: build RFC first and then convert it into services (not recommended)
    - Top down: you need ESR to model services and then you can develop those services in ECC.
    For your query on another thread:
    'check if you are on Ehp3 else only definition of service exist (no actual service exist on ECC), Secondly you can't edit standard provider class from SAP you must create copy of service and then enhance'
    I can not do the same thing with ECC sp14 with Composition Environment include ESR?
    ESR = Only definition of services (skeleton only)
    ECC = Actual implementation of service.
    Sometime people can see service in ESR but they wonder why they are not able to use it in ECC,  to be able to use them in ECC you must have corresponding Enhancement pack installed on ECC.
    Regards,
    Gourav

  • Web Services support-JSR-172 implementation

    Are there specific devices which supports Web-Services or all the devices supports JSR-172 ?
    Thanks in advance.
    Krishan

    simple google search will do.... http://www.j2mepolish.org/devices/devices-webservice.html

  • How web services support SAP transactions

    Hi ,
    How does webservices technology support SAP t-codes?
    Regards
    Raju

    Yes and no. <a href="http://www.w3.org/Protocols/rfc2109/rfc2109.txt">rfc2109</a> . This means that cookies provide a kind of session and therefore state, which can be hold on server side.
    SAP ABAP ERP holds session:
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/b7/d7baaf1481a349ab723e3acd7334b3/frameset.htm">Providing and Consuming Web Services</a>
    "WSDLs - There are two kinds of WSDLs – Standard and SAP WSDL. The standard WSDL is provided for those users who will use tools from other vendors to create clients. For SAP users, there is an extended SAP WSDL. This is an extended version of WSDL and can be parsed using SAP tools (SAP Proxy Generator), thus providing information about additional Web service requirements such as authentication, session, and so on."
    for me is also the technical implementation - how is the webservice session managed on server and on client -  not totally clear. If someone can help me to find exaxct technical details. Unfortenately I also always used it (esp. with Web Dynpro) without thinking about details.

  • GL Integration Web Service Errors

    Hi All
    We have completed all the necessary configuration of the DRM web service, updated the relevant values in the GL etc. However, when we try to run the request set in Gl to import values and hierarchies we hit the error below.
    Has anyone seen this error or know where to look to resolve?
    Thanks
    2012.08.09 12:39:03:-- Initializaing Load Segment Values and Hierarchies program ...
    2012.08.09 12:39:03:-- Request ID =503460
    2012.08.09 12:39:03:-- Value Set =GL_ANALYSIS
    2012.08.09 12:39:03:-- Fetching DRM profile options values ...
    2012.08.09 12:39:03:-- Profile: GL_DRM_VALUE_SET_PROP ==> OracleGL.ValueSet
    2012.08.09 12:39:03:-- Profile: GL_DRM_VER_EXPORT_PROP ==> OracleGL.AllowExport
    2012.08.09 12:39:03:-- Profile: GL_DRM_HIER_EXP_PROP ==> OracleGL.AllowHierExport
    2012.08.09 12:39:03:-- Profile: GL_DRM_VER_EXPORT_DEFN ==> EBSValueSetExport
    2012.08.09 12:39:03:-- Profile: GL_DRM_HIER_EXPORT_DEFN ==> EBSHierarchyExport
    2012.08.09 12:39:03:-- Profile: GL_DRM_WSDL_URL ==> http://myserver.com:28080/oracle-epm-drm-webservices/DrmService?wsdl
    2012.08.09 12:39:03:-- Profile: GL_DRM_API_URL ==> http://myserver.com:5240/Oracle/Drm/APIAdapter
    2012.08.09 12:39:03:-- Profile: GL_DRM_USERNAME ==> GL
    2012.08.09 12:39:03:-- Scanning DRM for version to Export...
    2012.08.09 12:39:08:-- oracle.apps.gl.drm.ws.DrmWSClient.getVersions(): Event payload -
    <drm:getVersions xmlns:drm='http://drm.webservices.epm.oracle'/>
    2012.08.09 12:39:08:-- Unexpected Error -> oracle.apps.gl.drm.ws.DrmWSException: Exception when Invoking Web Service -> oracle.apps.fnd.wf.bes.InvokerException: javax.xml.rpc.soap.SOAPFaultException: Cannot getVersions. Error while processing AppParameters in SOAP Header: AppParameters does not exist in SOAP Header.
    oracle.apps.fnd.wf.bes.EventDispatcher.executeSubscription(EventDispatcher.java:891)
    oracle.apps.fnd.wf.bes.EventDispatcher.processSubscription(EventDispatcher.java:556)
    oracle.apps.fnd.wf.bes.EventDispatcher.dispatch(EventDispatcher.java:335)
    oracle.apps.fnd.wf.bes.BusinessEvent.raise(BusinessEvent.java:1819)
    oracle.apps.gl.drm.ws.DrmWSClient.raiseInvokerEvent(DrmWSClient.java:531)
    oracle.apps.gl.drm.ws.DrmWSClient.getVersions(DrmWSClient.java:480)
    oracle.apps.gl.drm.util.DrmLoader.scanDRMVersions(DrmLoader.java:348)
    oracle.apps.gl.drm.util.DrmLoader.runProgram(DrmLoader.java:133)
    oracle.apps.fnd.cp.request.Run.main(Run.java:157)

    When invoking the DRM Web Service, a SOAP header is required. The error you're getting is because no SOAP header is included in your SOAP message. Read below from the API guide:
    Connection information must be passed as a SOAP header for each Web service call. The AppParameters element, defined in the DrmService.wsdl document, provides a schema definition for this SOAP header. The AppParameters SOAP header contains the following information which is needed to connect to the Data Relationship Management API Adapter:
    · serverUrl - URL for the API adapter configured for a Data Relationship Management application
    For example: http://localhost:5240/Oracle/Drm/APIAdapter
    · sessionParams - Parameters for the Data Relationship Management user session
    The sessionParams that are available are:
    o ProductVersion - Version number for the Data Relationship Management application
    o CultureName - Identifier for formatting date, time, and decimal values. Any standard specific culture can be specified.
    o UICultureName – Identifier for language selection to use for exception messages from the Data Relationship Management application server:
    § en-US (English)
    § fr-FR (French)
    § de-DE (German)
    § ja-JP (Japanese)
    § zh-CN (Simplified Chinese)
    § ko-KR (Korean)
    o TimeZoneID – Client TimeZone identifier (see list of standard time zone IDs below)
    sessionParams example:
    ProductVersion=11.1.2
    CultureName=en-US
    UICultureName=fr-FR
    TimeZoneID=Tokyo Standard Time

Maybe you are looking for

  • Report or Transaction  of customer data

    Hi all, I would like to know if the SAP has the report or transaction data to list of customers, such as: code, name, e-mail, address, country,.... thanks, Gullo Edited by: Ana Claudia Gomes Machado Fernandes on May 25, 2009 1:43 AM

  • Two questions before migrating to Revel

    Hello, Two questions, please: 1. I chose Photoshop.com because it was the only service which did not reduce the photo quality of the files I uploaded. Will Revel maintain that same policy? 2. If I move the photos, will I need to update any link of an

  • Email to html

    How to transfer emails containing hyperlinks to a dreamweaver website page and not loose the links. I have maintained many email updates, containing hyperlinks, sent out to my group over the years. I would like to have a page on my website where thos

  • Font size increase on printing

    I have increased the font size on the email screen. I wish that to be the font size when I print the message. Please tell me how to do this? Jack

  • Firefox won't open at all

    Firefox ia not working, it will not open at all, although it is showing up on the bottom bar as if it IS open. I have tried un-installing and updating it but it is still happening.