Facing issue in Email Activity of the BPEL

Hi All,
I have created a Simple BPEL process, which will send email to a particular user(Email ID). The input of BPEL is taking the User's Email ID and pass the Email ID to "To" portion of Email Activity. Then the Email Notification service will send the message to user's mail ID.
But I am getting error :
<bpelFault>
<faultType>0</faultType>
<remoteFault>
<part name="summary">
<summary>oracle.fabric.common.FabricInvocationException: Schema validation failed for message part Responses. Please ensure at the message sender level that the data sent is schema compliant. Can not find definition for element 'ArrayOfResponseType'</summary>
</part>
<part name="detail">
<detail>Can not find definition for element 'ArrayOfResponseType'</detail>
</part>
<part name="code">
<code>null</code>
</part>
</remoteFault>
</bpelFault>
It is taking the proper User's Mail id.
Any suggestion will be helpful to me.
Thanks
Sharmistha

Hi All,
I have created a Simple BPEL process, which will send email to a particular user(Email ID). The input of BPEL is taking the User's Email ID and pass the Email ID to "To" portion of Email Activity. Then the Email Notification service will send the message to user's mail ID.
But I am getting error :
<bpelFault>
<faultType>0</faultType>
<remoteFault>
<part name="summary">
<summary>oracle.fabric.common.FabricInvocationException: Schema validation failed for message part Responses. Please ensure at the message sender level that the data sent is schema compliant. Can not find definition for element 'ArrayOfResponseType'</summary>
</part>
<part name="detail">
<detail>Can not find definition for element 'ArrayOfResponseType'</detail>
</part>
<part name="code">
<code>null</code>
</part>
</remoteFault>
</bpelFault>
It is taking the proper User's Mail id.
Any suggestion will be helpful to me.
Thanks
Sharmistha

Similar Messages

  • Email activity configuration in BPEL

    Hi,
    I am trying to develop a composite which will send the Email to user if any error occurs in BPEL flow by using EMAIL activity.
    But I am not aware about setting required on web logic server for sending the mail.
    It will be a great help, if anybody guide me.
    Thanks
    Renu

    Please follow this blog. This should help you.
    http://www.rubiconred.com/blog/email-notification-with-soa-suite-11g/

  • Error while using Email Activity

    Env:
    Win XP SP2
    SOA Dev Preview 10.1.3.1
    Jdev
    Prob: Am trying to send an email notification to my email id. I create a new BPEL Synchronous process and drag and drop the email activity into the process. I set the details into "to", "subject" and "body" parameters.
    And then I try to deploy the process.
    It throws an error "URI is not hierarchical"
    Can some one let me know the reasons for it.
    Thanx
    AJ

    Thanx Clemens,
    The xml that you had mentioned is same as the one I am working with. When I double click on the error in the error panel displayed in JDev, the cursor moves to the first line in the bpel file which says "<?xml version = "1.0" encoding = "UTF-8" ?>".
    I am still unclear as to what is the issue with the code that I am using. Following is my bpel file. Also, please let me know if there are any libraries or jar files to be included for using email activity in the bpel process.
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <!--
    Oracle JDeveloper BPEL Designer
    Created: Fri Aug 25 15:11:47 IST 2006
    Author: ashutoj
    Purpose: Synchronous BPEL Process
    -->
    <process name="SendEmailNotification"
    targetNamespace="http://xmlns.oracle.com/SendEmailNotification"
    xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:xp20="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:ns1="http://xmlns.oracle.com/ias/pcbpel/NotificationService"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:client="http://xmlns.oracle.com/SendEmailNotification"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc">
    <!--
    PARTNERLINKS
    List of services participating in this BPEL process
    -->
    <partnerLinks>
    <!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="client" partnerLinkType="client:SendEmailNotification"
    myRole="SendEmailNotificationProvider"/>
    <partnerLink name="NotificationService"
    partnerRole="NotificationServiceProvider"
    partnerLinkType="ns1:NotificationServiceLink"/>
    </partnerLinks>
    <!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    -->
    <variables>
    <!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable"
    messageType="client:SendEmailNotificationRequestMessage"/>
    <!-- Reference to the message that will be returned to the requester-->
    <variable name="outputVariable"
    messageType="client:SendEmailNotificationResponseMessage"/>
    </variables>
    <!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    -->
    <sequence name="main">
    <!-- Receive input from requestor. (Note: This maps to operation defined in SendEmailNotification.wsdl) -->
    <receive name="receiveInput" partnerLink="client"
    portType="client:SendEmailNotification" operation="process"
    variable="inputVariable" createInstance="yes"/>
    <!-- Generate reply to synchronous request -->
    <scope name="Email_1">
    <bpelx:annotation>
    <bpelx:pattern patternName="bpelx:email"></bpelx:pattern>
    </bpelx:annotation>
    <variables>
    <variable name="varNotificationReq"
    messageType="ns1:EmailNotificationRequest"/>
    <variable name="varNotificationResponse"
    messageType="ns1:ArrayOfResponse"/>
    <variable name="NotificationServiceFaultVariable"
    messageType="ns1:NotificationServiceErrorMessage"/>
    </variables>
    <sequence name="Sequence_1">
    <assign name="EmailParamsAssign">
    <copy>
    <from expression="string('Default')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:FromAccountName"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Bcc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Cc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:ReplyToAddress"/>
    </copy>
    <copy>
    <from expression="string('hi')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Subject"/>
    </copy>
    <copy>
    <from expression="string('[email protected]')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:To"/>
    </copy>
    <copy>
    <from expression="string('checking mail from bpel pm')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:ContentBody"/>
    </copy>
    <copy>
    <from expression="string('text/html; charset=UTF-8')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns1:Content/ns1:MimeType"/>
    </copy>
    </assign>
    <invoke name="InvokeNotificationService"
    partnerLink="NotificationService"
    portType="ns1:NotificationService"
    operation="sendEmailNotification"
    inputVariable="varNotificationReq"
    outputVariable="varNotificationResponse"/>
    </sequence>
    </scope>
    <assign name="Assign_1">
    <copy>
    <from expression="'Mail Sent'"/>
    <to variable="outputVariable" part="payload"
    query="/client:SendEmailNotificationProcessResponse/client:result"/>
    </copy>
    </assign>
    <reply name="replyOutput" partnerLink="client"
    portType="client:SendEmailNotification" operation="process"
    variable="outputVariable"/>
    </sequence>
    </process>

  • Issue with email bpel activity

    Hi,
    I am trying to use Email activity in my bpel flow.
    I configured the email driver with smtp server/port/userid/pwd
    and using "[email protected]" as my recipient address.
    When executing the bpel , i am getting the below exception:
    Error     SDP-26105     unable to deliver to following address(es): [email protected], Reason: Invalid Addresses
    Below is the bpel activity for email invocation:
    <scope name="Email1">
    <bpelx:annotation>
    <bpelx:pattern patternName="bpelx:email"></bpelx:pattern>
    </bpelx:annotation>
    <variables>
    <variable name="varNotificationReq"
    messageType="ns10:EmailNotificationRequest"/>
    <variable name="varNotificationResponse"
    messageType="ns10:ArrayOfResponse"/>
    <variable name="NotificationServiceFaultVariable"
    messageType="ns10:NotificationServiceErrorMessage"/>
    </variables>
    <sequence name="Sequence1">
    <assign name="EmailParamsAssign">
    <copy>
    *<from expression="string('[email protected]')"/>*
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns10:FromAccountName"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns10:Bcc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns10:Cc"/>
    </copy>
    <copy>
    <from expression="string('')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns10:ReplyToAddress"/>
    </copy>
    <copy>
    <from expression="'Newv order received for :'+bpws:getVariableData('inputVariable','payload','/ns2:Order/ns2:orderId')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns10:Subject"/>
    </copy>
    <copy>
    *<from expression="string('[email protected]')"/>*
    *<to variable="varNotificationReq" part="EmailPayload"*
    query="/EmailPayload/ns10:To"/>
    </copy>
    <copy>
    <from expression="'Your oarder for '+bpws:getVariableData('inputVariable','payload','/ns2:Order/ns2:prodName') +' is recevied'"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns10:Content/ns10:ContentBody"/>
    </copy>
    <copy>
    <from expression="string('text/html; charset=UTF-8')"/>
    <to variable="varNotificationReq" part="EmailPayload"
    query="/EmailPayload/ns10:Content/ns10:MimeType"/>
    </copy>
    </assign>
    <invoke name="InvokeNotificationService"
    portType="ns10:NotificationService"
    partnerLink="NotificationService1"
    inputVariable="varNotificationReq"
    outputVariable="varNotificationResponse"
    operation="sendEmailNotification"/>
    </sequence>
    </scope>
    Any help will be highly appreciated.

    Try with the below Link, to check that you had configured correctly and restarted server.
    http://technology.amis.nl/blog/6019/configure-soa-suite-11g-for-sending-email-notifications-with-google-mail
    Thanks,
    Vijay

  • Qs on setting ReplyTo multiple address in EMail activity

    Hi,
    I am trying to put EMail activity, in that i am trying to put reply-to as two different addrerss like
    [email protected],[email protected]
    When i run bpel process i get following exception...
    07/11/13 13:39:03 javax.mail.internet.AddressException: Illegal address in string ``[email protected], [email protected]''
    07/11/13 13:39:03 at javax.mail.internet.InternetAddress.<init>(InternetAddress.java:68)
    07/11/13 13:39:03 at oracle.tip.pc.services.notification.email.EmailDriver.send(EmailDriver.java:157)
    07/11/13 13:39:03 at oracle.tip.pc.services.notification.DefaultNotificationServiceImpl.sendEmailNotification(DefaultNotificationServiceImpl.java:251)
    07/11/13 13:39:03 at oracle.tip.pc.services.notification.NotificationServiceImpl.sendEmailNotification(NotificationServiceImpl.java:271)
    07/11/13 13:39:03 at oracle.bpel.services.notification.queue.sender.MDBConsumer.deliverNotification(MDBConsumer.java:256)
    07/11/13 13:39:03 at oracle.bpel.services.notification.queue.sender.MDBConsumer.onMessage(MDBConsumer.java:137)
    07/11/13 13:39:03 at sun.reflect.GeneratedMethodAccessor65.invoke(Unknown Source)
    07/11/13 13:39:03 at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    07/11/13 13:39:03 at java.lang.reflect.Method.invoke(Method.java:585)
    07/11/13 13:39:03 at com.evermind.server.ejb.interceptor.joinpoint.EJBJoinPointImpl.invoke(EJBJoinPointImpl.java:35)
    07/11/13 13:39:03 at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    07/11/13 13:39:03 at com.evermind.server.ejb.interceptor.system.DMSInterceptor.invoke(DMSInterceptor.java:52)
    07/11/13 13:39:03 at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    07/11/13 13:39:03 at com.evermind.server.ejb.interceptor.system.SetContextActionInterceptor.invoke(SetContextActionInterceptor.java:44)
    07/11/13 13:39:03 at com.evermind.server.ejb.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:119)
    07/11/13 13:39:03 at com.evermind.server.ejb.InvocationContextPool.invoke(InvocationContextPool.java:55)
    07/11/13 13:39:03 at com.evermind.server.ejb.MessageDrivenConsumer.onMessage(MessageDrivenConsumer.java:347)
    07/11/13 13:39:03 at com.evermind.server.ejb.MessageDrivenConsumer.processMessages(MessageDrivenConsumer.java:233)
    07/11/13 13:39:03 at com.evermind.server.ejb.MessageDrivenConsumer.run(MessageDrivenConsumer.java:169)
    07/11/13 13:39:03 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
    07/11/13 13:39:03 at java.lang.Thread.run(Thread.java:595)
    <2007-11-13 13:41:45,619> <INFO> <dladd.collaxa.cube.activation> <AdapterFramework::Inbound> JCAActivationAgent::uninit Shutting down the JCA activation agent, processId='bpel://localhost/dladd/VectrenCMErrHand~1.0/', activation properties={portType=DEQUEUE_ptt}
    <2007-11-13 13:41:45,620> <INFO> <dladd.collaxa.cube.activation> <AdapterFramework::Inbound> Adapter Framework instance: OraBPEL - performing endpointDeactivation for portType=DEQUEUE_ptt, operation=DEQUEUE
    <2007-11-13 13:41:45,626> <INFO> <dladd.collaxa.cube.activation> <AQ Adapter::Inbound> MessageReader_close: Closed MessageReader for queue WF_BPEL_Q (type 2, consumer = ORA_6d2k2gpo6gqj0dhh74p32chj71)
    <2007-11-13 13:41:45,782> <INFO> <dladd.collaxa.cube.compiler> validating "/u4290/app/oa11dev/orapb11/soa1013/bpel/domains/dladd/tmp/.bpel_VectrenCMErrHand_1.0_26235c7b6f62e7bcbaa3217a2de6f684.tmp/VectrenCMErrHand.bpel" ...
    <2007-11-13 13:41:46,422> <INFO> <dladd.collaxa.cube.engine.deployment> <CubeProcessFactory::generateProcessClass>
    But when i try to set single address it works. So sounds like Oracle is not parsing before calling java api to set SetReplyTo([] Address) method.
    Could some one help on this?

    Hi Jack,
    I am facing some issue with sending mail using email-Activity.
    What I am trying is simply calling Email Activity in aysnchrnous BPEL process.
    My ns_mail.xml has the following entries.
    <EmailAccount>
    <Name>Default</Name>
    <GeneralSettings>
    <FromName>moodle</FromName>
    <FromAddress>[email protected]</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>192.168.100.155</SMTPHost>
    <SMTPPort>25</SMTPPort>
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <SMTPHost>192.168.100.155</SMTPHost>
    <SMTPPort>25</SMTPPort>
    </IncomingServerSettings>
    </EmailAccount>
    <EmailAccount>
    <Name>moodle</Name>
    <GeneralSettings>
    <FromName>moodle</FromName>
    <FromAddress>[email protected]</FromAddress>
    </GeneralSettings>
    <OutgoingServerSettings>
    <SMTPHost>192.168.100.155</SMTPHost>
    <SMTPPort>25</SMTPPort>
    </OutgoingServerSettings>
    <IncomingServerSettings>
    <SMTPHost>192.168.100.155</SMTPHost>
    <SMTPPort>25</SMTPPort>
    </IncomingServerSettings>
    <!--<IncomingServerSettings>
    <Server>yourdomain.com</Server>
    <Port>110</Port>
    <Protocol>pop3</Protocol>
    <UserName>accountId</UserName>
    <Password ns0:encrypted="false" xmlns:ns0="http://xmlns.oracle.com/ias/pcbpel/NotificationService">password</Password>
    <UseSSL>false</UseSSL>
    <Folder>Inbox</Folder>
    <PollingFrequency>1</PollingFrequency>
    <PostReadOperation>
    <MarkAsRead/>
    </PostReadOperation>
    </IncomingServerSettings> -->
    </EmailAccount>
    In the BPEL process following are the entries
    From Account -->moodle
    To -->[email protected]
    CC-->[email protected]
    Sub-->Test Mail
    Boby-->Test Mail
    The error I got is Following
    From Account is not configured.
    From account moodle is not configured.
    Can you provide me some inputs like what all you did .
    Regards
    Lalit

  • Issue with emailing dynamically generated PDF (InteractiveForm UI element)

    Hi Experts ,
    I have a requirement according to which i need to generate PDF dynamically using webdynpro java and email the dynamically generated PDF.
    I am facing issue while emailing the dynamically genarated pdf.
    It gives me an exception :
    nested exception is: javax.mail.MessagingException: IOException while sending message;  nested exception is: java.io.IOException: no data
    This is because its unable to get the binary data (byte array) of the dynamically generated PDF which is required to send mail.
    Could some one suggest me how to fetch the binary data of the dynamically generated PDF.
    For dynamic PDF generation i am using dynamic generation of UI element   InteractiveForm UI Element 
    In case of static PDF (i.e. the PDF genarated by inserting the InteractiveFrom Ui element on the view using the insert child option) we do set the pdf source property of Interactive Form UI element to a context variable attribute of type binary but  my problem is ,how to set the PDF source of a dynamically generated Interactive form UI element to a context variable attribute of type binary ..
    Any help would be highly appreciated.
    Regards ,
    Navya

    Hi Frank ,
    the code to generate PDF dynamically is written in the WdDoModifyView section of the view as the PDF need to be generated dynamically., i.e. by adding InteractiveForm UI elements at  runtime.
    I tried the code suggested by you  but i gave mean exception.
    errorjava.io.FileNotFoundException:
    (The system cannot find the path specified)
    Kindly let me know where i am going wrong .
    Below is the code that i  had written in a separate method m_mail().
    This would take as input the name of the dynamically generated data node and is called from the wdDoModifyView section of the view
    public void m_mail( java.lang.String p_dynamicnodeName )
                   ByteArrayOutputStream templateSourceOutputStream = new ByteArrayOutputStream();
              //        This would need to have the Templatefile in the Mimes-Directory of the Webdynpro-Component
                   String templateUrl = WDURLGenerator.getResourcePath(wdComponentAPI.getDeployableObjectPart(), "AdobeView1_InteractiveForm.xdp");
                   InputStream templateSourceInputStream = new FileInputStream(templateUrl);
                   IOUtil.write(templateSourceInputStream, templateSourceOutputStream);
                   IWDPDFDocumentCreationContext pdfContext = WDPDFDocumentFactory.getDocumentHandler().getDocumentCreationContext();
                   pdfContext.setData(WDInteractiveFormHelper.getContextDataAsStream(wdContext
                   .nodeCtx_vn_dynmcnd()
                   .getChildNode(p_dynamicnodeName, IWDNode.NO_SELECTION)));
                   pdfContext.setTemplate(templateSourceOutputStream);
                   pdfContext.setInteractive(false);
                   IWDPDFDocument pdf = pdfContext.execute();
                   if (pdf != null) {
                    pdfArray = pdf.getPDF();
    Kindly let me know where am i going wrong.
    Regards ,
    Navya

  • Email Activity Creation Problem

    I m new in MS Dynamic CRM 2013. I m trying to make a email activity on the update of a issue (case). but I m getting error at:
     CreateResponse resp = (CreateResponse)slos.Execute(reqActivity);
    I m attaching the whole code here:
    // <copyright file="PostIssueUpdate.cs" company="">
    // Copyright (c) 2015 All Rights Reserved
    // </copyright>
    // <author></author>
    // <date>1/29/2015 2:37:35 PM</date>
    // <summary>Implements the PostIssueUpdate Plugin.</summary>
    // <auto-generated>
    // This code was generated by a tool.
    // Runtime Version:4.0.30319.1
    // </auto-generated>
    namespace CrmVSSolution1.Plugins
    using System;
    using System.ServiceModel;
    using Microsoft.Xrm.Sdk;
    using System.ServiceModel.Description;
    using System.Text;
    using System.Collections.Generic;
    using System.Linq;
    // These namespaces are found in the Microsoft.Xrm.Sdk.dll assembly
    // found in the SDK\bin folder.
    using Microsoft.Xrm.Sdk.Query;
    using Microsoft.Xrm.Sdk.Discovery;
    using Microsoft.Xrm.Sdk.Messages;
    using Microsoft.Xrm.Sdk.Client;
    using Microsoft.Crm.Sdk.Messages;
    /// <summary>
    /// PostIssueUpdate Plugin.
    /// Fires when the following attributes are updated:
    /// All Attributes
    /// </summary>
    public class PostIssueUpdate: Plugin
    /// <summary>
    /// Initializes a new instance of the <see cref="PostIssueUpdate"/> class.
    /// </summary>
    public PostIssueUpdate()
    : base(typeof(PostIssueUpdate))
    base.RegisteredEvents.Add(new Tuple<int, string, string, Action<LocalPluginContext>>(40, "Update", "incident", new Action<LocalPluginContext>(ExecutePostIssueUpdate)));
    // Note : you can register for more events here if this plugin is not specific to an individual entity and message combination.
    // You may also need to update your RegisterFile.crmregister plug-in registration file to reflect any change.
    /// <summary>
    /// Executes the plug-in.
    /// </summary>
    /// <param name="localContext">The <see cref="LocalPluginContext"/> which contains the
    /// <see cref="IPluginExecutionContext"/>,
    /// <see cref="IOrganizationService"/>
    /// and <see cref="ITracingService"/>
    /// </param>
    /// <remarks>
    /// For improved performance, Microsoft Dynamics CRM caches plug-in instances.
    /// The plug-in's Execute method should be written to be stateless as the constructor
    /// is not called for every invocation of the plug-in. Also, multiple system threads
    /// could execute the plug-in at the same time. All per invocation state information
    /// is stored in the context. This means that you should not use global variables in plug-ins.
    /// </remarks>
    protected void ExecutePostIssueUpdate(LocalPluginContext localContext)
    if (localContext == null)
    throw new ArgumentNullException("localContext");
    // TODO: Implement your custom Plug-in business logic.
    IPluginExecutionContext context = localContext.PluginExecutionContext;
    IOrganizationService service = localContext.OrganizationService;
    if (context.InputParameters.Contains("Target") &&
    context.InputParameters["Target"] is Entity)
    // Obtain the target entity from the input parmameters.
    Entity entity = (Entity)context.InputParameters["Target"];
    if (entity.LogicalName == "incident")
    string entityDescription = "There is no note found";
    try
    if (entity.Attributes.Contains(""))
    entity.Attributes["description"] = entityDescription;
    CreateRequest reqActivity = new CreateRequest();
    Entity newEmail = new Entity("email");
    newEmail["subject"] = "This is for testing";
    newEmail["description"] = entityDescription;
    Entity ap = new Entity();
    Entity ap2 = new Entity();
    ap = new Entity("activityparty");
    ap["addressused"] = "[email protected]";
    Entity[] aryTo = { ap };
    newEmail["to"] = aryTo;
    ap2 = new Entity("activityparty");
    ap2["partyid"] = new EntityReference("systemuser", new Guid(""));
    Entity[] aryFrom = { ap2 };
    newEmail["from"] = aryFrom;
    newEmail["regardingobjectid"] = new EntityReference("account", new Guid(""));
    reqActivity.Target = newEmail;
    CreateResponse resp = (CreateResponse)slos.Execute(reqActivity);
    catch (FaultException ex)
    throw new InvalidPluginExecutionException("An error occurred in the plug-in.", ex);

    Hello,
    Could you please point to the part of your code where you have declared "slos"? I rechecked it twice and I see nothing. Also could you please provide an exception message that you are getting?
    Dynamics CRM MVP/ Technical Evangelist at
    SlickData LLC
    My blog

  • Hi support team, I'm using iphone4, After i upgraded my ios7 i'm facing issues.Need ur help

    Hi support team, I'm using iphone4, After i upgraded my ios7.0.2 i'm facing issues.
    - Unable to view the incoming calls.
    - mobile hanging

    This is not the "support team".  These are user to user forums.  You are not addresssing Apple's "support team" by posting here.
    Which of the troubhleshooting steps listed in the iOS 7 user guide have you tried?  Have you tried a reset?

  • Issue in adding Space to the existing Virtual Machine from added repository

    Hi,
    I'm facing issue in adding Space to the existing Virtual Machine (Guest OS) from added repository.
    Environment details :
    VM Server : /OVS => 130GB
    /OVS/935970F2CC2D4B4391701397517F1001/ => 512 GB
    Things I have done :
    •     I created a VM (Guest OS) in the VM Server with 120 GB
    •     After creating the VM (Guest OS) , When I tried adding a VIRTUAL DISK of size 150 GB , I got an error “Maximum available Disk space is only 10GB”.
    My query :
    •     Will I be able to add space to Existing VM from the added Repository ( /OVS/935970F2CC2D4B4391701397517F1001/ ) , whose system.img is stored in path /OVS/running_pool/34_rhel/ .
    Kindly help me out in this.
    Thanks in advance.
    -- Sri

    Hi all,
    I checked with Oracle on the above and got the info currently , the we can utilise only the space available in the existing repo and cannot extend to additional repo.
    Work around is : Clone it to the other repo , or Use Symbolic link .
    Thanks,
    Sri.

  • Variable passing to an email activity

    Hi,
    In my simple process flow I have:
    START--------TRANSFORMATION (procedure call)--------EMAIL ACTIVITY--------END
    My procedure has an output parameter (which consists of an email address).
    In the transformation, the output parameter is passed into a variable VAR1.
    In my EMAIL activity, the TO_ADDRESS parameter is assigned VAR1.
    My problem is, when I validate the processflow it comes up with the error:
    "VLD-10034: Parameter TO_ADDRESS is bound to variable VAR1, but VAR1 has no default value set. For a processflow to be valid the bound parameter or variable should have a default value."
    So I assigned the variable VAR1 a default value (I entered a valid email address), the processflow validates successfully, but when I run it, it fails with an error.
    It's the variable that's causing a problem as when I hard-code an email address in the TO_ADDRESS parameter it runs without a problem.
    Do you have any ideas why the variable is failing when a default value is set?
    Thanks for any replies
    Ansel

    Hi Armands
    I managed to sort this one out.
    I stripped out the transformation from the processflow to simplify it as much as possible.
    So I had:
    START-------- EMAIL ACTIVITY--------END
    The problem was where it was forcing me to enter a default value for the variable VAR1 (where VAR1 was assigned to the TO_ADDRESS parameter in the email activity).
    I entered an email address as the default value in VAR1, and it failed. So I changed the value to 'aaa', and it failed.
    But it DIDN'T fail when I entered '1' (even though the variable is of a string type).
    So it's working now.
    Thank you for taking the time to try to understand my problem.
    Ansel

  • Copy users in  Parties Involved on Opportunity to Email Activity

    Hello Gurus,
    In CRM WEB UI when i am creating a Email Activity as a follow up of  an existing Opportunity (with Parties Involved having email Id's) , is it possible to copy the email id of the  users  in Parties involved of the Opportunity to the email Activity in the To :  field
    Currently it only gets the email ids of contact persons on opportunities to the email activity when its create as a follow up.
    Will i be able to achieve this using config without doing any development?
    Thanks a lot in advance.
    Thanks
    Edited by: Chetan Tangadpelli on Jul 20, 2011 8:49 PM
    Edited by: Chetan Tangadpelli on Jul 21, 2011 3:21 AM

    Hi Chetan,
    Functionally Iam not aware how you can achieve it, but you can try implementing the COM_PARTNER_BADI to achieve this.
    Get the access sequence created so that, the method DETERMINATION_ADD_IN_1 of the BAdI COM_PARTNER_BADI is called.
    Now inside this method you can try to read the partner values of the oppurtunity and assign them to the follow up Email activity.
    Hope this helps you out!
    Regards
    Veena.

  • Email activity in OWB

    I tried to implement the Email activity if the OWB process flow.In the to_address and cc_address I gave some mail addresses . but one of the addresses was incorrect because of which the process failed and the mail didn't reach any of the recipients.
    is there any way in which i could deliver the mail to those other mail addresses that were correct.??
    could I also send mails to more than one SMTP servers??

    Any ideas?

  • Facing issue arial font

    Hi,
    I am using JDeveloper Studio 11.1.1.2.0 .Actually I want to generate Arabic Report in jasper but i observed that when deploy my application
         C:\Users\admin\AppData\Roaming\JDeveloper\system11.1.1.2.36.55.36\o.j2ee\drs\XBSystemMasters\XBSystemMastersUIWebApp.war\WEB-INF\classes
         there is no class my created Font Folder. and XBSystemMastersUI.jpr i have add the
         <value n="oracle.jbo.SavedPreferences" v="true"/>
    <hash n="oracle.jdeveloper.compiler.OjcConfiguration">
    <list n="copyRes">
    <string v=".gif"/>
    <string v=".jpg"/>
    <string v=".jpeg"/>
    <string v=".png"/>
    <string v=".properties"/>
    <string v=".xml"/>
    <string v=".ejx"/>
    <string v=".xcfg"/>
    <string v=".cpx"/>
    <string v=".dcx"/>
    <string v=".sva"/>
    <string v=".wsdl"/>
    <string v=".ini"/>
    <string v=".tld"/>
    <string v=".tag"/>
    <string v=".xlf"/>
    <string v=".xsl"/>
    <string v=".xsd"/>
    <string v=".jpx"/>
    <string v="/Fonts/*.TTF"/>
    </list>
         but after running my application then i am facing issue is
         : Could not load the following font : pdfFontName :
         So plz help me and where i m getting mistake..
         Thanks
         Anup

    Hi,
    I am using JDeveloper Studio 11.1.1.2.0 .Actually I want to generate Arabic Report in jasper but i observed that when deploy my application
         C:\Users\admin\AppData\Roaming\JDeveloper\system11.1.1.2.36.55.36\o.j2ee\drs\XBSystemMasters\XBSystemMastersUIWebApp.war\WEB-INF\classes
         there is no class my created Font Folder. and XBSystemMastersUI.jpr i have add the
         <value n="oracle.jbo.SavedPreferences" v="true"/>
    <hash n="oracle.jdeveloper.compiler.OjcConfiguration">
    <list n="copyRes">
    <string v=".gif"/>
    <string v=".jpg"/>
    <string v=".jpeg"/>
    <string v=".png"/>
    <string v=".properties"/>
    <string v=".xml"/>
    <string v=".ejx"/>
    <string v=".xcfg"/>
    <string v=".cpx"/>
    <string v=".dcx"/>
    <string v=".sva"/>
    <string v=".wsdl"/>
    <string v=".ini"/>
    <string v=".tld"/>
    <string v=".tag"/>
    <string v=".xlf"/>
    <string v=".xsl"/>
    <string v=".xsd"/>
    <string v=".jpx"/>
    <string v="/Fonts/*.TTF"/>
    </list>
         but after running my application then i am facing issue is
         : Could not load the following font : pdfFontName :
         So plz help me and where i m getting mistake..
         Thanks
         Anup

  • OPEN SSL certificate generation issue--bpel email activity

    Hi all,
    I need to send a mail from bpel using email activity.
    I made all settings changes.I downloaded OPENSSL software and I need to generate smtp ssl certificates?
    But while generation of ssl certificates I am getting some issue
    OpenSSL> openssl s_client -starttls smtp -crlf -connect smtp.gmail.com:465>
    gmail.cert
    openssl:Error: 'openssl' is an invalid command.
    Standard commands
    asn1parse ca ciphers crl crl2pkcs7
    dgst dh dhparam dsa dsaparam
    ec ecparam enc engine errstr
    gendh gendsa genrsa nseq ocsp
    passwd pkcs12 pkcs7 pkcs8 prime
    rand req rsa rsautl s_client
    s_server s_time sess_id smime speed
    spkac verify version x509
    Message Digest commands (see the `dgst' command for more details)
    md2 md4 md5 rmd160 sha
    sha1
    Cipher commands (see the `enc' command for more details)
    aes-128-cbc aes-128-ecb aes-192-cbc aes-192-ecb aes-256-cbc
    aes-256-ecb base64 bf bf-cbc bf-cfb
    bf-ecb bf-ofb cast cast-cbc cast5-cbc
    cast5-cfb cast5-ecb cast5-ofb des des-cbc
    des-cfb des-ecb des-ede des-ede-cbc des-ede-cfb
    des-ede-ofb des-ede3 des-ede3-cbc des-ede3-cfb des-ede3-ofb
    des-ofb des3 desx idea idea-cbc
    idea-cfb idea-ecb idea-ofb rc2 rc2-40-cbc
    rc2-64-cbc rc2-cbc rc2-cfb rc2-ecb rc2-ofb
    rc4 rc4-40
    Can any one suggest me ,What I entered is correct or not?how to generate smtp certificates?
    Thanks in advance
    Krishna

    Fabian,
    Are you familiar with Firefox OS? The reason I say this is because the email client cannot create a certificate excaption. This is actually by design. This is by design: https://wiki.mozilla.org/Gaia/Email/Features#Security
    This support request at Mozilla was placed specifically for the Firefox OS product, for which only a single email client exists.
    That being said the good folks on the Mozilla Bugzilla, were able to show me how to look up another alias for these servers which does in fact work and does in fact match the SSL certificates. Though Dreamhost support could not provide me with said information, and said information does not in fact exist in the DreamHost wiki.
    I find repeated insistance from Dreamhost represenatives that I should just live with SSL certificate exceptions, when there are actual valid server names in existence to match the certificates in question, rediculous.
    The fact that you are posting this non solution for a product it isn't even applicable for is beyond unhelpful. It actually serves to muddy the waters.

  • Is this legit?             Confirm your email address  Dear Email Users,  As part of our security measures, we regularly screen activity in the E-mail system and after noticing an issue on your account password, we are requesting confirmation from you for

      Is this legit?
       Apple Support Team <applsupporteam @icloud.com>
           Confirm your email address
    Dear Email Users,
    As part of our security measures, we regularly screen activity in the E-mail system
    and after noticing an issue on your account password, we are requesting confirmation
    from you for the following reason:
    Our system requires further password verification.
    In accordance with E-mailUser Agreement, your account access will remain limited
    until the issue has been resolved. Unfortunately, if access to your account remains
    limited for an extended period of time, it may result in further limitations or
    eventual account closure.
    To verify your E-mail account, you must reply to this email
    immediately and enter your following
    information.
    First Name:
    Last Name:
    Email Username :
    Email Password :
    Thank you for using webmail
    Icloud. com support team
    <Edited By Host>

    Apple requests that you forward these types of emails to them as follows (from http://support.apple.com/kb/HT4933):
    If you receive a suspicious email, select the message text so that it is highlighted. Choose Forward as Attachmentfrom the Message menu (OS X Mail) or the Actions menu (Outlook). Send the email to [email protected] This provides Apple's legal department and law enforcement with useful information to help prevent future phishing emails.

Maybe you are looking for