BPEL Services with Task are ending in Recovery console

Hi All,
I have a BPEL service with task activity. Once the task service is invoked, the BPEL service is ending up in recovery console. Not sure why this is happening, we are currently on SOA 10.1.3.3.1+MLR18.
Note: In the same service I have a debug statement after the task initiation and before the receive activity of task. Once the BPEL service is invoked log I can see that my debug statement is getting executed. It means that in the back end my task is getting executed but it is not shown in BPEL console or WFTASK table.
Please suggest if we have I am missing any thing.
Thanks
Ramu.

Hi Ramu,
Are you able to recover the process from the manual recovery section ? If yes, then its fine and now turn the cube, wf, engine loggers to DEBUG and see the corresponding errors in the log file.(to figure out the root cause)
Regards
A

Similar Messages

  • Strange error protecting BPEL service with WSM server agent

    I'm trying to protect a BPEL service with OWSM (SOA Suite 10.1.3.3 MLR#19). Everything looks fine as far as I can see, but when the service is called with WSM active it always fails with internal server error. There are no errors in the logs (BPEL logs, OPMN logs, OWSM logs, ...) except the following in the Apache access logs:
    "POST /policymanager/services/RegistrationService HTTP/1.0" 200 525
    I can connect to /policymanager/services/RegistrationService with a browser, it shows a message saying it is an Axis web service. Without WSM the BPEL service works fine.
    I have tried to fix this for two full days now and nothing I have tried makes a difference. Any suggestions for what I should do in order to solve the issue or at least get more data on what the root cause could be?
    -Erik
    Edit: There were two issues. The built-in test page doesn't work, when invoked with a real external client it works better. In addition the properties for file-based policies seem to be used even when the online check has been enabled (so they cannot be omitted/blank) and a restart is required to make the changes bite.
    Edited by: ew on Oct 4, 2010 2:50 PM

    Did you resolve this issue ? We are having same issue with one of our BPEL process ........ any help would be highly appreciated .....
    Thanks in Advance

  • Work Management Service: No tasks are shown on MySite

    The work-management-service is not working.
    On "MySite" the task-list is always empty (Pic.1), but there are tasks referenced to the profile.
    I do not get errors in the ULS or on the task-page (refresh is OK).
    Tasks are crawled and search works fine:
    Are there any other settings i am not aware of ?

    Increased the logging levels:
    System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)), StackTrace:
    at Microsoft.SharePoint.SPWeb.GetListFromWebPartPageUrl(String pageUrl)
    at Microsoft.Office.Server.WorkManagement.ProviderOM.SharePointTaskAggregationUtilities.TaskCollector`3.<>c__DisplayClass56.<TryExecuteActionWithListLoaded>b__53(SPWeb web)
    at Microsoft.Office.Server.WorkManagement.ProviderOM.SharePointTaskAggregationUtilities.TaskCollector`3.TryExecuteActionWithListLoaded(Func`1 fnGetCreateSite, Func`2 fnCreateWeb, Func`2 fnGetList, Func`1 fnGetListId, Action`3 toExecute)
    at Microsoft.Office.Server.WorkManagement.ProviderOM.SharePointTaskAggregationUtilities.TaskCollector`3.TryExecuteActionWithListLoaded(Uri rootFolderUri, Action`3 toExecute)
    at Microsoft.Office.Server.WorkManagement.ProviderOM.SharePointTaskAggregationUtilities.TaskCollector`3.FindNewTasksFromSearch()
    at Microsoft.Office.Server.WorkManagement.ProviderOM.SharePointTaskAggregationUtilities.TaskCollector`3.CollectAndSyncTasks()
    at Microsoft.Office.Server.WorkManagement.Internal.TaskAggregator.FarmRefreshJob.RefreshProvider(Nullable`1 lastSync, String providerKey, IWmaTaskProvider provider)
    at Microsoft.Office.Server.WorkManagement.Internal.TaskAggregator.FarmRefreshJob.AggregateProviders()
    at Microsoft.Office.Server.WorkManagement.Internal.TaskAggregator.FarmRefreshJob.ExecuteCore()
    at Microsoft.Office.Server.WorkManagement.Internal.TaskAggregator.FarmRefreshJob.ExecuteAndDispose()
    at Microsoft.Office.Server.WorkManagement.Internal.WmaContextUtils.<>c__DisplayClass1.<ExecuteCodeInsideWmaContext>b__0()
    at Microsoft.Office.Server.WorkManagement.Internal.WmaContextUtils.ExecuteCodeInsideWmaContext(Action toRun, WmaContextType allowedContexts)
    at Microsoft.Office.Server.WorkManagement.Internal.BaseContextRunner`2.ExecuteAndEnsureContextValid(Action toRun, TContextState serviceUserState, String actionName)
    at Microsoft.Office.Server.WorkManagement.Internal.BaseContextRunner`2.ExecuteInSpContext(ThreadParams threadParams)
    at Microsoft.Office.Server.WorkManagement.Internal.BaseContextRunner`2.ExecuteInDiagnosticScope(ThreadParams threadParams)
    at Microsoft.Office.Server.WorkManagement.Internal.BaseContextRunner`2.Run(Object tParams)
    at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
    at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
    at System.Threading.ThreadPoolWorkQueue.Dispatch()
    SPRequest.MapUrlToListAndView: UserPrincipalName=, AppPrincipalName= ,bstrUrl=https://ksi-server.com/customer/issuetracking ,bstrUrlToMap=/customer/issuetracking/Lists/Tasks/MyOpenTasks.aspx
    There is no "UserPrincipalName" set, therefore the "access denied"-error ?
    Setup:
    1 Webfrontend Server
    1 Application Server
    1 Database Server
    Work "Work Management Service" is running on the Frontend-server, created with the "SharePoint Hosted Services" app-pool.

  • Securing BPEL services with OWSM: problem resolving schema

    Hi,
    With the introduction of SOA Suite 10131 specification of XML objects types and elements is handled in a separate XSD file which is imported in the WSDL for the BPEL process. This is fine, it prevents cluttering up the WSDL.
    The import is like this:
    <import namespace="http://xmlns.oracle.com/MyFirstBPEL" schemaLocation="MyFirstBPEL.xsd" />
    Now, when I secure this service using an OWSM gateway, OWSM is not able to generate a test page for this service. It cannot resolve the XSD that it needs for constructing the test form. The same happens when you try to generate a proxy for the Web Service.
    A solution is to put the schema file in BPEL's xmllib and change the schemaLocation of the import tag accordingly, e.g.:
    <import namespace="http://xmlns.oracle.com/MyFirstBPEL" schemaLocation="http://localhost/orabpel/xmllib/MyFirstBPEL.xsd" />
    Can anyone think of a better solution, i.e. one that does not require changing the WSDL and avoids dragging the XSD around?
    Thanks. Regards, Sjoerd

    Hi Bastiaan,
    The XSD that is generated is automatically packaged and deployed with the BPEL process. And publishing it in a place is exactly what I do by putting it in /xmllib. I am all for controlled publication of XML Schema, but I would rather choose which XML constructs to publish (e.g. for re-use).
    Thanks. Sjoerd

  • DPM 2012 End User Recovery - Extending AD Schema tool crashes with error

    Hi everyone,
    I deployed SCDPM 2012 R2 in my test environment, but it is an issue. When I'm trying to extend AD Schema by DPMADSchemaExtensionTool.exe, it stops to working with an appcrash message:
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: dpmdsacl.exe
    Application Version: 4.2.1092.0
    Application Timestamp: 51b1e89d
    Fault Module Name: KERNELBASE.dll
    Fault Module Version: 6.3.9600.16384
    Fault Module Timestamp: 5215fa76
    Exception Code: e0434352
    Exception Offset: 0000000000008384
    OS Version: 6.3.9600.2.0.0.272.7
    Locale ID: 1033
    Additional Information 1: 7644
    Additional Information 2: 7644cee486badc818e8a96bb7aba3bfd
    Additional Information 3: 2ddc
    Additional Information 4: 2ddcde93bf91b9ddbb6e1a89fb9b5892
    When I'm trying to do the same with cmd I get an error:
    C:\diagEUR>dpmdsacl.exe sc.local CN=MS-ShareMapConfiguration,CN=System,DC=sc,DC=
    local /A sc\dpm$
    Unhandled Exception: System.IO.FileLoadException: Could not load file or assembl
    y 'dpmdsacl, Version=1.0.523.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    ' or one of its dependencies. Strong name validation failed. (Exception from HRE
    SULT: 0x8013141A) ---> System.Security.SecurityException: Strong name validation
    failed. (Exception from HRESULT: 0x8013141A)
    --- End of inner exception stack trace ---
    How can I fix this error?

    Hi Seth,
    I think your script will be useful, please share them
    Here it is. It does the same items that the DPM tool does to the domain, with a few extra steps noted at the top.
    We create a group that has the permissions on the container, with the hope that one day, this feature will be available (DCR submitted).  In our support model, we would rather delegate permissions to support personnel to modify group membership than
    modify ACLs on system containers.    Your opinion on this may differ, so, feel free to remove it.
    It also gives our support personnel permissions to modify the sharemap container - so they can enable DPM EUR servers later.
    Both of these have been working fine for preparing a domain / enabling EUR.  Preparing the domain is run by domain admin, then, we leave enabling EUR to our support staff.
    Remember, this is not supported, this just makes the same changes that the EUR tool does.  You should use the EUR tool from Microsoft.
    #Requires -version 2.0
    # File:      DPMEndUserDomainPrep.ps1
    # Version:   0.1
    # Purpose:   Domain Preparation for DPM End User Recovery
    # Tasks compelted by this script:
    #      -Create MS-ShareMapConfiguration container in System container of the domain
    #            -Create the security group (NETBIOS Domain Name) DPM End User Recovery servers
    #      -Give Create,Delete MS-srvShareMappingObjects, ListChildren permissions for the newly created group, on the new MS-ShareMapConfiguration container
    #      -Find <SUPPORT GROUP> group in the forest root, and grant full permissions to the MS-ShareMapConfiguration container
    Param(
      [string]$domain
    if ($domain -eq "")
     write-host ""
     write-host "Script Usage" -foreground cyan
     write-host "-----------------" -foreground cyan
     write-host "./DPMEndUserDomainPrep.ps1 -domain domain.com" -foreground cyan
     write-host ""
     exit
    $Title = "DPM End User Recovery Domain Prep"
    $Message = "Do you want to continue with domain prep for " + $domain + "?"
    $Yes = new-object system.management.automation.host.choicedescription "&Yes","Continue with Domain Prep for $domain"
    $No = new-object system.management.automation.host.choicedescription "&No","Exit the script"
    $options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)
    $result = $host.ui.PromptForChoice($title, $message, $options, 0)
    If ($result -eq 1){exit}
    # Load the AD module
    Import-Module ActiveDirectory
    # Figure out our domain
     $root = (Get-ADRootDSE -server $domain).defaultNamingContext
    #Get netbios domain name
     $domainname = (Get-ADDomain -Identity $domain).NetBIOSName
    #SchemaIDGuid for MS-SrvShareMapping Class
     $ShareMapGUID = new-object guid c356f65b-5540-4d85-9aef-3a7ecae7a878
     $guidNull = new-object Guid 00000000-0000-0000-0000-000000000000
            $guidGroupObject = new-object Guid BF967A9C-0DE6-11D0-A285-00AA003049E2
    # Get or create the MS-ShareMapConfiguration container
     $ou = $null
     try
         $ou = Get-ADObject "CN=MS-ShareMapConfiguration,CN=System,$root"
     catch
         Write-host "MS-ShareMapConfiguration container does not currently exist." -foreground yellow
     if ($ou -eq $null)
         $ou = New-ADObject -Type Container -name "MS-ShareMapConfiguration" -Path "CN=System,$root" -Passthru
         write-host "Created Container $ou" -foreground yellow
         start-sleep -s 10
    #Create DPM End User Recovery servers group
     write-host "Creating group $domainname DPM End User Recovery Servers" -foreground yellow
     new-adgroup -path "cn=builtin,$root" -name "$domainname DPM End User Recovery Servers" -groupscope universal -groupcategory security -description "Members of this group are delegated permissions to change contents of the System\MS-ShareMapConfiguration
    container"
            start-sleep -s 10
     $ServerGroup = get-adgroup "$domainname DPM End User Recovery Servers"
     $ServerGroupsid = [system.security.principal.securityidentifier] $ServerGroup.sid
     write-host ""
     write-host "Created group $ServerGroup" -foreground yellow
    #Get <SUPPORT GROUP>in Forest Root
     $forestname = [System.DirectoryServices.ActiveDirectory.Forest]::GetCurrentForest().Name
     #Check to see if <SUPPORT GROUP> group exists
     $SupportGroup = $null
     $SupportGroup = get-adgroup -server $forestname "<SUPPORT GROUP>"
     if ($SupportGroup -eq $null)
      write-host ""
      write-host "WARNING - <SUPPORT GROUP> Group does not exist in the forest root" -foreground red
      write-host "Permissions must be manually assigned to the MS-ShareMapConfiguration Container for the <SUPPORT GROUP>" -foreground red
      write-host ""
     $SupportGroupSID = [system.security.principal.securityidentifier] $SupportGroup.sid
    #Get current ACL for the MS-ShareMapConfiguration Container
     $OUacl = get-acl "ad:cn=ms-sharemapconfiguration,cn=system,$root"
    #Create ACE for adding permissions to newly created group to MS-ShareMapConfiguration container
     $ace1 = new-object system.directoryservices.activedirectoryaccessrule $ServerGroupsid, "CreateChild,DeleteChild", Allow, $sharemapguid,"all"
     $ace2 = new-object system.directoryservices.activedirectoryaccessrule $ServerGroupsid, "ListChildren", Allow,$guidNull,"all"
     $ace3 = new-object system.directoryservices.activedirectoryaccessrule $SupportGroupsid, "GenericAll", Allow,$guidNull,"all"
     $OUacl.addaccessrule($ace1)
     $OUacl.addaccessrule($ace2)
     $OUacl.addaccessrule($ace3)
    #Apply ACL
     write-host ""
     write-host "Setting ACLs on cn=ms-sharemapconfiguration,cn=system,$root" -foreground yellow
     set-acl -aclobject $OUacl "ad:cn=ms-sharemapconfiguration,cn=system,$root"
    #Get current ACL for the DPM End User Recovery Servers group
     $ServerGroupDN = $servergroup.distinguishedname
     $Groupacl = get-acl "ad:$servergroupdn"
     $groupace = new-object system.directoryservices.activedirectoryaccessrule $SupportGroupsid, "GenericAll", Allow,$guidNull,"all"
     $Groupacl.addaccessrule($groupace)
     write-host ""
     write-host "Setting ACLs on $servergroupdn" -foreground yellow
     set-acl -aclobject $Groupacl "ad:$servergroupdn"
     write-host ""
     write-host "Script Complete" -foreground yellow
    Seth Cohen

  • Calling Web Service with SOAP header from BPEL

    Hi,
    I am calling a web service (with header information) from BPEL. In the Invoke activity, i created a header variable to pass the header information.
    But, when i test the BPEL service, invoke activity fails because the header information is not being passed.
    Below is the error message (copied from clipboard).
    +<messages><input><Invoke_1_getsubinfo_InputVariable><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="parameters"><getsubinfoElement xmlns="http://ws/its/tabs/webservices/SingleRowWS/SingleRowWS.wsdl">+
    +<pSubnoin>+
    +<insubno>12345678</insubno>+
    +</pSubnoin>+
    +</getsubinfoElement>+
    +</part></Invoke_1_getsubinfo_InputVariable></input><fault><bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>exception on JaxRpc invoke:+
    start fault message:+
    Internal Server Error (Caught exception while handling request: javax.xml.rpc.JAXRPCException: Not authenticated user)+
    *:end fault message*</summary>
    +</part></bindingFault></fault></messages>+
    As said, no header information is visible in the Invoke activity.
    Please provide help for the above issue.
    -MJ

    Hello Patrick,
    Thanks for the response. I am using normal assign activity to assign values to the header variable as shown below. HeadMT is the header variable which is passed in the invoke activity.
    +<assign name="Assign_Header">+
    +<copy>+
    +<from expression="'tkl12'"/>+
    +<to query="/ns1:LOGIN_INFO/ns1:USER_NAME" variable="*HeadMT*"+
    part="payload"/>
    +</copy>+
    +<copy>+
    +<from expression="'tkl123'"/>+
    +<to query="/ns1:LOGIN_INFO/ns1:PASSWORD" variable="*HeadMT*"+
    part="payload"/>
    +</copy>+
    +<copy>+
    +<from expression="'TKL'"/>+
    +<to query="/ns1:LOGIN_INFO/ns1:CHANNEL_ID" variable="*HeadMT*"+
    part="payload"/>
    +</copy>+
    +</assign>+
    The expected input by the web service is as below with the header information highlighted.
    +<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://ws/webservices/RowWS/RowWS.wsdl">+
    +*<soap:Header>*+
    +*<ns1:LOGIN_INFO>*+
    +*<ns1:USERNAME>tkl12</ns1:USERNAME>*+
    +*<ns1:PASSWORD>tkl123</ns1:PASSWORD>*+
    +*<ns1:CHANNEL_ID>TKL</ns1:CHANNEL_ID>*+
    +*</ns1:LOGIN_INFO>*+
    +*</soap:Header>*+
    +<soap:Body>+
    +<ns1:substatusElement>+
    +<ns1:pInparam>+
    +<ns1:insubno>7674988</ns1:insubno>+
    +</ns1:pInparam>+
    +</ns1:substatusElement>+
    +</soap:Body>+
    +</soap:Envelope>+

  • Are the WLS 9.1 Web Service Ant Tasks ready for prime time?

    I am trying to create a Proof of Concept (POC) for Enterprise and B2B Services at Wendy's Int'l, Inc.
    As part of this POC, I created a WSDL for an in-house service and then used the wsdlc and jwsc Ant Tasks to translate this WSDL to Java classes and ultimately (I hoped) a deployable services.
    In this document, I describe the issues I encountered setting up what I consider to be a simple POC.
    I'll try to attach my WSDL file and build.xml so you can follow along.
    I'll also try to attach my CSS file so you can compare how the generated WSDL appears in the Browser to the way I want it to appear.
    If attachments are not allowed on these forums, then I will wait and see if there is interest in those documents before I paste them under this topic.
    Some preliminary information about my environment.
    Environment:
         Windows XP Pro SP2
         WebLogic 9.1
         Java 1.5.0_04
    Service Name:
         AppRelease
    Note: If I modify my WSDL (perhaps to add a new Operation or to change the definition of an element) and run wsdlc again, the AppReleaseSOAPPortImpl.java file is overwritten For this reason, I implemented my service logic in a class called AppReleaseServiceImple.java.
    Now, for the issues.
    1.     Bug:
    In the WSDL generated by wsdlc, the wsdl:part child of the wsdl:message tag is erroneously prefixed with a colon.
    This occurs whether or not I specify a prefix for the http://schemas.xmlsoap.org/wsdl/ namespace.
    Work around: Extract the wsdl from the jar file, fix it and add it back into the jar.
    2.     Bug:
    In the WSDL generated by wsdlc, the wsdl:input and wsdl:output children of the wsdl:operation child of wsdl:portType tag are erroneously prefixed with a colon. Like 1 above, this occurs whether or not I specify a prefix for the http://schemas.xmlsoap.org/wsdl/ namespace.
    Work around: Extract the wsdl from the jar file, fix it and add it back into the jar.
    The error message generated by Bugs 1 and 2 is not helpful in diagnosing the problem:
    [jwsc] Error at line:46 col:7 ':' expected [?! -- [CDATA[ ]
    3.     Bug:
    In the WSDL generated by wsdlc, the documentation elements have all of my html elements stripped out, as well as my xhtml and wsdl namespace references. This completely negates one of the best features of the documentation tag, being able to present the WSDL in a browser as a nicely formatted, human friendly document which is also the underlying WSDL that can be viewed when the person views the source document.
    I label this as a bug because it greatly reduces the functionality of the resulting WSDL.
    4.     Annoyance:
    The WSDL generated by wsdlc has all of my comments stripped out, except the comments in the xsd:schema section of the wsdl:types element. I would prefer that all my comments be left in the WSDL, but if comments must be stripped out then I think all of the comments should be stripped out.
    5.     Annoyance:
    The WSDL generated by wsdlc has my CSS specification stripped.
    Work around: I don’t know if adding the CSS back will do any good because I have not yet created a deployable service (see the last issue below).
    6.     Annoyance:
    The WSDL generated by wsdlc has different namespace prefixes than the ones I specified for my application's namespace and for the http://schemas.xmlsoap.org/wsdl/soap/ namespace.
    Work around: Perform a find/replace on namespace prefixes "s0" and "s1" to return them to my prefered values.
    Another thing I can do at this point is simply replace the generated WSDL in the jar file with my original WSDL. This would address issues 1 thru 6 above.
    7.     Annoyance:
    The java source files created by wsdlc are put into a jar file. This makes it annoying when working within a traditional IDE like Eclipse because there is no way to reference the source files within the jar as working source.
    Work around: Extract the source files from the jar and identify the resulting directory structure as part of the source structure of the project.
    8.     Bug:
    The jwsc task complains if the same parameter name is used in multiple operations. I received the following Errors from jwsc:
    [jwsc] C:\IDE\workspace\Acre-WL9.1\AppReleaseSOAPPort.java 0:0
    [jwsc] [ERROR] - Parameter element "{http://acre.services.wendys.com/AppRelease/}garRequest" is not unique across document/literal bare WebService.
    Since the operation names are unique, I see no reason to also require uniqueness in the parameter names used by those operations.
    Work around: Use unique element names for the input parameters of the services operations.
    9.     Bug:
    Once items 1, 2 and 8 above are taken care of, jwsc fails with the following error:
    java.lang.AssertionError: java.lang.ClassNotFoundException: weblogic.j2ee.descriptor.ApplicationBeanImpl
    This seems to be due to the weblogic.jar file not being in the System Classpath.
    However, I should note that when I set verbose="on" and debug="on" in the jwsc ant task, there was a message from the task which stated "[jwsc] [search path for class files: [big freakin’ jar list]". In the big freakin’ jar list, I did find weblogic.jar and weblogic.jar has the required ApplicationBeanImpl. This indicates to me that the jwsc task does not fully honor either its classpathref attribute, nor an embedded classpath element.
    Work around: Make sure the weblogic.jar is in the System Classpath.
    10.     Bug:
    I fixed bug #9 by running a setDomainEnv script and then ran my ant task. This time I received the following output:
    ant build-serviceBuildfile: build.xml
    build-service:
    [jwsc] 1 JWS files will be processed.
    [jwsc] Processing JWS: C:\IDE\workspace\Acre-WL9.1\src\com\wendys\services\acre\AppReleaseServiceImpl.java
    [jwsc] JWS: C:\IDE\workspace\Acre-WL9.1\src\com\wendys\services\acre\AppReleaseServiceImpl.java Validated.
    [AntUtil.deleteDir] Deleting directory <some temporary directory>
    BUILD FAILED
    java.lang.ExceptionInInitializerError
    At this point, I am completely stymied about how to proceed.
    I wonder what new issues await once this 10th issue is addressed.
    Really, is this tool set ready for prime time?

    <i>Sorry to hear you are having so many issues with using the WLS 9.1 web service Ant tasks, inside of Eclipse.
    I generally create a User Library for the couple weblogic jars needed, and use it (the User Library) in my Eclipse projects that I create JWSes in.</i><br>
    I also have a separate WebLogic Library in Eclipse (actually 2 libraries since I work with WL 8.1 and now WL 9.1). As you may know, one of the long-standing issues with the Ant integration within Eclipse is the fact that Ant, being an External Tool, does not receive the Project-specific Paths/Libraries. However, since most Java-relevant Ant tasks can take classpath and classpathref attributes, this is usually not an issue. In the case of the BEA-supplied wsdlc Ant task, it is apparent from the verbose/debug console output that wsdlc can see the jars in its classpathref, but it ignores those references when resolving class references and instead only uses the system classpath.
    <p>
    <i>I've only needed the weblogic.jar and xbean.jar, not all the ones you mentioned in an earlier thread of this post.</i><br>
    I have not tried to winnow down exactly which jars are required. I simply included all the jars that exist and were added to the system classpath by the setDomainEnv.bat file created by WebLogic 9.1.
    <p>
    <i>Afterwards, I create an Ant Builder to build the JWS Web Service EAR, as opposed to fiddlin' with Eclipse.</i><br>
    I too use Ant to build my deployable archives. Eclipse is simply my IDE of choice. I validated that all the issues I listed occurred when running Ant from the command line.
    <p>
    <i>If you are interested in how I do it, send me an e-mail (to [email protected]), and I'll send you a zip of one of these JWS projects. The build.xml script for the project, takes care of a lot of the "annoyances" you mentioned, one of which I think is not accurate. I have never had a situation where the wsdlc Ant task "overwrote" my XXXImpl.java file..</i><br>
    Since I'm doing a POC to determine how we want to proceed with developing Web Services and an SOA in general, I tried to perform the same tasks using Axis 2 1.0, the WebLogic 9.1 tools, and XFire 1.1. Overwriting the Impl class is a common failing in the tools which take a WSDL and create Java source files for all three frameworks.
    <p>
    Try my scenario. Add another operation to an existing WSDL, and run the wsdlc Ant Task. The old IMPL class will be over-written.
    <p>
    Because of this, I have a separate Impl class and I make sure that all its methods and annotations match the methods and annotations in the Skeleton Impl class created by wsdlc.
    <p>
    <i>Maybe that's because I use the <exec> Ant task with jar.exe (the xvf options) in my build.xml, to only get what I need out of the .jar/.zip the wsdlc generates. I'm typically only interest in the interface class that my XXXImpl.java file needs to implements, because I use XMLBeans for the input args (and return values) of my web service operations.</i><br>
    Perhaps. I am not using XMLBeans in any of the three frameworks because the resulting service seems to be lighter-weight in all three frameworks if XMLBeans is not used. I'm sure there will be scenarios where XMLBeans is preferred, but I have not encountered that case in this POC.
    <p>
    <i>Regards,
    Mike Wooten</i>
    Thanks for the follow-up.
    Mike McAngus

  • USe of Business services with BPEL or ESB

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

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

  • How do i get in touch with Verizon when I'm out of the country?I am in Ecuador and cannot get in touch with Verizon to end my service!

    We moved to Ecuador and need to get in contact with Verizon to end our service.  The number they provided does not work.  ONE time it worked.  I dont know why it doesnt now.  Also the chat line is not ever available when I am on line.
    When I did talk they said they ended my service and that I just needed to pay the $200 to end the contract.  But when i  go on line to my bill, they are charging me another months usage it looks like.  I dont know what to do anymore.  any suggestions?

    This link gives a 24 hour support number.  http://m.prnewswire.com/news-releases/did-you-know-verizon-wireless-customer-support-travels-with-you-98413889.html

  • Service product with task list

    hi
    i am using service product with task list in service order. in subsequent quotation (by DP80) the servcie product is coming as main item operations & materials in task list are coming as sub items.
    in our case we may have to add some more operations (unplanned operations) in the service order apart from those (planned operations) already populated by task list attached to service product. and these operations need to be priced in subsequent quotation.
    our problem: in the quotation even the unplanned operations are coming as subitems and hence there is no diferentiation between planned operations (coming from rask list) and unplanned operations (added manually in the service order). we need to differtiate between planned & unplanned operations in quotation for pricing purpose.
    thanks in advance

    Hi,
    There are following work-around solutions from my point of view.
    Option 1: create two different  ‘Std. Text Key’ in config  ‘ Planned’ & ‘ Unplanned’ and also attach same  in the task list.
    All the planned operation will come with suffix ‘Planned’ and same will be printed also. While you add the unplanned one that time add’Un-planned’ std text key’
    You can also drive reporting , costing reports , confirmation report separately for all planned and unplanned items
    Options 2:  After goods posting you can find the cost difference of planned operation and unplanned operation. Devolve some Z report and based on same you can send final bill 
    Enjoy SAP......

  • Obtain the URL of BPM task with Task query Service

    Hi!
    I am using the task query service to obtain information about Tasks with web services. I need to obtain the creator and the URL to access to the detail of the task (i don't know if this column is "taskDisplayUrl").
    I have this Request but the response haven't the creator or the taskDisplayURL anybody can knows why?
    Request:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tas="http://xmlns.oracle.com/bpel/workflow/taskQueryService" xmlns:com="http://xmlns.oracle.com/bpel/workflow/common" xmlns:tas1="http://xmlns.oracle.com/bpel/workflow/taskQuery" xmlns:task="http://xmlns.oracle.com/bpel/workflow/task">
    <soapenv:Header/>
    <soapenv:Body>
    <tas:taskListRequest>
    <com:workflowContext>
    <!--Optional:-->
    <!--Optional:-->
    <com:token>aeb02ebe-69e9-4410-90d7-cffd45c2613c;;VnIEtWPiaoh7tTD1KhC4D0sjFNTVLdgySbQVa4xK0TiBb+0nzaqm/UA4THYju77KK/9xaPUH6F355rtMEoKAYBtXPPyHBYWnaGkZjAz5AB1PQyjs+hvqvA1SaVQnhWcRy8ZtTarO+vCxseuGit62QIoLa1vWKKC59j7m+OWxKYonchVcCo2droku9YZaf9T45cDLC3eh6UXzgM4S2f7OCF4BxI4b43jJZTJ6Ny3Zr/VQo57+73mkP2xxp3mtvu/5</com:token>
    </com:workflowContext>
    <tas1:taskPredicateQuery startRow="0" endRow="0">
    <!--You have a CHOICE of the next 2 items at this level-->
    <!--Optional:-->
    *<tas1:displayColumnList>*
    *<tas1:displayColumn>CREATOR</tas1:displayColumn>*
    *<tas1:displayColumn>TITLE</tas1:displayColumn>*
    *<tas1:displayColumn>CREATEDDATE</tas1:displayColumn>*
    *<tas1:displayColumn>taskDisplayUrl</tas1:displayColumn>*
    *<tas1:displayColumn>PRIORITY</tas1:displayColumn>*
    *<tas1:displayColumn>TASKNUMBER</tas1:displayColumn>*
    *</tas1:displayColumnList>*
    <tas1:optionalInfoList>
    <!--Zero or more repetitions:-->
    </tas1:optionalInfoList>
    <!--Optional:-->
    <tas1:predicate>
    <!--Optional:-->
    <tas1:assignmentFilter>MY_AND_GROUP</tas1:assignmentFilter>
    <!--Optional:-->
    <!--You have a CHOICE of the next 2 items at this level-->
    <!--Zero or more repetitions:-->
    <tas1:clause joinOperator="OR" ignoreCase="false">
    <!--Optional:-->
    <tas1:column>TITLE</tas1:column>
    <tas1:operator>EQ</tas1:operator>
    <!--You have a CHOICE of the next 3 items at this level-->
    <!--Optional:-->
    <tas1:value>BPM_NotasGastos</tas1:value>
    <!--Optional:-->
    </tas1:clause>
    <tas1:clause joinOperator="OR" ignoreCase="false">
    <!--Optional:-->
    <tas1:column>TITLE</tas1:column>
    <tas1:operator>EQ</tas1:operator>
    <!--You have a CHOICE of the next 3 items at this level-->
    <!--Optional:-->
    <tas1:value>BPM_AprobacionPedido</tas1:value>
    <!--Optional:-->
    </tas1:clause>
    <!--Optional:-->
    </tas1:predicate>
    <tas1:ordering>
    <!--Zero or more repetitions:-->
    <tas1:clause>
    <!--You have a CHOICE of the next 2 items at this level-->
    <tas1:column>updatedDate</tas1:column>
    <tas1:sortOrder>DESCENDING</tas1:sortOrder>
    </tas1:clause>
    </tas1:ordering>
    <!--Optional:-->
    </tas1:taskPredicateQuery>
    </tas:taskListRequest>
    </soapenv:Body>
    </soapenv:Envelope>
    the response
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
    <env:Header/>
    <env:Body>
    <taskListResponse xmlns="http://xmlns.oracle.com/bpel/workflow/taskQueryService">
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-12T15:30:54+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-12T15:30:54+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>baf46727-1a3f-4f88-90ca-3f2a101dbd76</taskId>
    <taskNumber>212891</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-12T15:30:54+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.43*soa_b5148411-0b3b-4a01-a6a1-5c05e59ee763/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.43*soa_b5148411-0b3b-4a01-a6a1-5c05e59ee763/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_b5148411-0b3b-4a01-a6a1-5c05e59ee763</mdsLabel>
    <customAttributes/>
    </task>
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-12T15:21:18+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-12T15:21:18+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>be730766-ceaf-4ff6-ab30-11dbbbc53b6c</taskId>
    <taskNumber>212881</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-12T15:21:18+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.42*soa_4a0f73f0-faf9-4d42-8c9d-3e9bb7ab602a/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.42*soa_4a0f73f0-faf9-4d42-8c9d-3e9bb7ab602a/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_4a0f73f0-faf9-4d42-8c9d-3e9bb7ab602a</mdsLabel>
    <customAttributes/>
    </task>
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-12T11:44:44+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-12T11:44:44+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>5a17b895-6577-4cdf-87f4-30f6c9127681</taskId>
    <taskNumber>212405</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-12T11:44:44+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.37*soa_520d40c0-fa0a-49bc-a5b2-8fd2dcca9651/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.37*soa_520d40c0-fa0a-49bc-a5b2-8fd2dcca9651/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_ff7d9ce2-7bef-433b-9e6d-12461136eff9</mdsLabel>
    <customAttributes/>
    </task>
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-12T11:39:22+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-12T11:39:22+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>fa249c9c-d45b-4bb6-869b-3ae2893147d8</taskId>
    <taskNumber>212383</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-12T11:39:22+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.36*soa_4fb21287-882e-4e9a-9087-4c39f8bd3b29/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.36*soa_4fb21287-882e-4e9a-9087-4c39f8bd3b29/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_ff7d9ce2-7bef-433b-9e6d-12461136eff9</mdsLabel>
    <customAttributes/>
    </task>
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>BPM_NotasGastos</title>
    <ownerRole>BPM_NotasGastos.ProcessOwner</ownerRole>
    <priority>3</priority>
    <processInfo/>
    <systemAttributes>
    <acquiredBy>weblogic</acquiredBy>
    <assignedDate>2011-07-08T14:38:12+02:00</assignedDate>
    <assigneeUsers>
    <id>weblogic</id>
    <type>user</type>
    </assigneeUsers>
    <createdDate>2011-07-08T14:38:12+02:00</createdDate>
    <digitalSignatureRequired>false</digitalSignatureRequired>
    <fromUser>
    <type>user</type>
    </fromUser>
    <numberOfTimesModified>1</numberOfTimesModified>
    <state>STALE</state>
    <substate>ASSIGNED</substate>
    <systemActions>
    <action>VIEW_TASK</action>
    <displayName>VIEW_TASK</displayName>
    </systemActions>
    <taskId>df18152a-6a5a-40ac-a06f-64ad6507f4fb</taskId>
    <taskNumber>211358</taskNumber>
    <updatedBy>
    <id>workflowsystem</id>
    <type>user</type>
    </updatedBy>
    <updatedDate>2011-07-08T14:38:12+02:00</updatedDate>
    <version>1</version>
    <taskDefinitionId>poc/BPM_NotasGastos!1.24*soa_abca4e03-b8e6-414a-8b59-8943ac2fbb0c/AprobacionNotaGasto</taskDefinitionId>
    <workflowPattern>Participant</workflowPattern>
    <participantName>weblogic</participantName>
    <assignees>
    <id>weblogic</id>
    <type>user</type>
    </assignees>
    <isPartialTask>true</isPartialTask>
    </systemAttributes>
    <systemMessageAttributes/>
    <callback/>
    <sca/>
    <applicationContext>OracleBPMProcessRolesApp</applicationContext>
    <taskDefinitionId>poc/BPM_NotasGastos!1.24*soa_abca4e03-b8e6-414a-8b59-8943ac2fbb0c/AprobacionNotaGasto</taskDefinitionId>
    <mdsLabel>soa_abca4e03-b8e6-414a-8b59-8943ac2fbb0c</mdsLabel>
    <customAttributes/>
    </task>
    </taskListResponse>
    </env:Body>
    </env:Envelope>

    Hi, did you find the way to find the URL of the WSDL? I have the same problem.

  • Have Photoshop 7.0.1 - recently quit saving as or saving photos after changes. Just hangs until i kill process with task manager. Have uninstalled and reinstalled. Any suggestions? I don't want to upgrade to CC as I hate subscription services and often ha

    Just hangs until i kill process with task manager. Have uninstalled and reinstalled. Any suggestions? I don't want to upgrade to CC as I hate subscription services and often have internet connection services interuppted.

    Which operating system are you using?
    Resetting the photoshop preferences might cure the problem.
    Press and hold down the Shift+Ctrl+Alt keys down just after starting the launch of photoshop 7
    (Shift-Command-Option on a mac)
    Keep holding the keys down until you get a dialog asking if you want to delete the adobe photoshop settings file
    Press Yes

  • Hi i just ended my service with my service provider and was wondering if i have to do anything to use my iphone 3gs with another carrier. do i need to get it unblocked to be able to use another sim card

    I just ended service with my at&t and was wondering if i have to do anything like have my phone unblocked to use another sim card or use another provider

    I have a 3GS, out of contract with AT&T. I emailed for the unlock, and got an email saying:
    "Request number: (xxxxxx)
    Thank you for contacting AT&T Customer Care about unlocking your iPhone.
    We have reviewed your request and confirmed that you are eligible to have the requested iPhone unlocked.
    Please allow 24 hours upon receipt of this notification to complete the unlock.
    To complete the unlock, simply:
    Open iTunes on your Mac or PC and verify that you have Internet connectivity.
    Ensure a SIM card is inserted into your iPhone.
    Connect your iPhone using the dock connector to USB cable that came with your iPhone.
    Backup and restore your iPhone using iTunes. For information on backup and restore, please visit http://support.apple.com/kb/HT1414.
    After restoring, your iPhone will be unlocked.
    Additional information on unlocking can be found at http://support.apple.com/kb/TS3198
    For questions regarding AT&T's wireless service and iPhone, please visit the Phone/Device Learning Center.
    We thank you for your continued business.
    You may also check the status of your unlock request by clicking the link for AT&T's Device Unlock Status Portal.
    Sincerely,
      AT&T Customer Care Team"
    Now the deal here is, iOS 6 is out now, so in order to complete the instructions and restore it with iTunes, you have to update to iOS 6. I decided to keep 5.1.1, so I did NOT restore the phone. I checked a couple IMEI checker sites, and they all said my IMEI was unlocked, so rather than use iTunes, I just replaced the AT&T SIM with an O2-UK SIM card I had when using my Android phone in England. I was pleased to see T-Mobile show up as my carrier when I turned the iPhone on, and in Settings, it shows O2 as the carrier instead of AT&T, due to the O2 SIM being installed. Then a moment later, I got texts saying what my remaining British £ balance is, since I had leftover money on the SIM from my last trip, and another text said "Welcome to America, have a nice trip!"
    The phone isn't jailbroken or anything like that. It's still on 5.1.1 with the proper, working Google mapping. Never restored via iTunes. Never updated to iOS 6. Any SIM card works. No tricks or hacks. You don't have to restore the phone to complete the unlock.

  • Anyone Tried Using Sharepoint Web Services with BPEL?

    I've tried using SharePoint Web Services with BPEL, I'm able set it to use the sharepoint web service as a partner link in orchestration, but when I try to compile the bpel file, I get a "error: null" on the compiler log for the *.bpel file.
    Anyone have any success with using Sharepoint Web Services with BPEL?

    Hi,
    Please refer the below article and browse code.
    http://code.msdn.microsoft.com/Remote-Authentication-in-b7b6f43c
    Thanks,
    Srikanth

  • Can I begin service with $100.00 card good for one year and what are the usage terms?

    Can I begin prepaid service with a $100.00 card good for one year and if so what are the usage terms?

    Yes; phone is for Verizon PREPAID plans. Sri I did not state that correctly. I see that there are prepaid plans with monthly usage etc. I see some offers on line for a $100.00 card that's good for one year.  Trying to determine if that is available from a Verizon store to begin a new plan. Checked with two different Verizon stores and got two opposite answers and neither was sure of the terms. Simply trying to get a low cost backup. Thank you for responding.

Maybe you are looking for

  • SQL loader load data very slow...

    Hi, On my production server have issue of insert. Regular SQL loder load file, it take more time for insert the data in database. First 2 and 3 hours one file take 8 to 10 seconds after that it take 5 minutes. As per my understanding OS I/O is very s

  • Disc mode

    i have tried several times to get my 80g ipod classic into disc mode and it just won't go. I get the apple logo but when i hold menu+play nothing happens. Am i doing something wrong?

  • Using iTunes songs in Adobe Photoshop Slideshow

    I purchased a song through iTunes that I would like to use in a slide show I've created in Adobe Photoshop. I have to use an mp3, wav or wma audio file for my slide show and the song I want to use is MPEG-4 Audio File (Protected). Is there any way to

  • IPhoto - downsize pictures for emails

    Hello, how can I easily downsize pictures, if I like to send pictures direct from iPhoto (9.1)? Thanks.

  • IPhoto 11 keeps crashing when importing.  I need a fix.  Can anyone help?

    I have an older mac that is running Lion. I had to upgrade my memory to run Lion.  I am now running 4gb of memory.  I have my iPhoto library on an external hard drive.  When I go to import photos whether from a camera, iPad, iPod Touch, it shuts down