Oracle soa 11.1.1.4 html email using email activity

Experts,
In one of my process i am generating tabular form content in email using html tags in transform xsl file and passing this xsl using ora:processXSLT funtion to contentbody variable of email activity. This works fine in *11.1.1.1* i am able to see email with tabular form content but *11.1.1.4* i am getting an email without content.
In 11.1.1.4 if i pass some simple string to the content body then its working fine i am able to see am email with that string and if i pass the transformation which is having html tags int it, its not working . I have no idea
why the html tags are not getting recognizing in 11.1.1.4 email activity.
Can someone please help me to solve this issue.
Note: its working very goodl in 11.1.1.1.
here how i am calling fine in bpel
*<copy>*
*<from expression="ora:processXSLT('xsl/GenerateHTML.xsl',bpws:getVariableData('ResponseOutput','/ns4:Response'))"/>*
*<to variable="varNotificationReq" part="EmailPayload"*
query="/EmailPayload/ns6:Content/ns6:ContentBody"/>
*</copy*
and here is my transformation GenerateHTML.xsl
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:ns0="http://www.oracle.com/mgSOA"
xmlns:xpath20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
xmlns:mhdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.mediator.service.common.functions.MediatorExtnFunction"
xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue"
xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:med="http://schemas.oracle.com/mediator/xpath"
xmlns:ids="http://xmlns.oracle.com/bpel/services/IdentityService/xpath"
xmlns:xdk="http://schemas.oracle.com/bpel/extension/xpath/function/xdk"
xmlns:xref="http://www.oracle.com/XSL/Transform/java/oracle.tip.xref.xpath.XRefXPathFunctions"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:ora="http://schemas.oracle.com/xpath/extension"
xmlns:socket="http://www.oracle.com/XSL/Transform/java/oracle.tip.adapter.socket.ProtocolTranslator"
xmlns:sample="http://www.oracle.com/XSL/Transform/java/oracle.sample.SampleExtensionFunctions"
xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
exclude-result-prefixes="xsi xsl ns0 xsd xpath20 bpws mhdr oraext dvm hwf med ids xdk xref ora socket sample ldap">
<xsl:output method="html" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<xsl:text disable-output-escaping="yes">&lt;b&gt;s list &lt;/b&gt;</xsl:text>
<xsl:text disable-output-escaping="yes">&lt;br&gt;</xsl:text>
<xsl:text disable-output-escaping="yes">&lt;br&gt;</xsl:text>
<table border="1">
<tr bgcolor="#9acd32">
<th width="80">EntityType</th>
<th width="400">Organization name</th>
<th width="100">Country</th>
<th width="200">Code</th>
<th width="200">Date</th>
</tr>
<ns0:Response>
<xsl:for-each select="/ns0:Response/ns0:ResponseData">
<tr>
<ns0:ResponseData>
<td width="80">
<ns0:R_entitytype>
<xsl:attribute name="xsi:nil">
<xsl:value-of select="ns0:R_entitytype/@xsi:nil"/>
</xsl:attribute>
<xsl:value-of select="ns0:R_entitytype"/>
</ns0:R_entitytype>
</td>
<td width="400">
<ns0:R_orgname>
<xsl:attribute name="xsi:nil">
<xsl:value-of select="ns0:R_orgname/@xsi:nil"/>
</xsl:attribute>
<xsl:value-of select="ns0:R_orgname"/>
</ns0:R_orgname>
</td>
<td width="100">
<ns0:R_country>
<xsl:attribute name="xsi:nil">
<xsl:value-of select="ns0:R_country/@xsi:nil"/>
</xsl:attribute>
<xsl:value-of select="ns0:R_country"/>
</ns0:R_country>
</td>
<td width="200">
<ns0:R_Code>
<xsl:attribute name="xsi:nil">
<xsl:value-of select="ns0:R_Code/@xsi:nil"/>
</xsl:attribute>
<xsl:value-of select="ns0:R_Code"/>
</ns0:R_Code>
</td>
<td width="200">
<ns0:R_Date>
<xsl:attribute name="xsi:nil">
<xsl:value-of select="ns0:R_Date/@xsi:nil"/>
</xsl:attribute>
<xsl:value-of select="ns0:R_Date"/>
</ns0:R_Date>
</td>
</ns0:ResponseData>
</tr>
</xsl:for-each>
</ns0:Response>
</table>
<xsl:text disable-output-escaping="yes">&lt;br&gt;</xsl:text>
<xsl:text disable-output-escaping="yes">&lt;br&gt;</xsl:text>
</xsl:template>
</xsl:stylesheet>

Try using ora:toCDATA function, I had the same issue and this seemed to work.
<copy>
<from expression="ora:toCDATA(xdk:processXSLT('xsl/GenerateHTML.xsl',bpws:getVariableData('ResponseOutput','/ns4:Response')))"/>
<to variable="varNotificationReq" part="EmailPayload"
query="/EmailPayload/ns6:Content/ns6:ContentBody"/>
</copy>

Similar Messages

  • Send Email using Email Activity in BPEL

    Hi Everybody,
    I am trying to send email using email activity in BPEL
    All that I have done is,
    1.dropped Email activity between recieve i/p and reply o/p in my bpel project
    2.written all parameters in it like Default, To ,from etc.
    3.made changes in the ns_emails.xml in .........bpel/systems/services/config & in .......integration/esb/config
    4.restarted SOA,Jdeveloper
    --> but I was not succeeded.
    So please provide me with complete solution like what parameters to pass in smtp server,port no,protocols etc and which file to change in which directory. my work is pending just because of this.
    I would be very grateful to you.
    thanks in advance.
    mansoor.

    hi Eric,
    thanks once again for your instant reply.
    but still I am not able to send Email from bpel so I would be requiring your more help.
    I have gone through below link where you helped someone last year.
    Email
    As per this link I have downloaded the patch and tried but no result.
    in above link I have not understood one thing
    "the ip-address of soa-suite-server is allowed to make use of the smtp?
    you need to add this address in the mailserver-config "
    which was said by you.
    So can you please provide me the details.
    Also I wanted to know how we can come to know that our SOA suite will allow mail server to send Email.how to link mail server to SOA suite etc.
    So please help me out .
    thanks in advance.
    mansoor.

  • Delayed email using email printer (with PDF)

    My objective is to send emails using email's printer.
    Firstly, I had created one printer (EMAIL-PDF) at transaction SPAD, with:
       Device Type : PDF1
       Device Class: Standart Printer
       Access Method: M
    As the node SMTP was already configurated at transaction SCOT, I tried to send some email,
    printing some lists to this printer. As I received no email at my Outlook, I continued my
    research. After hours I received some emails of my firsts tests. Very strange, but this showed me that the configuration of SCOT was correct.
    Then I saw, at transaction SOST, all email that I had been generated by my printings, but
    it was scheduled for two hours after the moment I generated them.
    I would like to know why this happened and what can I do to correct this ?
    Ricardo

    My send job is schedule to run every 15 minutes.
    See an example:
    [08:00] I made a printing to a email printer
    [08:00] I go to the transaction SOST and I can see my request on send queue, but it schedules to 10:00.
    Look the message of the request: Will be sent after 23.02.2007 10:00:00
    It isn't work if I run the "send job" often, because the request is schedule to run two hours later.
    Until now, the only way that to the process works fine is change send time manually, at SOST.
    But if I send an email by Business Workplace (transaction SO02), the email is schedule to send right now.
    I can't understand the two hours later only for email generated by printing.

  • HTML mail using Email Control

    I am trying to send a mail using Email control in workshop. When I do
    content-type="html"
    the mail does not go through. when I do content-type="text/plain", it works fine.
    Has anybody encountered this behavior? What do I need to be able to send an html
    mail?
    thanks,
    John Jones

    "John Jones" <[email protected]> wrote:
    >
    I am trying to send a mail using Email control in workshop. When I do
    content-type="html" try content-type="text/html"
    >
    the mail does not go through. when I do content-type="text/plain", it
    works fine.
    Has anybody encountered this behavior? What do I need to be able to send
    an html
    mail?
    thanks,
    John Jones

  • How to use Yahoo Mail to send email using email links on webpages

    When I'm on a webpage that has a link to send an email, I cut and paste the the email address (which is the link) and paste it into my Yahoo Mail address bar. However, some webpages don't show the email address as a link. Instead, the link might be "write me" or "send mail", so I can't cut and paste an address.
    If I click on an email link, a window pops up that says "Welcome to Mail" and it states that the assistant will guide me through the steps to configure my email account. To get started, this assistant requires a password that I don't possess.
    So I'm stuck not being able to access an email application that I don't want to use in the first place.
    Is there a way to set up my computer so that I could click an email link on a webpage and have Yahoo Mail pop up?
    If not, is there at least a way to send an email using an email link that doesn't show the email address, without using (what I assume to be) the Apple mail Application? If it is necessary, how do I recover the password for the mail assistant? I'm not aware of ever having used or set up a password before.
    THANK YOU

    If you don't want Mail to open, don't click on the app.  If it's opening at login, right click its Dock icon>Option>de-select Open at Login.

  • How to send php email using email from recordset?

    Hi
    I know the headers to use for php mail(), and I use it for
    the contact form for my viewers in order to contact the directory
    listing's email address ( of which I have hidden by using the words
    'Email Us' and use the id to carry through to the form).
    I have sucessfully used the $to = [email protected] but when I
    want to use the $row_?['email'] it will not send.
    Any suggestions? I use a recordset to retrieve the id of the
    listing to the contact form.
    I will want to follow the same procedure for my jobseekers to
    contact employers job adverts.
    Thanks
    Theresa

    Hi,
    There are many sms gateways that have their own api to send sms. You can use them for sms. (They will charge you for the sms!!!)
    Moderator edit: Link removed
    Thanks
    Edited by: PhHein on 20.10.2010 16:11

  • Problems with body email using Email Event Generator

    Hi I need to start a workflow when an email is received by a email account. In
    order to do that, I built a Email Event Generator that uses the next channel:
    <?xml version="1.0"?>
    <channels xmlns="http://www.bea.com/wli/broker/channelfile"
              channelPrefix="/cgr"
              xmlns:eg="http://www.bea.com/wli/eventGenerator"
              xmlns:dp="http://www.bea.com/wli/control/dynamicProperties"
              xmlns:oagpo="http://www.openapplications.org/003_process_po_007">
         <channel name ="Rendicion" messageType="none">
              <channel name ="RendicionEmail" messageType="xml"
              qualifiedMessageType="oagpo:PROCESS_PO_007"
              qualifiedMetadataType="eg:EmailEventGenerator"/>
         </channel>
    </channels>
    I'm using "Suscribe to a Message Broker" oprtion to start my work flow. That option
    uses two input variables: com.bea.xml.XmlObject and com.bea.wli.eventGenerator.EmailEventGeneratorDocument.
    * @jpd:mb-static-subscription message-metadata="{x1}" message-body="{x0}"
    channel-name="/cgr/Rendicion/RendicionEmail"
    public void subscription(com.bea.xml.XmlObject x0, com.bea.wli.eventGenerator.EmailEventGeneratorDocument
    x1)
    //#START: CODE GENERATED - PROTECTED SECTION - you can safely add code
    above this comment in this method. #//
    // input transform
    // parameter assignment
    this.body = x0;
    this.emailXML = x1;
    //#END : CODE GENERATED - PROTECTED SECTION - you can safely add code
    below this comment in this method. #//
    That configuration only functions when the email has plain text body containing
    a xml structure. Other waise that error is showed by the server:
    <Oct 24, 2003 4:16:26 PM GMT-05:00> <Error> <WLI-Core> <BEA-530203> <Error while
    publishing message: com.bea.wli.mbconnector.
    MBConnMDBBase$MBConnectorException: Can't create process variable: com.bea.wli.mbconnector.MBConnMDBBase$MBConnectorException
    : Can't read XML (no root element)>
    <Oct 24, 2003 4:17:26 PM GMT-05:00> <Error> <WLW> <000000> <Error publishing email:
    com.bea.wli.mbconnector.MBConnMDBBase$MBC
    onnectorException: Can't create process variable: com.bea.xml.XmlException: error:
    Unexpected element: TAG_END>
    <Oct 24, 2003 4:17:26 PM GMT-05:00> <Error> <WLI-Core> <BEA-530203> <Error while
    publishing message: com.bea.wli.mbconnector.
    MBConnMDBBase$MBConnectorException: Can't create process variable: com.bea.xml.XmlException:
    error: Unexpected element: TAG_E
    ND>
    Is it a Bug?, or Is the configuration wrong?
    Thank you very much
    David

    I've got the same issue going on here... I also posted the problem to this newsgroup
    earlier today.... please check your log files or server output window to see if
    you're also getting the encoding error...
    "David Uribe" <[email protected]> wrote:
    >
    Hi I need to start a workflow when an email is received by a email account.
    In
    order to do that, I built a Email Event Generator that uses the next
    channel:
    <?xml version="1.0"?>
    <channels xmlns="http://www.bea.com/wli/broker/channelfile"
              channelPrefix="/cgr"
              xmlns:eg="http://www.bea.com/wli/eventGenerator"
              xmlns:dp="http://www.bea.com/wli/control/dynamicProperties"
              xmlns:oagpo="http://www.openapplications.org/003_process_po_007">
         <channel name ="Rendicion" messageType="none">
              <channel name ="RendicionEmail" messageType="xml"
              qualifiedMessageType="oagpo:PROCESS_PO_007"
              qualifiedMetadataType="eg:EmailEventGenerator"/>
         </channel>
    </channels>
    I'm using "Suscribe to a Message Broker" oprtion to start my work flow.
    That option
    uses two input variables: com.bea.xml.XmlObject and com.bea.wli.eventGenerator.EmailEventGeneratorDocument.
    * @jpd:mb-static-subscription message-metadata="{x1}" message-body="{x0}"
    channel-name="/cgr/Rendicion/RendicionEmail"
    public void subscription(com.bea.xml.XmlObject x0, com.bea.wli.eventGenerator.EmailEventGeneratorDocument
    x1)
    //#START: CODE GENERATED - PROTECTED SECTION - you can safely
    add code
    above this comment in this method. #//
    // input transform
    // parameter assignment
    this.body = x0;
    this.emailXML = x1;
    //#END : CODE GENERATED - PROTECTED SECTION - you can safely
    add code
    below this comment in this method. #//
    That configuration only functions when the email has plain text body
    containing
    a xml structure. Other waise that error is showed by the server:
    <Oct 24, 2003 4:16:26 PM GMT-05:00> <Error> <WLI-Core> <BEA-530203> <Error
    while
    publishing message: com.bea.wli.mbconnector.
    MBConnMDBBase$MBConnectorException: Can't create process variable: com.bea.wli.mbconnector.MBConnMDBBase$MBConnectorException
    : Can't read XML (no root element)>
    <Oct 24, 2003 4:17:26 PM GMT-05:00> <Error> <WLW> <000000> <Error publishing
    email:
    com.bea.wli.mbconnector.MBConnMDBBase$MBC
    onnectorException: Can't create process variable: com.bea.xml.XmlException:
    error:
    Unexpected element: TAG_END>
    <Oct 24, 2003 4:17:26 PM GMT-05:00> <Error> <WLI-Core> <BEA-530203> <Error
    while
    publishing message: com.bea.wli.mbconnector.
    MBConnMDBBase$MBConnectorException: Can't create process variable: com.bea.xml.XmlException:
    error: Unexpected element: TAG_E
    ND>
    Is it a Bug?, or Is the configuration wrong?
    Thank you very much
    David

  • Send Invoice by email using email address of partner function

    Hi everybody,
    I am facing a problem with sending invoices by email. In particular I have created in customizing a new partner function of type contact person, namely "email address recipient". This partner function is used to get the correct email address which is different from the one stored in customer master data.
    The problem is that when i print the messagge, the email address used is exactly the one of the customer master data and not the one stored in the partner function "email address recipient".
    Example:
    customer xxx email address yyy,
    for xxx it is defined a partner function email address recipient zzz with email jjj.
    The invoice message is always sent to yyy.
    Do you have any suggestions to solve this issue?
    Thanks,

    Issue caused by custom program.

  • Is it possible to attach PDF and XML file in same email using email button?

    I'm trying to figure out a way to setup an email submit button so that, when clicked, both the complete PDF file and an XML file of the form data is attached to an email. I've searched all over but have been unable to find any solutions. Anyone able to assist me with this?

    Not possible with Acrobat JavaScript.

  • Oracle SOA Suite Adapter integration vs Oracle AIA

    HI,
    Oracle soa suite provides the environment to make use of existing service by providing oracle adapters including Legacy,package and application adapters. futher which suituation and why need to use oracle AIA in order to make use existing resources. am little bit confuse both of this approach over integration.
    can anyone clear my doubt
    regards
    ashok.v

    http://blogs.oracle.com/aia/2008/12/do_i_really_need_aia.html
    http://www.slideshare.net/OTNArchbeat/business-process-optimization-with-enterprise-soa-and-aia
    Regards,
    Anuj

  • Oracle SOA Suite vs oracle Application Integration Architecture

    HI,
    Oracle soa suite provides the environment to make use of existing service by providing oracle adapters including Legacy,package and application adapters. futher which suituation and why need to use oracle AIA in order to make use existing resources. am little bit confuse both of this approach over integration.
    can anyone clear my doubt
    regards
    ashok.v

    when your integration is for integrating standard applications such as EBusiness uite,Siebel,SAP,Fusion Apps etc.For those application either the standard PIPs are available or at least industry specific or application specific EBOs are delivered by Oracle,then you can go for AIA.
    For small integrations SOA suite is sufficient.

  • Oracle SOA Suite integration vs Oracle AIA

    HI,
    Oracle soa suite provides the environment to make use of existing service by providing oracle adapters including Legacy,package and application adapters. futher which suituation and why need to use oracle AIA in order to make use existing resources. am little bit confuse both of this approach over integration.
    can anyone clear my doubt
    regards
    ashok.v

    Hi,
    You can find the answer in AIA white paper in below link.
    www.oracle.com/us/products/applications/057018.pdf
    'The Oracle Application Integration Architecture Foundation Pack heralds a new approach to integrating your application portfolio based on composite business processes. It combines the power of Oracle’s Fusion Middleware along with a set of best in class application Enterprise Business Objects and Services that form the building blocks for a new generation of composite applications that leverage your existing investments to fulfill mission critical business processes.'

  • Error Deploying BPEL process in Oracle SOA 10g

    Hi All,
    Error Deploying the jar file in Oracle SOA 10g.
    Error no : 500
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Following Information from log
    [New log entry]      The BPEL process "InInvoice", revision "1.0" has not been loaded. Either the process was not initialized properly or the process
    has been disabled.
    [New log entry]      Please consult your administrator regarding this error. The application server logs may provide more information regarding this error
    [New log entry]      11/05/27 02:48:08 at com.collaxa.cube.engine.deployment.DeploymentManager.getProcess(DeploymentManager.java:556)
    [New log entry]      11/05/27 02:48:08 at com.collaxa.cube.engine.deployment.DeploymentHelper.lookupProcess(DeploymentHelper.java:258)
    [New log entry]      11/05/27 02:48:08 at com.collaxa.cube.engine.deployment.DeploymentHelper.getContentFile(DeploymentHelper.java:123)
    [New log entry]      11/05/27 02:48:08 at com.collaxa.cube.ejb.impl.BPELProcessManagerBean.contentFileExists(BPELProcessManagerBean.java:472)
    [New log entry]      11/05/27 02:48:08 at sun.reflect.GeneratedMethodAccessor25.invoke(Unknown Source)
    [New log entry]      11/05/27 02:48:08 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [New log entry]      11/05/27 02:48:08 at java.lang.reflect.Method.invoke(Method.java:585)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.system.JAASInterceptor$1.run(JAASInterceptor.java:31)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ThreadState.runAs(ThreadState.java:705)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.system.JAASInterceptor.invoke(JAASInterceptor.java:34)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.system.TxRequiredInterceptor.invoke(TxRequiredInterceptor.java:50)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.ejb.StatelessSessionEJBObject.OC4J_invokeMethod(StatelessSessionEJBObject.java:87)
    [New log entry]      11/05/27 02:48:08 at ProcessManagerBean_RemoteProxy_4bin6i8.contentFileExists(Unknown Source)
    [New log entry]      11/05/27 02:48:08 at com.collaxa.cube.ws.soap.SOAPProviderHelper.copyProcessFile(SOAPProviderHelper.java:284)
    [New log entry]      11/05/27 02:48:08 at com.collaxa.cube.ws.soap.SOAPProviderHelper.doGet(SOAPProviderHelper.java:487)
    [New log entry]      11/05/27 02:48:08 at com.collaxa.cube.ws.soap.oc4j.BPELOC4JServlet.doGet(BPELOC4JServlet.java:190)
    [New log entry]      11/05/27 02:48:08 at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    [New log entry]      11/05/27 02:48:08 at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    [New log entry]      11/05/27 02:48:08 at oracle.security.jazn.oc4j.JAZNFilter$1.run(JAZNFilter.java:400)
    [New log entry]      11/05/27 02:48:08 at java.security.AccessController.doPrivileged(Native Method)
    [New log entry]      11/05/27 02:48:08 at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
    [New log entry]      11/05/27 02:48:08 at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:414)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:644)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
    [New log entry]      11/05/27 02:48:08 at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
    [New log entry]      11/05/27 02:48:08 at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    [New log entry]      11/05/27 02:48:08 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303
    [New log entry]      11/05/27 02:48:08 at java.lang.Thread.run(Thread.java:595)
    Error While Deploying Using ant script.
    BUILD FAILED
    /home/c_lprove/sridhar/InInvoice/build.xml:81: A problem occured while connecting to server "xxxx.yyyy.com" using port "11745": <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <HTML><HEAD>
    <TITLE>500 Internal Server Error</TITLE>
    </HEAD><BODY>
    <H1>Internal Server Error</H1>
    The server encountered an internal error or
    misconfiguration and was unable to complete
    your request.<P>
    Please contact the server administrator,
    [email protected] and inform them of the time the error occurred,
    and anything you might have done that may have
    caused the error.<P>
    More information about this error may be available
    in the server error log.<P>
    </BODY></HTML>

    Yes it is having a receive activity , it receives the cXML from Ariba Adaapter. I checked the adapter it is up.
    I generated the jar and deployed through BPEL console still i get the same error.
    I got the below error
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.

  • 1Z0-114 Oracle SOA Architect Certified Expert certification

    I want to attend/register - 1Z0-114 certification exam.
    Went to Prometeric Website. But couldnt locate this 1ZO-114 from the list of Oracle Certifications ?

    Allama wrote:
    Yes , I could register too at http://www.pearsonvue.com.
    I got a confirmation email as well.
    Your registration is confirmed for the following Oracle Certification Program exam(s):
    Candidate: Gurumurthy, Allama
    Test Series: 1Z0-114-ENU Oracle SOA Foundations, Adoption and Implementation English
    (ENU)
    Date: Saturday, January 16, 2010
    Time: 12:00 PM
    Appointment Length (minutes): 120
    I have my exam schduled for this saturday. I am reading up few books.
    1. Oracle SOA Suite Developer's Guide.
    2. SOA Principles of Service Desing - by Thomas Erl
    3. Service Oriented Architecture - A filed guide to Integrating XML and Web Services.
    Do you guys know a place where I can look at a sample exam, just to get a feel of it. Any help will be appreciated.There are a set of 10 or so sample questions here (the ones I call the beta rejects): [http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=280]
    Be aware it is highly likely any other material you may get pointed to or sample exams on the net is likely to be unauthorised learning material [http://blogs.oracle.com/certification/2009/05/the_route_you_choose.html]

  • Invoking bpel process from java in oracle soa/bpm 11g

    Hi,
    We have some java code to invoke bpel process in oracle BPM 10g following the instructions in http://download-east.oracle.com/docs/cd/B14099_19/integrate.1012/b14448/invoke.htm.
    Basically the steps are:
    1) get a Locator (com.oracle.bpel.client.Locator)
    2) get IDeliveryService (com.oracle.bpel.client.delivery.IDeliveryService) reference from locator
    3) call IDeliveryService method request or post with input message and get the response back.
    Recently we want to migrated from oracle bpm 10g to oracle soa/bpm 11g. But I can not find the similar API in 11g. It seems now some adapter/binding need to be added in exposed service lane in soa composite view, for example, ADF-BC, direct binding etc, in order to allow java to invoke a bpel process. Here are two very useful links from Edwin about the detail how this is implemented.
    http://biemond.blogspot.com/2009/11/invoking-soa-suite-11g-service-from.html
    http://biemond.blogspot.com/2009/11/calling-soa-suite-direct-binding.html?showComment=1285198033913#comment-c1055322845511794252
    My question is:
    1) what are the choices and the official/best way to invoke a bpel process in oracle soa/bpm 11g from java?
    2) does user need to add an adapter/binding in exposed service lane in order to let the bpel service be called in java?
    3) what is the real difference between a bpm application and soa application in 11g?
    I will really appreciate any expert's opinion.
    Thanks,
    Bin

    Thanks for your reply and confirmation, really appreciate it.
    Yes, I found the difference of the invoking process API and was able to invoke bpel process using direct and ADF-BC binding by following Edwin's blog. But I have not found any official reference to compare this API difference between 10g and 11g ( I will mark this question as answered if anyone can find an official source from oracle, need to prove it to the team). The API to work with human task workflow seems pretty much the same between 10g and 11g.

Maybe you are looking for