SMTP allowed for BPEL or ESB calls ?

.... anyone know anything about it ? i.e. webservice invocation over SMTP rather than HTTP ...

You should use an adapter for it. Or create on on your on. You colud also use WSIF to bind a web service to a Java calls. This Java class will send your SOAP call over the the SMTP server
But what is the reason? SMTP is used for mail sending? You have the Notifaction engine to send messages (mail/sms/...) and can be used for Human tasks to receive tasks and to reply tasks outcomes.
Marc

Similar Messages

  • Flash tutorial for BPEL and ESB stuff

    Hi
    Thank you for reading my post
    is there any flash tutorial for BPEL and ESB support of Jdeveloper ?
    something step by step which helps me to learn these features of jdeveloper.
    thanks

    Thank you for the link, it was good.
    I want to ask something that i found confiusing.
    there are more than one BPEL designer (development environment) available from ORacle.
    One is Eclipse based, one is Jdeveloper,...
    i want to know, which one is mature?
    thanks

  • I want to build an AA that will allow for rotating call out profiles

    I have UCCX 7. what i'm looking to do is build an auto attendant script so when a caller dials in it will allow for them to reach the oncall person in a different sequence each week\ month. this will need to be triggered only by them calling the ACD access number. I know how the day of week sciprt works just not how to step up the sequencing. has anybody done this before? please respond if you have thank you.
    Kind of like this:
    Jan 2010            Feb 2010
    dial phone 1        dial phone 2
    dial phone 2        dial phone 3
    dial phone 3        dial phone 1

    You can call this script from Applescript (just need to do some escaping of quotes):
    This can be run in Applescript:
    do shell script "
    DestinantionFolder=$HOME/Desktop
    MONTHS=(January February March April May June July August September October November December)
    for f in ~/Desktop/*
    do
         if [[ $( echo \"${f##*/}\" | cut -d_ -f1 ) == \"CLIN\" ]] ; then
              ff=$( echo \"${f##*/}\" | cut -d_ -f2 )
              pd=$( echo \"${f##*/}\" | cut -d_ -f3 )
              date=$( echo \"${f##*/}\" | cut -d_ -f5 )
              date=${date%%.*}
              mo=${date:0:2}
              yr=20${date:4:2}
              Dir=$DestinantionFolder/$ff/$pd/${MONTHS[$mo-1]}\\ $yr/
              if [ ! -d \"$Dir\" ]; then
                   mkdir -p \"$Dir\"
              fi
              mv \"$f\" \"$Dir\"
         fi
    done"
    ...is there a way to trigger this whenever a new file is created to check and see if it needs to be moved
    Yes, with Automator.  When you Open Automator, choose Folder Action
    I copied what you did and while the script ran successfully, I don't see any new folders created.  Your shell script makes sense; I am not sure why it doesn't create folders.
    The script as written only looks for files in the Desktop Folder
    (edit by changing: DestinantionFolder=$HOME/Desktop )
    To test I created a file on my Desktop
      touch ~/Desktop/CLIN_JONES123_JAMES228_LAB_022614.PDF
    and Folders were created and the file moved.
    (Note: I only tested that format.  If the file has any other format, it will fail)

  • Error Calling BPEL from ESB

    I am using the SOA Suite and have a very simple ESB project which picks up files from a directory and calls a BPEL process following a simple XSL translation. I am getting the following error:
    An unhandled exception has been thrown in the ESB system. The exception reported is: "java.lang.Exception: Failed to create "ejb/collaxa/system/DeliveryBean" bean; exception reported is: "javax.naming.NamingException: Lookup error: javax.naming.AuthenticationException: Not authorized; nested exception is: javax.naming.AuthenticationException: Not authorized [Root exception is javax.naming.AuthenticationException: Not authorized] at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:64) at javax.naming.InitialContext.lookup(InitialContext.java:351) at com.oracle.bpel.client.util.BeanRegistry.lookupDeliveryBean(BeanRegistry.java:279) at com.oracle.bpel.client.delivery.DeliveryService.getDeliveryBean(DeliveryService.java:250) at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:174) at com.oracle.bpel.client.delivery.DeliveryService.post(DeliveryService.java:158) at oracle.tip.esb.server.service.impl.bpel.BPELService.processBusinessEvent(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatchNonRoutingService(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(Unknown Source) at oracle.tip.esb.server.dispatch.BusinessEvent.raise(Unknown Source) at oracle.tip.esb.utils.EventUtils.raiseBusinessEvent(Unknown Source) at oracle.tip.esb.server.service.EsbRouterSubscription.onBusinessEvent(Unknown Source) at oracle.tip.esb.server.dispatch.EventDispatcher.executeSubscription(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.processSubscription(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.processSubscriptions(Unknown Source) at oracle.tip.esb.server.dispatch.EventDispatcher.dispatchRoutingService(Unknown Source) at oracle.tip.esb.server.dispatch.InitialEventDispatcher.dispatch(Unknown Source) at oracle.tip.esb.server.dispatch.BusinessEvent.raise(Unknown Source) at oracle.tip.esb.utils.EventUtils.raiseBusiness
    The esb has been deployed to our server (OAS 10.1.3) using jdeveloper. Please can anybody point me in the right direction.

    Not really. There are 2 ways to invoke BPEL.
    1) Over SOAP using an ESB SOAP service that parses a BPLE WSDL. This works like any standard HTTP/SOAP invocation and would be used when BPEL and ESB are not in the same container.
    2) Over Java by add a routing rule to an ESB Routing Servie and select a BPEL process in the BPELSystem as the target. This is the preferred binding when ESB and BPEL are colocate din the same container. This takes advantage of the fact that ESB kistens on the BPEL internal Control jms queue when a BPEL process is deployed into the container. That is how the BPEL processes show up in the BPELSystem ESB service tree.

  • Exception: Call of execute(String) is not allowed for PreparedStatement

    Hi all,
    This query was run fine on SapDB 7.4 from Jave code using prepareStatement()  method:
    declare id11216053819634 cursor for select sc.name, measuredobjectid id from serviceconditions sc, measuredobjects mo where sc.collectionid = mo.collectionid and sc.name like 'DWindowsSLA/%,%,%,%' for reuse
    declare id21216053819634 cursor for select min(sampletime), max(sampletime), name, id11216053819634.id from id11216053819634, d_slastore ss where id11216053819634.id = ss.measuredobjectid and ss.sampletime between '2008-07-14 00:00:00' and '2008-07-14 12:43:35'  group by name, id11216053819634.id for reuse
    select ss.status, ss.statuschange, ss.sampletime, id21216053819634.name from d_slastore ss, id21216053819634 where ss.measuredobjectid = id21216053819634.id and ss.sampletime between '2008-07-14 00:00:00' and '2008-07-14 12:43:35'  and (statuschange != 0 or ss.sampletime = id21216053819634.expression1 or ss.sampletime = id21216053819634.expression2) order by name, sampletime
    We recently upgrade our old SapDb to the latest MaxDB. An now this query produces the error:
    com.sap.dbtech.jdbc.exceptions.JDBCDriverException: SAP DBTech JDBC: Call of execute(String) is not allowed for PreparedStatement.
    Does anyone know how to fix this?
    Thank you very much,
    Irina

    Hi Irina,
    First, welcome to SDN!
    Well, PreparedStatement represents a precompiled SQL statement, so you should be using the no-arg execute() method rather than execute(String).
    HTH!
    \-- Vladimir

  • How do i remove the message: "the time allowed for this call is unlimited?"

    I want delete the message that sounds when i call someone that says: the time allowed for this call is unlimited.

        johnnytitleist,
    Thanks for that information! I recommend reaching out to our Prepaid experts to assist with this message. You can reach them at 888-294-7937.
    SandyS_VZW
    Follow us on Twitter @VZWSupport

  • Jdeveloper CVS for BPEL & ESB projects

    Hi All,
    In my project, we have decided to use CVS (integrated with Jdeveloper 10.1.3.4) as version control system for BPEL & ESB project codes.
    In this regard, I would like to know what are the best practices followed in scenario like this,
    I have 8 to 10 BPEL & ESB projects related/dependent on each other which were developed for a project release XYZ. We would like to organize the code in CVS based on project's release. For example group BPEL & ESB projects under one logical group name.
    XYZ
    |--> BPEL Project 1
    |--> BPEL Project 2
    |--> ESB Project 1
    |--> ESB Project 2
    |--> BPEL Project 3
    My question is, should I treat each BPEL & ESB project as a module or should I treat project release XYZ as a module.
    In later case, I think I would end up checking out/in all BPEL & ESB projects under XYZ eventhough I wanted to work on only one BPEL/ESB code. Not sure if this is acceptable.
    In former case, I would be able to checkout & checkin only the BPEL & ESB code which I would like to update without impacting any other code.Which I believe as acceptable. Since I already have a parent repository 'PQR' should I have to define XYZ as a sub repository to PQR. At end of the day,we would like to make CVS appear something like this. Since I am new to CVS do you see any disadvantage with this approach.Your help is greatly appreciated.
    PQR
    |-->XYZ
    |--> BPEL Project 1
    |--> BPEL Project 2
    |--> ESB Project 1
    |--> ESB Project 2
    |--> BPEL Project 3
    |-->YYY
    |--> Java Project 1
    |--> Java Project 2
    Thanks,
    RA

    Hello Naresh,
    As per my knowledge you can migrate through instances in two ways.
    One way is to modify the build.properties file with the host information of you destination systems, changing the build.xml file with the proper wsdls. In this case you would risk providing the PROD passwords as you need to provide them in the build.properties file.
    The second way is to build ant scripts which are run on the server and the processes get deployed on the Application server.
    Thanks
    kris

  • Reg : "Error multiple Receivers are not allowed for Synchronous calls"

    Hi All,
    Can somebody tell me why I am getting this error "Error multiple Receivers are not allowed for Synchronous calls" when I am using Synchronous Soap Request to WebService and the response from webservice is being sent to multiple receivers which are Business services based on Receiver determination condition(Services W/o Party).

    Hi , If you are simply looking up data (and not updating tables ) using RFC you can use RFC Lookup APIs to create a java mapping
    The source message has to be a RFC request message interface and target should be RFC response message interface.
    Also you can use three step mappings in a single interface mapping.
    1. from your request message to RFC request message mapping
    2. java mapping which will do the lookup and give you rfc response back
    3.rfc response to your target response mapping.
    PS: RFC lookup can be used if there are not may hierarchy in the RFC Response structure. (i.e. may be 3 or 4 level nesting permitted)
    To help you further
    The following is a link which gives you access to a ready made source code. you just need to compile it and create a jar and import the mapping in imported archive
    http://knowhowsapxi.synthasite.com/rfc-loolup.php
    Edited by: Progirl Progirl on Oct 31, 2008 1:33 PM

  • ESB calling BPEL service

    Hello All.
    We have created an ESB that includes a database partner link that reads new records then uses that data and calls a BPEL process.
    We have a single server in development and clustered servers in test, qa and prod.
    In dev, the ESB calls the BPEL process once as it should.
    In the clustered environments, the ESB calls the BPEL process twice. In the ESB console there is only one instance of the ESB and in the BPEL console there are two.
    Is this a bug in the software or is there a ESB/BPEL configuration that we might have missed?
    Thanks in advance.

    You need to implement the DB polling as a singleton service. What is happing is the activation agent is running on both nodes. You need to make it run on just one.
    have a look at metalink note 746108.1
    also the enterprise deployment guide provides pointers
    http://download.oracle.com/docs/cd/E10291_01/core.1013/e10294/webapp.htm#sthref142
    cheers
    James

  • What is the main difference between BPEL and ESB

    Hi all,
    I am making use ESB in my application .Where the my client application calls ESB and inturn the ESB calls the BPEL process .
    I want to know the differences between BPEL and ESB,I came to know that ESB can do messaging and routing ,where my BPEL process can also do the same thing .
    I came to know form a vendor that ESB is used for connecting to multiple end points ,where as my BPEL process can also do this.
    SO what is main purpose of using ESB ?
    Cheers,
    Kalyan.
    Message was edited by:
    patti

    Hi,
    Look for the blog entry dated 1st october 2007.
    URL:
    http://abhishek-soablog.blogspot.com
    Cheers,
    Abhi...

  • Deployment of BPEL (and ESB) into Clustered Environment

    Hi All,
    I was after any view points / pointers into peoples experiences into deployment of BPEL and ESB into a clustered Oracle iAS SOA suite environment, where there are two or more nodes running BPEL, ESB etc with a corresponding OHS Loan Balancers. I have been unable to find any specific information with regards to recommendations into the best ways to deploy into a clustered environment.
    My viewpoints are there are two alternative approaches that could be used, both of which use ANT deployment scripts to register / deploy the various services.
    (1) Leaving all nodes up in the cluster and using a properties file to specify the relevant details, deploy to one environment allowing the load balancer to distribute the software to the respective nodes in the cluster
    (2) Deploy to each of the nodes in turn ensuring all other nodes in the cluster are taken down during each separate deployment
    What are other peoples thoughts / experiences / recommendations?
    Thanks in Advance
    Dave

    I don't believe there is any real information on deployments in a cluster in those documents.
    There is a note on metalink 457654.1 which says to apply to each node, while doing this shut down the other servers. From experience this worked for some configuration and not others.
    Can you say what cluster deployment you used, e.g. 10.1.3.1 or 10.1.3.3 with BPEL and ESB-RT in the same oc4j?
    Also what version are you on. If you are on 10.1.3.4 using the 10.1.3.3 deployment configuration you don't need to shutdown the nodes. And you can get away with just deploying to one node but make sure your <ORACLE_HOME>/bpel/system/config/collaxa-config.xml file has been set to cluster = true. Look at metalink note 746251.1.
    You can experience the notorious Process Lock Timeout Error when not shutdown cleanly but this is resolved using the best practice guide http://www.oracle.com/technology/tech/soa/soa-suite-best-practices/soa_best_practices_1013x_drop1.pdf
    ESB can be applied to just one node.
    Make sure that all your endpoints are pointing to the load balancer and not the actual node themselves.
    Also you connect string is different in your build.properties make sure of the following
    cluster = true
    oc4jinstancename = default_group
    local.oc4jinstancename = oc4j_soa (or the oc4j container with BPEL)
    esb
    deployer.uri=deployer:cluster:opmn://hostname:opmn port/default_group
    cheers
    James

  • Sending response to another BPEL from ESB

    I am passing request from esb to bpel and getting the response from bpel that i want to send to another bpel through esb.
    Everthing is working fine(not showing any error) but the response is not going to second bpel through.

    Now response going from first bpel to second bpel through esb
    i am calling esb from first bpel and i am using same schema in both the esb and first bpel.
    but i am facing below error when i compile my first bpel
    Error:
    [Error ORABPEL-10903]: failed to read wsdl
    [Description]: in "bpel.xml", Global Type declaration/definition of name '{http://www.example.org}SelectLinesOutput' are duplicated at the following locations:
    file:/D:/Vivek/SOA10g/Projects/FLSCommonFramework/FLSMoosicOutbound/bpel/FlsMoosic.xsd [line#: 69]
    http://gildv243:7777/esb/slide/ESB_Projects/FLSCommonFramework_Common_Esb/FlsMoosic.xsd [line#: 68]
    There are at least two of them looking different:
    file:/D:/Vivek/SOA10g/Projects/FLSCommonFramework/FLSMoosicOutbound/bpel/FlsMoosic.xsd [difference starting at line#:73]
    http://gildv243:7777/esb/slide/ESB_Projects/FLSCommonFramework_Common_Esb/FlsMoosic.xsd [difference starting at line#:72]
    Global Type declaration/definition of name '{http://www.example.org}SelectPriceAttsOutput' are duplicated at the following locations:
    file:/D:/Vivek/SOA10g/Projects/FLSCommonFramework/FLSMoosicOutbound/bpel/FlsMoosic.xsd [line#: 95]
    http://gildv243:7777/esb/slide/ESB_Projects/FLSCommonFramework_Common_Esb/FlsMoosic.xsd [line#: 94]
    There are at least two of them looking different:
    file:/D:/Vivek/SOA10g/Projects/FLSCommonFramework/FLSMoosicOutbound/bpel/FlsMoosic.xsd [difference starting at line#:97]
    http://gildv243:7777/esb/slide/ESB_Projects/FLSCommonFramework_Common_Esb/FlsMoosic.xsd [difference starting at line#:96]
    Global Type declaration/definition of name '{http://www.example.org}SelectCreditsOutput' are duplicated at the following locations:
    file:/D:/Vivek/SOA10g/Projects/FLSCommonFramework/FLSMoosicOutbound/bpel/FlsMoosic.xsd [line#: 86]
    http://gildv243:7777/esb/slide/ESB_Projects/FLSCommonFramework_Common_Esb/FlsMoosic.xsd [line#: 85]
    There are at least two of them looking different:
    file:/D:/Vivek/SOA10g/Projects/FLSCommonFramework/FLSMoosicOutbound/bpel/FlsMoosic.xsd [difference starting at line#:90]
    http://gildv243:7777/esb/slide/ESB_Projects/FLSCommonFramework_Common_Esb/FlsMoosic.xsd [difference starting at line#:89]
    Global Type declaration/definition of name '{http://www.example.org}SelectHeadersOutput' are duplicated at the following locations:
    file:/D:/Vivek/SOA10g/Projects/FLSCommonFramework/FLSMoosicOutbound/bpel/FlsMoosic.xsd [line#: 39]
    http://gildv243:7777/esb/slide/ESB_Projects/FLSCommonFramework_Common_Esb/FlsMoosic.xsd [line#: 39]
    There are at least two of them looking different:
    file:/D:/Vivek/SOA10g/Projects/FLSCommonFramework/FLSMoosicOutbound/bpel/FlsMoosic.xsd [difference starting at line#:41]
    http://gildv243:7777/esb/slide/ESB_Projects/FLSCommonFramework_Common_Esb/FlsMoosic.xsd [difference starting at line#:41]
    [Potential fix]: If your site has a proxy server, then you may need to configure your BPEL Server, designer and browser with your proxy server configuration settings (see tech note on http://otn.oracle.com/bpel for instructions).

  • [svn] 3680: Modifying ant build.xml to allow for a local. properties for individual developer build config.

    Revision: 3680
    Author: [email protected]
    Date: 2008-10-16 07:58:21 -0700 (Thu, 16 Oct 2008)
    Log Message:
    Modifying ant build.xml to allow for a local.properties for individual developer build config. Also moving ja_JP locale to the other.locales target (this is called during build machine packaging and isn't needed by dev by default).
    QE: No
    Doc: No
    Checkintests: Pass
    Reviewer: Discussed with Jim
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/projects/airframework/build.xml
    flex/sdk/trunk/frameworks/projects/framework/build.xml
    flex/sdk/trunk/frameworks/projects/rpc/build.xml

    I tried
    ant deployTestSuites
    this works. If i do that with the wrong domain (dep_cotrol vs dep_me) name it fails with
    ORABPEL-02052Cannot lookup BPEL domain.The BPEL domain "dep_cotrol" cannot be found; the domain may not have initialized properly.Please verify that the BPEL domain loader has a valid set of initialization properties in the application properties file.
    So i think my config is ok. There is a bug in this ant bpelTest which ignores the domain?

  • How to return fault from Async BPEL to ESB

    Hi,
    I have ESB that has input,output and fault, This ESB calls Async BPEL that takes only input. Now i want to return fault from BPEL to ESB. How do i do it?
    Please help.

    Hi,
    My use case is i am implementing AIA. So my enterprise layer is ESB and my ABCS provider is BPEL. As provider takes lot of time to complete the instance, to avoid timeout issue i just created Async BPEL with two ports one for input another for fault. I am able to send back my fault back to this call back port. But how i can receive the fault to the same ESB which called the BPEL?
    I am not able to implement it. I can not go for any workaround like creating one more BPEL and then make it as sync, put pick activity and receive the fault then send back to ESB.
    Thats the reason i am very specific. If you find some solution please let me know.

  • USe of Business services with BPEL or ESB

    Hi,
    Has anyone come across any example on how to use Busiess services with BPEL or ESB.
    Oracle App Server , JDE 812 , Tools 8.98 , SOA suite 10g

    Samir,
    I don't see any answer for your post.
    Did you find a solution. I would be interested to know as how to integrate business services in JDE with BPEL/SOA 10g or 11G.
    I would appreciate if you could share the approach/solution you followed.Also, please let me know if there are any docs which I can for jde-fusion integration.
    Thanks
    Edited by: user13374451 on Jul 26, 2010 9:15 AM

Maybe you are looking for