Multiple Start Activities

Hello all,
Does anyone succeed in deploying a process with multiple start activities as describe in section 16.4 of the bpel 1.1 specification ? i.e. something like
<sequence>
<flow name="flow-1">
<receive name="receiveInput" partnerLink="client1"
portType="as:MSApt1" createInstance="yes"
operation="op1" variable="input1">
     <correlations>
     <correlation set="c" initiate="yes"/>
     </correlations>
</receive>
<receive createInstance="yes" name="receive-1"
partnerLink="client2" portType="as:MSApt2"
operation="op2" variable="input2">
     <correlations>
     <correlation set="c" initiate="yes"/>
     </correlations>
</receive>
</flow>
I got the following error :
main:
[bpelc] bpelc> validating "C:\eclipse\workspace\MultipleStartActivities\MultipleStartActivities.bpel" ...
[bpelc] BPEL validation failed.
[bpelc] BPEL source validation failed, the errors are:
[bpelc]
[bpelc] [multiple create instance activity]: in line 45 of "C:\eclipse\workspace\MultipleStartActivities\MultipleStartActivities.bpel", Conflicting createInstacne="yes". Instance is already created by another activity.
[bpelc]      Potential fix: Remove createInstance="yes" attribute from this activity.
[bpelc]
[bpelc] [try to initialize an initialized correlation set]: in line 47 of "C:\eclipse\workspace\MultipleStartActivities\MultipleStartActivities.bpel", correlation set "c" is already initialized, cannot initialize it again.
[bpelc]      Potential fix: Change attribute to initiate="no".
[bpelc] .
BUILD FAILED: C:\eclipse\workspace\MultipleStartActivities\build.xml:28: Validation error
Thanks
Nicolas.

Hi Edwin,
I am using Oracle BPEL for one of our solutions. Now, i have a particular usecase in which I require to have multiple entry points for one single BPEL process.
In my requirement the BPEL process can be initiated by two different sources. In the first case, one third party application places a xml file at some location and using the file adapter, we pick the xml file and start the process. After receiving the xml file, we do some verification confirmation and some calculations. In the second case, our web application initiates the web application which does not require verification and calculations.
Can you please give me a clue on how to go about this situation?
Regards,
Varun

Similar Messages

  • Multiple start events in a process

    How does one add more than one start event to a process?
    "6.2.1.2 Using Multiple Start Events in a Process" of the modeling and implementation guide suggests this should be possible. I'd like to be able to create process instances using a none start event followed by a user task defined with the initiator pattern, so users can initiate the process. I also need to support creation of process instances via web service call. I should be able to accomplish this using a none start event followed by a receive task. However, I can't seem to get both in a single process. It only seems to allow a single start event.

    Sorry, I didn't realize that my component palette was being hidden - so I was missing a lot of activity/flow object types.
    Why is there only a small subset of flow objects displayed in the header of the process editor? (the one with the swimlanes)

  • Work Manager 6.2 (CS) - Longtext not set for multiplie Notification Activities

    Hi all,
    I am trying to post multiple activities, each with its own long text from the work manager. The thing is that only the first activity will have the long text. While debugging /SYCLO/IF_CORE_DO_HANDLER~CREATE (/SMERP/CL_CS_NOTIFICATION_DO), I found a curious piece of code, that basically does the following:
    Loop over activities (outer loop)
    Get a fresh sort number
    Loop over long texts (inner loop)if the long text sort number matches the activity sort number (the activity from the outer loop)
    then replace the long text sort number by the fresh sort number and remove the long text from the list of long texts and copy its values to another list
    else remove the long text from the list of long texts and copy its values to another list
    replace the activity sort number (the activity from the outer loop) with the fresh sort number
    What happens with multiple activities is that in the inner loop, all the long texts are removed from the list of long texts (even those that are matching the second, third, ... activity in the activity list). Therefore, only for the first activity, long texts are added. Did anyone else encounter this problem (if this is working for anyone, could you provide me with your BAPI parameters)? Any idea on what SAPWM-911 is about (would it be safe to get rid of that part)?
                 LOOP AT me->tab_notif_activity ASSIGNING <notif_activity>.
                   ADD 1 TO lv_sort_no.
                   LOOP AT lt_notif_longtext INTO ls_notif_longtext WHERE objtype = lc_ltext_notif_activity.
                     lv_index = sy-tabix.
                     IF ls_notif_longtext-objkey+4(4) = <notif_activity>-act_sort_no.
                       ls_notif_longtext-objkey+4(4)  = lv_sort_no.
                       APPEND INITIAL LINE TO me->tab_notif_longtext ASSIGNING <notif_longtext>.
                       MOVE-CORRESPONDING ls_notif_longtext TO <notif_longtext>.
                       DELETE lt_notif_longtext INDEX lv_index.
                       "<--Ins 332_700 SP1 - SAPWM-911 - Start
                     ELSE.
                       "Check for remaining longtext rows not matching with parent table
                       "is considered as update to the existing activity notes
                       APPEND INITIAL LINE TO me->tab_notif_longtext ASSIGNING <notif_longtext>.
                       MOVE-CORRESPONDING ls_notif_longtext TO <notif_longtext>.
                       DELETE lt_notif_longtext INDEX lv_index.
                       "<--Ins 332_700 SP1 - SAPWM-911 - End
                     ENDIF.
                   ENDLOOP.
                   <notif_activity>-act_sort_no = lv_sort_no.
                 ENDLOOP.
    Thanks in advance for any contribution to this problem.
    Regards, Daniel

    Hi Daniel,
    I would suggest you raise an OSS message to get this fixed if you believe its bug.
    With Regards
    Murali

  • Playing Quicktime with Multiple Start End Points

    Hello
    I posted a message a few days which I received help on
    regarding starting and ending a Quicktime movie from various points
    in the movie. Now I have a new problem which I cannot fix at all..
    Here is the problem:
    I have a Quicktime movie on stage and 10 various buttons that
    contain a generic script which allows input of start and end points
    for each button to trigger the movie. Initially just doing this
    with one button is successful.
    However, multiple buttons all with the same generic code make
    the movie freeze up completely. My guess is that they are all
    fighting each other for control. Maybe I need something in the code
    which allows the button that is being used to play the movie to
    keep control.
    Here is the code I use for each button, the movie is on frame
    15.
    property pQT,pStart,pEnd,pFrame, pVolume
    on beginSprite me
    sprite(me.spriteNum).color=rgb (255,255,255)
    cursor 0
    if integer(pQT).ilk=#integer then pQT=integer(pQT)
    end
    on mouseUp me
    sound(3).volume=sprite(15).volume
    sprite(15).volume=pVolume
    sprite(pQT).movieTime=pStart
    sprite(pQT).movieRate=1
    cursor 0
    end
    on mouseEnter me
    sprite(me.spriteNum).color=rgb (173,24,41)
    sprite(me.spriteNum).cursor=280
    end
    on mouseLeave me
    sprite(me.spriteNum).color=rgb(255,255,255)
    sprite(me.spriteNum).cursor=0
    end
    on mouseDown me
    sprite(me.spriteNum).cursor=290
    end
    on enterFrame me
    if sprite(pQT).movieTime>=pEnd then
    sprite(pQT).movieRate=0
    end if
    end
    on getPropertyDescriptionList me
    if not the currentSpriteNum then exit
    vPDList=[:]
    setaProp vPDList, #pQT, [#comment: "Which QT sprite",
    #format: #integer, #default: 0]
    setaProp vPDList, #pStart, [#comment: "Range start",
    #format: #integer, #default: 0]
    setaProp vPDList, #pEnd, [#comment: "Range end", #format:
    #integer, #default: 0]
    setaProp vPDList, #pVolume, [#comment: "Volume", #format:
    #integer, #default: 0]
    return vPDList
    end getPropertyDescriptionList
    Any help is much appreciated. (not a lingo expert)
    Andy

    Many thanks Mike
    Works fantastically.
    I just thought I would post the finished code - well, tweaked
    ever so slightly from Mike's orginal for anybody wanting a nice
    little behaviour for controlling a Quicktime movie.
    (watch out for page breaks etc - should be 68 lines)
    property pQT,pStart,pEnd,pFrame,
    pVolume,pMyControl,pReturnMarker
    on beginSprite me
    sprite(me.spriteNum).color=rgb (255,255,255)
    cursor 0
    if integer(pQT).ilk=#integer then pQT=integer(pQT)
    pMyControl=0
    end
    on mouseUp me
    sound(3).volume=sprite(pQT).volume
    sprite(pQT).volume=pVolume
    sprite(pQT).movieTime=pStart
    sprite(pQT).movieRate=1
    pMyControl=1
    cursor 0
    end
    on mouseEnter me
    sprite(me.spriteNum).color=rgb (173,24,41)
    sprite(me.spriteNum).cursor=280
    end
    on mouseLeave me
    sprite(me.spriteNum).color=rgb(255,255,255)
    sprite(me.spriteNum).cursor=0
    end
    on mouseDown me
    sprite(me.spriteNum).cursor=290
    end
    on enterFrame me
    if pMyControl then
    if sprite(pQT).movieTime>=pEnd then
    sprite(pQT).movieRate=0
    pMyControl=0
    go pReturnMarker
    end if
    end if
    end
    on getPropertyDescriptionList me
    if not the currentSpriteNum then exit
    vPDList=[:]
    setaProp vPDList, #pQT, [#comment:"Which QT sprite",
    #format:#string, #default:0]
    setaProp vPDList, #pStart, [#comment:"Range start",
    #format:#integer, #default:0]
    setaProp vPDList, #pEnd, [#comment:"Range end",
    #format:#integer, #default:0]
    setaProp vPDList, #pVolume, [#comment:"Volume",
    #format:#volume, #default:0]
    setaProp vPDList, #pReturnMarker, [#comment:"Return to
    Marker", #format:#marker, #default:0]
    return vPDList
    end getPropertyDescriptionList

  • Multiple Start up/Shut down times with Tiger?

    Is there a way to schedule my Mac to start up and shut down at multiple times during the week, instead of just the basic options the Energy Saver Schedule gives me?
    I start-up and shut down my computer through the Schedule during the week, but I need to run a virus scan on the Saturday when noone is around, and I really don't want the computer on all day on both Saturday and Sunday.
    There used to be a shareware app called iBeezz that worked great in Panther, but they didn't develop it to work with Tiger... so are there any other options?
    Dual 1.8GHz PowerPC G5   Mac OS X (10.4.5)  

    Hi, Crave —
    Here are results from a quick search of versiontracker. The last utility on the list, Mac Restart X 1.0.1, claims to be Tiger-compatible.
    I haven't tried it. It may help others if you post back to summarize your experience. Scanning the developer's overview, shutdown doesn't seem to be mentioned (Duh?) — so you may have to contact the developer for clarification...
    Regards,
    Dean

  • Avoid multiple start of VM on different servers ?  (data corruption)

    Hello,
    we are using OracleVM without manager.
    Setup: 2 servers connected to one SAN device. The SAN device is connected with 2 FC links, handles by device mapper multipath. The file system /OVS is located on OCFS2 filesystem which is located in SAN. Both nodes have /OVS mounted to make live migration possible.
    When testing this setup, we found that it is possible to start VM1 on both servers at the same time. This IS GOING TO lead to data corruption for sure.
    Is there a way to avoid that is is possible to start the same VM on multiple servers at the same time ? Any hints ?
    Regards,
    Robert

    I was investigating this issue some more and found the very useful DLMFS coming with OCFS2 (see http://oss.oracle.com/projects/ocfs2/src/branches/ocfs2-1.2/dlmfs.txt)
    I played around with it and found the following:
    1) The O_NONBLOCK operating mentioned is not working (open always fails)
    2) Locks are cleared if a machine leaves the cluster (disconnected or failes)
    3) open call waits until a log is cleared
    So I was thinking about the following solution:
    Write a wrapper for "xm" that calls "xm.orig". This wrapper creates a daemon process along with the virtual machine that holds a lock file /dlm/xen/MachineName open as long as the machine is running. When you shutdown the virtual machine, this daemon is ending and the lock is released now the machine can be started on a another machine and this machine is locking again.
    The problem is a crashing machine. If a machine crashes, the lock is not cleared because the deamon is still running.
    Is there a way to get notified of a crashing machine in OracleVM or is there some way to "hook" into the "oncrash" routines of Xen ?

  • Multiple start up with jserv process

    May I know how to start up multiple jserv process.
    If I am able to start up the multiple processes, then how to activate each and everyone of the jserv process to handle multiple user logon to a web server.
    How much memory does a jserv process support?

    Hello,
    I'm running 9iAS on windows 2k boxes. I need to start running more than one JServ process, because we are having resource issues.
    I could not find the startJServ.bat and the stopJServ.bat files that are noted in the 'Oracle HTTP Server powered by Apache Performance Guide', so I copied the startJServ.sh and stopJServ.sh from a linux install and converted the shell scripts to batch files.
    Now, I can get JServ processes to start, but they bomb when a request to a oracle portal page is made. They get ClassNotFound exceptions, even though the classes/jars are in the jserv<n>.properties wrapper.classpath.
    Here is the stack trace:
    [16/03/2001 08:57:29:857 CST] page/oracle.webdb.page.ParallelServlet: init
    [16/03/2001 08:57:29:867 CST] page/Starting a pool of 25 handlers.
    [16/03/2001 08:57:30:328 CST] java.lang.NoClassDefFoundError: HTTPClient/ParseException
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java)
    at org.apache.jserv.JServConnection.run(JServConnection.java)
    at java.lang.Thread.run(Thread.java:479)
    Any help would be appreciated...Joel

  • Multiple Start with clause-Hiercharical Query

    Hi,
    Can we use more than 1 "start with" clause .In one of our requirement there can be a parent id can be null or not null
    START WITH (gpo.orig_po_confirmation_no  IS NULL   OR gpo.orig_po_confirmation_no  IS NOT NULL)
        CONNECT BY PRIOR gpo.po_confirmation_no =gpo.orig_po_confirmation_no;When I executed I got below error
    ORA-01436: CONNECT BY loop in user data
    01436. 00000 -  "CONNECT BY loop in user data"
    *Cause:   
    *Action:Any suggestion to resolve the error
    Regards,
    Achyut

    Achyut K wrote:
    Hi,
    Can we use more than 1 "start with" clause .In one of our requirement there can be a parent id can be null or not nullNo you cant use more than one START WITH clause. But you can specify multiple CONDITION in the START WITH clause.
    When I executed I got below error
    ORA-01436: CONNECT BY loop in user data
    01436. 00000 -  "CONNECT BY loop in user data"
    *Cause:   
    *Action:
    To diagnose this we need to see the data. One quick try would be to using NOCYCLE in your CONNECT BY clause.

  • Multiple Start Transactions

    This may be a long shot, but I'm aware that you can set your start transaction in the first screen (Extras >> Set start transaction) so that when you log on you are automatically in the required screen instead of the SAP Easy Access screen.
    But if there are 2 transactions you always use, is it possible to get SAP to load up one transaction and open up a new session in another transaction as soon as you log on?
    Any feedback would be greatly appreciated.

    Hi Kellis
    We cant have multiple sessions to be triggered during login. I would suggest you to set one of the transation as the 'Start transaction' and add the other one to your Favourites (right click on favouties icon, choose Insert transaction).
    Once you login to the start transaction, press Ctrl+ and a new session will be created. Double clcik on the other tcode in favourites.
    Sorry, couldnt think of any other options with less keystrokes and clicks
    Best Regards
    Sathees Gopalan

  • How do I make multiple start up disks

    I've partitioned my Imac(intel) for lion and leopard but can only start up in leopard. how do I make both partitions start up disks?

    babowa wrote:
    Frankly, I'm stumped because I didn't know that Time Machine backups are bootable?
    The backups aren't, but when you restore them, the result is bootable.
    And, effective with 10.7.2, if you back up to a directly-connected external HD, Time Machine copies the Recovery HD to the Time Machine drive, so you can start up from it if your internal dies.
    Take a look at this site (in particular scroll down to Time Machine):
    Just for future reference, since Apple's dropping web hosting via MobileMe, I've moved my site.
    The new version is at http://pondini.org
    I'll leave the old one "as is" for a few days, then put redirect notices on it until it goes "poof" in June.

  • Timesheet formulas in numbers '09 with multiple Start/Stop columns

    Hi there you amazing people
    I am creating a timesheet which will have the date, start time, stop time but also 3/4 start/stop times for breaks.
    I would like to have formulas that allow me to enter as many or as little info as I need (sometimes there are no breaks and sometimes there will be several) and still give me total hours works in that day.
    Apoliges if my quiery isn't clear or this has been answered before, I have had a good look!

    Hi Lil,
    Numbers '09 will think for you. Start with an empty table with one Header Row and enter the headings for your work day:
    In Cell A2, enter the Start Time as 8 am (not 8am)
    In Cell B2, enter Morning Coffee as 15 m (not 15m)
    In Cell C2, Lunch is 1 h (not 1h)
    In Cell D2, Afternoon Tea is 15 m (not 15m)
    In Cell E2, Stop Time is 5 pm (not 5pm)
    Please note the spaces (for example, 8 am, not 8am) then the cells will automatically format as Date-and-Time or Duration.
    Formula in F2 (and copy down) is
    =E2-A2-B2-C2-D2
    Tip: When you enter a Time, it carries a Date with it. The Date-and-Time format in Numbers is exactly that. A Date and a Time from 1 January 1904 (the starting date that Apple uses as the base date).
    Call back if this does not help.
    Regards,
    Ian

  • Multiple Receive activities

    Hi,
    How to send message to a second receive activity in a BPEL process? Obviously create instance flag is unchecked for this activity and this is not part of a asynch call back operation. I created the partner link with proper portType definitions but without any bindings and service definitions. And the I linked my receive activity to this partner link. When I try to post a message to this partnerLink WSDL I am getting no services defined exception.
    Does this mean I need to define the bindings explicitly for this partnerLink or I am completely off the mark? Any help is greatly appreciated.
    Thanks,
    Rajesh

    You do need bindings and service definitions for each and every receive. But you can reuse the definitions of the first receive. Just define a 2nd operation in your WSDL, like:
    <portType name="process">
    <operation name="initiate">
    . <input message="client:processRequestMessage"/>
    </operation
    <operation name="initiate2">
    . <input message="client:processRequestMessage"/>
    </operation
    You will need to define a correlation set to make it work, though. Otherwise you'll never be able to send a 2nd message to the same process.

  • Multiple kernel panics & black screen on Macbook Pro Retina early 2013

    My Macbook Pro Retina (early 2013, 8GB ram, 250 GB hard drive) has been experiencing multiple kernel panics forcing rapid-fire restarts of the computer multiple times within a very short time frame. This is followed by the screen staying black even if the computer is on (keyboard lit up, can hear volume buttons) but nothing is on the screen. Once the screen goes black, I have to employ some combination of manually shutting it down (by holding down the power button) and then turning it back on (+/- doing an SMC reset) to get the screen working again. I also tried a PRAM reset once, but it didn't seem to have any effect, and I've repaired the disk permissions. 
    This issue has happened multiple times in the past week. It seems to vary as to how long it takes to happen again (could be a few days, could be less than an hour), and it has happened during multiple different activities (surfing the web, using Word, using Mail). I have experienced this both on Mavericks and after updating to Yosemite over the weekend.
    I took it to the Apple Store on Saturday and while the Genius saw that the screen was black when I initially brought it in (even though the computer was on), we couldn't recreate the issue and the diagnostic tests he ran showed nothing. It even started back up fine for him. I thought I was OK, until I had another round of kernel panics + black screen this afternoon. At this point, doing a normal restart of the machine results in a kernel panic before it even makes it off of the loading screen and then a black screen.
    This time, I checked the logs and saw the panic report included below. I don't know enough about this to understand what it means, but hopefully someone else does! Some internet searching has suggested that it might be a problem with the GPU (and the log below says GPU panic). Help, please!
    Mon Nov  3 16:43:08 2014
    *** Panic Report ***
    panic(cpu 6 caller 0xffffff7f868daf63): "GPU Panic: [<None>] 3 0 a0 d9 9 8 0 3 : NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0x104000000 0xffffff8114d8a000 0x0e7150a2, D0, P3/4\n"@/SourceCache/AppleGraphicsControl/AppleGraphicsControl-3.7.21/src/Apple MuxControl/kext/GPUPanic.cpp:127
    Backtrace (CPU 6), Frame : Return Address
    0xffffff8111a12d30 : 0xffffff8003d3a811
    0xffffff8111a12db0 : 0xffffff7f868daf63
    0xffffff8111a12e90 : 0xffffff7f84a1cd28
    0xffffff8111a12f50 : 0xffffff7f84ae71b6
    0xffffff8111a12f90 : 0xffffff7f84ae7226
    0xffffff8111a13000 : 0xffffff7f84d1ed7e
    0xffffff8111a13090 : 0xffffff7f84d3650b
    0xffffff8111a130d0 : 0xffffff7f84b5fa13
    0xffffff8111a13100 : 0xffffff7f84b5f99d
    0xffffff8111a13130 : 0xffffff7f84c6dc9f
    0xffffff8111a13160 : 0xffffff7f84c6f971
    0xffffff8111a13200 : 0xffffff7f84c6ff38
    0xffffff8111a13280 : 0xffffff7f84a31bbf
    0xffffff8111a132d0 : 0xffffff7f84c74157
    0xffffff8111a13430 : 0xffffff7f84c745fa
    0xffffff8111a134b0 : 0xffffff7f84b1ebee
    0xffffff8111a13680 : 0xffffff7f84b1d78f
    0xffffff8111a136c0 : 0xffffff7f84b2d8f8
    0xffffff8111a13720 : 0xffffff7f84b27d63
    0xffffff8111a13740 : 0xffffff7f84ae3f76
    0xffffff8111a13780 : 0xffffff7f84ae3060
    0xffffff8111a137e0 : 0xffffff7f84a20164
    0xffffff8111a13800 : 0xffffff7f84a20b5b
    0xffffff8111a13a20 : 0xffffff7f84a20e48
    0xffffff8111a13ac0 : 0xffffff7f849ce330
    0xffffff8111a13b40 : 0xffffff7f849cdb9e
    0xffffff8111a13ba0 : 0xffffff7f849cf4c6
    0xffffff8111a13be0 : 0xffffff7f849818d0
    0xffffff8111a13c70 : 0xffffff7f849798ac
    0xffffff8111a13cb0 : 0xffffff7f849d0164
    0xffffff8111a13d00 : 0xffffff80042b85b1
    0xffffff8111a13d50 : 0xffffff80042ff0b5
    0xffffff8111a13dc0 : 0xffffff8003dea95e
    0xffffff8111a13e10 : 0xffffff8003d3e91c
    0xffffff8111a13e40 : 0xffffff8003d235a3
    0xffffff8111a13e90 : 0xffffff8003d33e8d
    0xffffff8111a13f10 : 0xffffff8003e0a142
    0xffffff8111a13fb0 : 0xffffff8003e3ac66
          Kernel Extensions in backtrace:
    com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f8496f000->0xffffff7f849a9fff
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f84524000
    com.apple.driver.AppleMuxControl(3.7.21)[32B7E2DE-1F9D-3555-B687-7A76A62B81D2]@ 0xffffff7f868cc000->0xffffff7f868dffff
    dependency: com.apple.driver.AppleGraphicsControl(3.7.21)[62689710-EEA7-307A-AC83-B8F25DA88 A6A]@0xffffff7f868c4000
    dependency: com.apple.iokit.IOACPIFamily(1.4)[70E2B65E-A91A-3522-A1A0-79FD63EABB4C]@0xfffff f7f8526e000
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f84524000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f8496f000
    dependency: com.apple.driver.AppleBacklightExpert(1.1.0)[0183904C-6A16-32C4-9405-EEFD7F820B 02]@0xffffff7f868c7000
    com.apple.nvidia.driver.NVDAResman(10.0)[53CC0E05-7382-336C-8239-AE884D6CA71A]@ 0xffffff7f849cc000->0xffffff7f84c41fff
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f84524000
                dependency: com.apple.iokit.IONDRVSupport(2.4.1)[F4738C55-B507-3627-A9CA-3D29A5230A03]@0xff ffff7f849b6000
    dependency: com.apple.iokit.IOGraphicsFamily(2.4.1)[6D99A3BE-D531-3780-880B-13F2FC894A4A]@0 xffffff7f8496f000
    dependency: com.apple.AppleGraphicsDeviceControl(3.7.21)[4700601D-3FEB-3B86-B2BA-8D71AF84D1 C4]@0xffffff7f849c6000
    com.apple.nvidia.driver.NVDAGK100Hal(10.0)[DC43029D-568A-3B7C-976B-E922C17F5143 ]@0xffffff7f84c4d000->0xffffff7f84dfafff
                dependency: com.apple.nvidia.driver.NVDAResman(10.0.0)[53CC0E05-7382-336C-8239-AE884D6CA71A ]@0xffffff7f849cc000
    dependency: com.apple.iokit.IOPCIFamily(2.9)[766FC23F-452C-3B74-951C-598BB17BCF06]@0xffffff 7f84524000
    BSD process name corresponding to current thread: WindowServer

    The logic board is faulty and will have to be replaced.
    Make a "Genius" appointment at an Apple Store, or go to another authorized service provider. You may have to leave the machine there for several days.
    Back up all data on the internal drive(s) before you hand over your computer to anyone. There are ways to back up a computer that isn't fully functional—ask if you need guidance.
    If privacy is a concern, erase the data partition(s) with the option to write zeros* (do this only if you have at least two complete, independent backups, and you know how to restore to an empty drive from any of them.) Don’t erase the recovery partition, if present.
    Keeping your confidential data secure during hardware repair
    Apple also recommends that you deauthorize a device in the iTunes Store before having it serviced.
    *An SSD doesn't need to be zeroed.

  • Multiple operation using the same port does not work

    I am trying to have multiple operations on both ports
    here is my wsdl snapshot
         <portType name="CommonAlerter">
              <operation name="initiate">
                   <input message="client:CommonAlerterRequestInitMessage"/>
              </operation>
              <operation name="StartWait">
                   <input message="client:CommonAlerterRequestInitMessage2"/>
              </operation>
              <operation name="StopWait">
                   <input message="client:CommonAlerterRequestInitMessage3"/>
              </operation>
         </portType>
         <portType name="CommonAlerterCallback">
              <operation name="onResult">
                   <input message="client:CommonAlerterResponseMessage"/>
              </operation>
         </portType>
    I just added two new methods "StartWait" and "StopWait" to the default async. template that got generated when I created a new BPEL Project "CommonAlerter"
    Now I call this BPEL process from another BPEL project
    The three methods I call "initiate", "StartWait" and finally "StopWait" are at different stages in my calling BPEL processes. Although "initiate" gets called first.
    When I debug the calling process instance I get an error on the call to "StopWait" which gets called after "StartWait".
    Here is the error message
    Exception not handled by the Collaxa Cube system.
    An unhandled exception has been thrown in the Collaxa Cube system. The exception reported is: "ORABPEL-08010
    Failed get operation definition.
    Failed to get the WSDL operation definition of "StopWait" in portType "{http://xmlns.oracle.com/CommonAlerter}CommonAlerter".
    Please verify that operation "StopWait" is defined in portType "{http://xmlns.oracle.com/CommonAlerter}CommonAlerter".
    Now I do have this method in my WSDL
    Can some one help.
    My Message part XSD is
         <element name="CommonAlerterProcessInitRequest">
              <complexType>
                   <sequence>
                        <element name="initializeparam" type="string"/>
                   </sequence>
              </complexType>
         </element>
         <element name="CommonAlerterProcessResponse">
              <complexType>
                   <sequence>
                        <element name="result" type="string"/>
                   </sequence>
              </complexType>
         </element>
         <element name="CommonAlerterProcessRequest2">
              <complexType>
                   <sequence>
                        <element name="waittime" type="duration"/>
                   </sequence>
              </complexType>
         </element>
         <element name="CommonAlerterProcessRequest3">
              <complexType>
                   <sequence>
                        <element name="stopargument1" type="string"/>
    <element name="stopargument2" type="string"/>
                   </sequence>
              </complexType>
         </element>

    Here are the steps for multi operation synchronous BPEL process :
    1.     Create a new BPEL process and delete request and response activities.
    2.     Now add the porttype/operation in the BPEL process wsdl.
    3.     Start the Process with a Pick activity and click on Create Instance checkbox. Remove the onAlarm branch as we do not need this. In the onMessage branch specify the name of the operation.
    4. Now add onMessage branches to match the number of operations. The flow for each onMessage branch is different. Just make sure that you create a reply activity at the end with the correct operation chosen. So you might end up having multiple return activities.
    Sometimes, a wsdl with multiple operations might not work as expected if the process version is 1.0. So try changing the process version in case you are not getting the expected results.
    Hitesh

  • To complete multiple tasks in a single window without closing individual

    Hi Folks,
    How much it is possible to complete multiple BPM activities in a single window?
    Suppose i have a BPM process which contain 2 swimlanes and 4 steps.
    First 2 and 4th step is assigned to swimlane A and step3 is assigned to Swimlane B.
    Two users are involved in process and users are assigned at swimlane level.
    I want User A which is assigned to Swimlane A to complete first 2 steps in a single attempt without closing windows each time.
    As of now once a particular activity is over BPM prompts user to close window and then again select your task from UWL inbox and proceed. Is there any way to avoid that?
    Thanks in anticipation!
    Mandeep Virk

    It is not a bug, but a new feature.<br />
    Some menu entries in the main menu bar are hidden if you use the mouse and only appear if you use the keyboard to open the menu (Bug 626825).
    You can see the difference if you use Alt+F to open the File menu or other menus like the Edit menu (Alt+E) and Bookmarks menu (Alt+B) and compare that to what you see if you use the mouse to open the menu after you have made the menu bar visible by tapping Alt or by pressing F10.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=626825 bug 626825] - Hide redundant menu commands unless the user invokes the menu using the keyboard (make use of the openedWithKey attribute)
    ''(please do not comment in bug reports; you can vote instead)''
    See also:
    * [[/questions/799856#answer-155765]]

Maybe you are looking for

  • IPhone 5 freezes even being setup as new

    Guys, I have a verizon iphone 5 with 7.0.4 installed.  Just this week my phone becomes unresponsive.  Nothing will launch.  To get past this, you can lock, then unlock, and use the phone as usual.  Last night I restored from a backup and it does the

  • Timescale issue in MS Project 2010

    I still get the timescale issue where the different scales show different out of sync displays. For example when you show half years on the top tier then quarters on the 2nd tier and months on the 3rd. The half year scale only show H2 repeated across

  • Tabular Modeling. What is the best practice for importing data into VS to limit the records in the designer?

    Should I wrap the queries in a procedure with a @StartDate and @EndDate and create a test partition to pass a small date range?  Or can i use the Table properties screen to put the command there and will it run and not be affected or affect the parti

  • Curve not starting up

    I am asking for my friend who is not here so cant see his phone. his curve will not get pass the white line loading screen when you start it up after taking the battery out. It keeps starting again. He does not know what OS it was but i think it was

  • Automatically assign a contract to sc

    Hi Experts We are working in Classical scenario. While creating a sc, when we click on the source of supply, we get a list 3 contracts. All the contracts are proposed and none of them is automatically assigned. Our requirement is that one of the thes