Tracking notifications sent from BPM process - User Messaging Service

Hi,
I have a requirement to track the notifications sent from all the BPM processes in one place.
My Requirement is to (1. Check the status, sender, receiver of the notification, 2. view the actual content of the notification, 3. Resend the notification)
Few options I have explored are below. Need experts advice please
1. Enterprise Manager gives the option to check each notification status and option to resend the message. I have two problems with this option
     a) It does not solve my requirement of 'viewing the content of the message'. It does not show what is the actual message content. though we can see other notification details like sender, receiver etc...
     b) users does not want to go to enterprise manager. They need a separate UI based on ADF.
2. Tried to build a UI based on UMS EJB API and UMS WebService API. Both the APIs provide the operations to check the status of the message. But there is no API that returns the actual content of the message
     a) It does not solve my requirement of 'viewing the content of the message'. Both the APIs does not expose any operation to retrieve the message/message content. I see AccessPoint as one options but, In my      case, Application need to track the messages sent to all the users, not particular address.
     b) There is no operation exposed to resend the message. Not sure how it is being done through enterprise manager.
3. Tried by directly accessing the ORASDPM schema of UMS to fetch the content of the message. found that the content of the message is stored in 'MESSAGE_OBJECT' Blob column of 'MESSAGE' table.
     Built an ADF application based on ORASDPM schema. Following issues:
     a) could not parse the BLOB column data. Tried using a blob converter which converts the stream to text. but the conversion is not happening properly.
     b) Need to figure out how to resend the message.
My environment: Oracle 11g , JDeveloper 11g Release 1 11.1.1.6.0
Thanks in Advance.

Hi,
try this question on a BPM forum please.
Frank

Similar Messages

  • How can I track all email sent from one particular user through powershell?

    Went online and found a few commands like:
    Get-MessageTrackingLog -Server servername -Start "11/17/2014 09:00:00" -End "11/17/2014 17:00:00" -Sender "user@domain"
    Got back:
    Get-MessageTrackingLog : The term 'Get-MessageTrackingLog' is not recognized as the name of a cmdlet, function, script
    file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct
    and try again.
    At line:1 char:1
    + Get-MessageTrackingLog -Server Mail2013 -Start "11/17/2014 09:00:00" -End "11/17 ...
    + ~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : ObjectNotFound: (Get-MessageTrackingLog:String) [], CommandNotFoundException
        + FullyQualifiedErrorId : CommandNotFoundException
    ALL I WANT TO DO IS TO TRACK EMAIL SENT FROM A PARTICULAR USER: Delivery reports in the EAC came up with absolutely nothing after entering the user mailbox and user
    Any help would be appreciated - RJM

    try this :
    get-messagetrackinglog -Server mail01 –resultsize unlimited
     -Start "11/17/2014 09:00:00" -End "11/17/2014 17:00:00" -Sender "user@domain"| Select-Object eventid,sender,timestamp,@{Name="Recipients";Expression={$_.recipients}},@{Name="RecipientStatus";Expression={$_.recipientstatus}},messagesubject
    | Export-CSV c;\tracking.csv
    Then import file to excel
    Please mark as helpful if you find my contribution useful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you. Thank you! Off2work

  • Message not sent from BPM

    Hi,
    I have modeled a BPM in which Idoc is received from ERP and it is sent to CRM.
    When I see in SXMB_MONI, I find a message with PE as outbound. The Workflow shows it is completed and the last step in Workflow is "Send message Asynchronnously" with Workflow result "Transfer message to Pipeline".
    But the message is not received in CRM. When I displat the message in SXMB_MONI, I find the following:
    1.Original Message
    2. Acknowledgement
    3. PE_Adapter
    When I go to the 1st and third message, The last step it is stuck up is "Call Adapter". But later nothing has hapenned.
    Anyone has any idea regarding this.
    Thanks,
    Prasanna

    HI Faulhaber,
    I used Process view and it only shows the message recived from Source to BPM. But no message exists which shows Message sent from BPM to Destination.
    But Workflow log shows Message Sent asynchronously.
    May be I think there is some problem in configuration.
    Thanks,
    Prasanna

  • How to access/invoke Web Service from BPM Process

    The following steps required to attach and invoke web service method from process:
    1) Add a module in the catalog for ex WebServiceMO
    2) Add WebService Catalog component demoWebService in WebServiceMO
    3) Put ur WSDL address in WSDL address field like "http://localhost:8080/test/test?wsdl"
    4) Click next to introspect the web service it will import required files and setting from the url to your project
    5) Now for invoking webservice just call the method for ex.
    @return as String[]
    getTestStringList(TestInterfaceService, out @return : @return)
    logMessage "web service calll result >>"+length(@return)+">>>"+@return[0]
    Here @ return is the return from webservice call.
    this way u can access web service from BPM process.
    Edited by: Anurag Yadav on Jul 17, 2009 2:19 PM

    I have a web service which does not return any value but when I introspect the web service, I have an out parameter to it.. Not sure why?
    For e.g.
    TestServiceListener.addTestNotes(TestNotes : testNotes, out TestNoteResponse : testNoteResponse);
    So here I see an out parameter, but my web-service has no out parameter...
    Any idea why is this happening?

  • Calling ADF page Custom Listener (Ex: ActionListener) from BPM Process Task (APPROVE/REJECT)

    Hi All,
    Jdeveloper version - 11.1.1.7
    I am very new to BPM / SOA development, but I have very good development skills on ADF.
    I am not using ADF BC, using EJB for business services and also using custom ADF pages for HumanTasks.
    Usecase:
    From the BPM Process task, when process submission (APPROVE / REJECT) , I need to invoke a Custom listener (Ex.Action Listener - a EJB call) in the ADF page.
    I am trying to use BPM APIs.
    Please clarify me how this will achieve using BPM APIs. I need detail guidelines to do it. Please make to understand this process.
    Provide some useful documentation or links to understand the following:
    1. Custom Human task pages
    2. BPM APIs - 11.1.1.7
    3. Call a BPM process task from ADF Listener and Call a ADF Listener from BPM Process task - Using BPM APIs.
    Please revert more clarifications needed.
    Thanks and Regards
    Mohanraj N

    Hi Joonas.
    Plese let me explain me better for your understanding
    A big summary for what I meant it's the following:
    1- In the procces you made, when you add the HT activity, you have to implement it, this means declare the input(s) parameters you want. This implementation create the .task file.
    2- Create an application, and projects as HT you have. Each poject are based on the .task file, and automatically create a Data Control (for each project based on a .task) with all you need.
    This w'll be an empty application, so you can customize it all you want. The task selected should have all the parameters previously defined. Those parameters can change if you want.
    2- Create a page(s) in the task flow for the task implementation. You can even split the the payload of the task in differents pages, create your custom pages and any logic you need.
    3- An important aspect is how to match these application with the HT implemented in the process. It's possible, it's a configuration en the Enterprise Manager.
    4- Deploy your application
    All these are explain in the book I mentioned
    Th book you can find it here:
    https://blogs.oracle.com/soacommunity/entry/oracle_soa_suite_11g_handbook_1
    Regards Dariel.
    PS: Please, let me know if you need more details.

  • Customize email Notifications sent from UWL

    Hello,
    Can the eMail notifications sent from UWL be customized in Portal 7.3 ?
    Regards,
    Jay.

    Hi Jay
    I hope you are well and many thanks for using the SAP Discussion Forums.
    In relation to your query you mentioned the following:
    Can the eMail notifications sent from UWL be customized in Portal 7.3 ?
    In UWL lingo, notifications that you would see under the notification tab are specific to: Knowledge Management Collaboration Recent Notifications. Notifications through the Universal Worklist deal with Knowledge Management and Collaboration. If you are looking to integrate SAP Office within the Universal Worklist please refer to note 945484 How to receive office notifications in the universal
    worklist.
    Now in terms of actually customizing the emails themselves. From my research and understanding if
    you are using the default mail notification this is not customizable. You can however put a notification task in the flow(just before the human task), if you want to customize the notification content. This would be done through the task ID for the workitems (you can find this through the enalbement of the support information).
    Kindly update me as per your findings.
    Kind Regards & All The Best
    Troy Cronin
    Enterprise Portal Support Engineer
    AGS

  • Want to send Email Notification to Non-BPM Workspace user?

    I want to send an email notification to non-bpm workspace user. I don't want to do it over the human task because it is an automatic task. Should I use BPEL to send email? Please advise. I am newbie to the BPM & BPEL. And Please give me a link that I can find the step to implement it. Thank you.

    where do you keep your email list, DB or any file or any input attribute in your page?

  • Track Emails Sent from SAP

    Is there any way to track emails sent from SAP to Internet Address ? Can we know whether the delivery was successful, how many mails sent to whom on a specific date ?
    PS: I am in 4.0B Version which doesnt have SOST Transaction. Also it doesnt have Utilities->Overview of Send Orders option in SCOT.
    Thanks in advance.

    Hi,
    I've had this problem before and the best way to find out if emails were sent or not is just to follow up with the actual people getting the emails...
    SAP will only tell limited info about external emails anyway ... once the email passes through the internet gateway it's no longer SAP's problem.
    If you are the one controlling the email sending, can you just create a log table and write to it each time?

  • How do you open a Numbers file sent from another Mac user with same operating system, i get a pop up that says I'm missing an index.hml file??? HELP PLEASE

    how do you open a Numbers file sent from another Mac user with same operating system, i get a pop up that says I'm missing an index.hml file??? HELP PLEASE

    The operating system may be the same but the Numbers applications are likely different.  You need to get the apps in sync.  Unfortunately, the Numbers (and Pages as well) saga is pretty confusing (and frustrating).  Here's some info from the iWork resident version expert (PeterBreis0807):
    Pages '09/'08 can not open Pages 5 files and you will get the warning that you need a newer version.
    Pages 5.2 can open Pages '09 files but may damage/alter them. It can not open Pages '08 files at all.
    Older versions of Pages 5 can not open files from later versions of Pages 5.
    Once opened and saved in Pages 5 the Pages '09 files can not be opened in Pages '09.
    Anything that is saved to iCloud and opened in a newer version of Pages is also converted to Pages 5 files.
    All Pages files no matter what version and incompatibility have the same extension .pages.
    Pages 5 files are now only compatible with themselves on a very restricted set of hardware, software and Operating Systems and will not transfer correctly on any other server software than iCloud.
    Apple has removed almost 100 features from Pages 5 and added many bugs.

  • Oracle User Messaging Service

    Can we use more than one SMTP user for configuring notifications in User Messaging services?

    Hi grehard,
    I am getting the below error under message status. Can you please suggest me the solution ?
    Message ID (Recipient)     a792deb5c0a805f100972b1631596902 (USER:AIAIntegrationAdmin)
    Operation     Send
    Overall Status     Failed
    Status Code     ENGINE_PROCESSING_FAILURE
    Status Message     User could not be resolved to device addresses. Please see the log file for details.
    Timestamp     Dec 17, 2012 12:05:18 PM IST
    Gateway Message ID     
    Sender     
    Recipient     USER:AIAIntegrationAdmin
    Driver Instance Name     
    Engine     /Farm_base_domain/base_domain/soa_server1/usermessagingserver
    Application Name     soa-infra
    Application Instance Name

  • Programmatically setting UserPrefs for User Messaging Service

    Hi,
    do anyone knows or have tried to set UserPrefs, for User Messaging Service in SOA Suite, instead of using the web interface?
    I have tried using the API provided, but with no success.
    Appreciate any pointers and hints.
    Thank you
    yee thian

    I solved this... when u r saving from Em it is not saving ur configuration. so go to driverconfig.xml file at below location
    Manully enter all the configuration values and restart the server.
    C:\Oracle\Middleware\user_projects\domains\ofmw_base_domain\config\fmwconfig\servers\bam_server1\applications\usermessagingdriver-email\configuration

  • Oracle User Messaging Service unable to connect to Mail server through SSL

    Hi,
    I have a SOA server setup with User Messaging Service, with email driver installed. I set it up to connect to an SMTP server over SSL.
    Using the user messaging sample app from samplecode.oracle.com, I encountered the following error:
    javax.mail.MessagingException: Exception reading response; nested exception is: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    After doing some research, I copied the cert from the Mail server and put in in the JDK keystore (jdk\jre\lib\security\cacert) using keytool -importcert command. Then I did configure the SOA server to use that keystore. However I still encountered the above mentioned exception.
    Anyone has encountered and solve the problem?
    Appreciate any pointers :)
    yee thian

    Hi,
    SAP support suggested to check the following notes:
    827958 - Javascript Errors in IC WebClient, Messaging does not work
    871851 and 872720 - JRE version
    828884 - SAM (Simple ABAP messaging)
    844929
    924443
    927566
    927567
    Regards,
    Bruno Mikio

  • Does User Messaging Service come by default in SOA Suite?

    Does User Messaging Service come by default in SOA Suite?

    Yes, UMS is a feature available as part of SOA suite installation.
    You should be able to see the UMS related configuration features in the EM Console.
    Please visit the following link for more information.
    Configuring Oracle User Messaging Service
    Thanks,
    Wajid
    Middleware Integration - YouTube

  • Trying to integrate with User Messaging Service adapter in SOA suite.Can it be possible through an JMS interface.

    Trying to integrate with User Messaging Service adapter in SOA suite. Can it be possible through an JMS interface.
    I have an JMS backend integrated to Oracle B2B. Is it possible to send an email protocol message using JMS interface to B2B where User messaging Service has been implemented. The adapters required for UMS have been deployed and the sdpmessaging jar files also have been added to the classpath. The only problem i face is i dont have an BPEL system to integrate where as in the forums it has been mentioned how to post a message using BPEL.
    Please let me know if there is a way to integrate the adapter with JMS interface.
    Thanks in advance
    Deepak

    If I remember correct, to use JCA adapter with SOA stack requires that adapter implement some Oracle API.
    The Adapter SDK is a light-weight tool kit that enables rapid implementation and deployment --- http://www.oracle.com/technology/products/integration/adapters/pdf/DS_OracleASAdapter.pdf
    http://download.oracle.com/docs/cd/B16981_04/current/acrobat/cct115dg.pdf
    Mostly you will have to wrap your jca adapter to make it available in SOA suite/stack.
    Other option is that you adapter provider would have given CCI interface or some custom interface which can be used for invoking adapter end-points.
    Manoj

  • NoSuchMethodError when invoking EJB Component  From BPM Process

    Hi,
    I created BPM process which contains global creation activity and user interactive activity and catalogued ejb component. In user interactive activity i wrote the Process Business Language to invoke Remote EJB deployed in weblogic server. When i tried to execute user interactive activity, i got the following exception.
    Caused by: java.lang.NoSuchMethodError: weblogic.kernel.KernelStatus.isThinIIOPClient()Z
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.readObject(RemoteBusinessIntfProxy.java:192)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at java.io.ObjectStreamClass.invokeReadObject(Unknown Source)
         at java.io.ObjectInputStream.readSerialData(Unknown Source)
         at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
         at java.io.ObjectInputStream.readObject0(Unknown Source)
         at java.io.ObjectInputStream.defaultReadFields(Unknown Source)
         at java.io.ObjectInputStream.readSerialData(Unknown Source)
         at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
         at java.io.ObjectInputStream.readObject0(Unknown Source)
         at java.io.ObjectInputStream.readObject(Unknown Source)
         at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:195)
         at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.java:565)
         at weblogic.utils.io.ChunkedObjectInputStream.readObject(ChunkedObjectInputStream.java:191)
         at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:62)
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:201)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:338)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:252)
         at weblogic.jndi.internal.ServerNamingNode_921_WLStub.lookup(Unknown Source)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:374)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:362)
         at javax.naming.InitialContext.lookup(Unknown Source)
         at fuego.jndi.FaultTolerantContext.lookup(FaultTolerantContext.java:515)
         at fuego.connector.impl.BaseRemoteConnector.getReferencedObject(BaseRemoteConnector.java:116)
         at fuego.connector.impl.BaseRemoteConnector.getReferencedObject(BaseRemoteConnector.java:107)
         at fuego.ejb.EJBConnector.getEJBHome(EJBConnector.java:62)
         at fuego.ejb.EJBConnector.getEJBHome(EJBConnector.java:52)
         at fuego.ejb.EJBConnector.getResource(EJBConnector.java:101)
         at fuego.ejb.EJBConnector.getResource(EJBConnector.java:91)
         at fuego.ejb.EJBConnector.getResource(EJBConnector.java:79)
         at fuego.connector.ConnectorTransaction.getResource(ConnectorTransaction.java:276)
         at fuego.connector.EJBHelper.getEJBHome(EJBHelper.java:36)
         at fuego.connector.EJBHelper.getEJBHome(EJBHelper.java:30)
         at fuego.ejb.EJBHome.locate(EJBHome.java:119)
         at OrderManagement.SampleOrderProcess.Default_1_0.Instance.CIL_submitOrder(Instance.xcdl:1)
         at OrderManagement.SampleOrderProcess.Default_1_0.Instance.CIL_submitOrder(Instance.xcdl)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:512)
    what i noticed here is in Oracle BPM Studio there is weblogic jar file which contains Kernel status file. The KernelStatus file do not have "isThinIIOPClient method". But in wlclient jar file there is Kernel status class which contains "isThinIIOPClient" method.
    How can I override the weblogic.jar and wlclient.jar for Oracle BPM?
    Please help me to resolve this problem.
    Thanks and Regards
    Mahesh Babu

    I resolved the above issue by generating ejb2.1 session bean and ejb2.1 client. But When i tried to invoke ejb2.1 session bean from process using Process Business Language, it throws the following exception.
    Task failed.
    Caused by: Task '0' in activity '/SampleOrderProcess#Default-1.0/Interactive[SubmitOrder]' for instance '/SampleOrderProcess#Default-1.0/1/0' could not be successfully executed. The task failed while executing method 'submitOrder'.
    Caused by: The method 'CIL_submitOrder' from class 'OrderManagement.SampleOrderProcess.Default_1_0.Instance' could not be successfully executed.
    Caused by: java.lang.IncompatibleClassChangeError
    Caused by: fuego.lang.ComponentExecutionException: The method 'CIL_submitOrder' from class 'OrderManagement.SampleOrderProcess.Default_1_0.Instance' could not be successfully executed.
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:519)
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:273)
         at fuego.fengine.FEEngineExecutionContext.invokeMethodAsCil(FEEngineExecutionContext.java:219)
         at fuego.server.execution.EngineExecutionContext.runCil(EngineExecutionContext.java:1280)
         at fuego.server.execution.TaskExecution.invoke(TaskExecution.java:401)
         at fuego.server.execution.InteractiveNormalCilExecution.invoke(InteractiveNormalCilExecution.java:425)
         at fuego.server.execution.TaskExecution.executeCIL(TaskExecution.java:513)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:697)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:657)
         at fuego.server.execution.TaskExecution.executeTask(TaskExecution.java:154)
         at fuego.server.execution.microactivity.InteractiveMicroActivity.executeNormalCil(InteractiveMicroActivity.java:501)
         at fuego.server.execution.microactivity.InteractiveMicroActivity.executeItem(InteractiveMicroActivity.java:454)
         at fuego.server.execution.microactivity.InteractiveMicroActivity.execute(InteractiveMicroActivity.java:104)
         at fuego.server.AbstractProcessBean$48.execute(AbstractProcessBean.java:3184)
         at fuego.server.execution.DefaultEngineExecution$AtomicExecutionTA.runTransaction(DefaultEngineExecution.java:304)
         at fuego.transaction.TransactionAction.startBaseTransaction(TransactionAction.java:470)
         at fuego.transaction.TransactionAction.startTransaction(TransactionAction.java:551)
         at fuego.transaction.TransactionAction.start(TransactionAction.java:212)
         at fuego.server.execution.DefaultEngineExecution.executeImmediate(DefaultEngineExecution.java:123)
         at fuego.server.execution.EngineExecution.executeImmediate(EngineExecution.java:66)
         at fuego.server.AbstractProcessBean.runTask(AbstractProcessBean.java:3188)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.lang.JavaClass.invokeMethod(JavaClass.java:1410)
         at fuego.lang.JavaObject.invoke(JavaObject.java:227)
         at fuego.component.Message.process(Message.java:585)
         at fuego.component.ExecutionThread.processMessage(ExecutionThread.java:780)
         at fuego.component.ExecutionThread.processBatch(ExecutionThread.java:755)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:142)
         at fuego.component.ExecutionThread.doProcessBatch(ExecutionThread.java:134)
         at fuego.fengine.FEngineProcessBean.processBatch(FEngineProcessBean.java:244)
         at fuego.component.ExecutionThread.work(ExecutionThread.java:839)
         at fuego.component.ExecutionThread.run(ExecutionThread.java:408)
    Caused by: java.lang.IncompatibleClassChangeError
         at OrderManagement.SampleOrderProcess.Default_1_0.Instance.CIL_submitOrder(Instance.xcdl:5)
         at OrderManagement.SampleOrderProcess.Default_1_0.Instance.CIL_submitOrder(Instance.xcdl)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at fuego.component.ExecutionThreadContext.invokeMethod(ExecutionThreadContext.java:512)
         ... 34 more
    Please help me to resolve this issue.
    Thanks and Regards
    Mahesh Babu

Maybe you are looking for

  • Surface Pro Driver injection no longer working under MDT 2013

    Since upgrading to MDT 2013 we are experiencing an issue with deploying Windows 8.1 to our Surface Pros. The deployment seems to be ignoring driver group settings in CS.ini and it basically injects no drivers. We are following the guide Microsoft pos

  • Smart Talk not working with Bluetooth since update

    I have been using Smart Talk for many months now on my iPhone.   I have a bluetooth headset which I generally use.  This has worked fine (with the exception that when I get an incomming call it disconnects the bluetooth from the Smart Talk call). But

  • Ios7 - how can i delete queued downloads in itunes?

    Ios 7.0.3 ipad 2 This seems to be a constant problem with itunes on the ipad but there still does not seem to be a clean fix offered by apple. I have 50 downloads sitting in my download queue in itunes which i want to delete since they are episodes o

  • Easiest and best settings for color correction for GoPro shot with protune active.

    Hi, Is there anyone that has a great preseting that works similar to the protune setting i GoPro studio. The movie gets really colorful and sharp. I'm using a swedish installation of Elements so if possible give me some hint under what meny etc I sho

  • Recording Sound Files

    I'm looking at technologies for an application that will (among other things) provide dictation capabilities. Specifically, we need to be able to record sound files, review them, then upload them to a central server. My reading of the documentation i