Using ncAction to Start & Stop CAN objects

Hello,
I have to start and stop CAN Objects and I have unexpected results : if
I set NC_ATTR_START_ON_OPEN to NC_TRUE in the interface configuration,
everything works properly. Then if I set NC_ATTR_START_ON_OPEN to
NC_FALSE, ncAction function does not work properly.
I'm using NI-CAN v2.3.
Here is a sample of my code.
Any suggestion about that problem ?
Attachments:
CAN_ncAction.c ‏5 KB

Hi JCX,
I can reproduce your Problem. It seems that there is something wrong with the handles. We work to get it fixed, but it can take a little while.
For the moment the workaround is to start the second Object (ncAction) before you try to Stop it. The new Start will fix  a kind of a handle problem, so you should be able to Stop the Object then.
It should look like this then:
 // Start the network interface and CAN objects
  NiCANErrChkMsgPopup(ncAction (PortHandle, NC_OP_START, 0));  
  // Stop the Second Frame
  NiCANErrChkMsgPopup(ncAction (HdleSTD301, NC_OP_STOP, 0)); 
// Start the  CAN object
  NiCANErrChkMsgPopup(ncAction (HdleSTD1495, NC_OP_START, 0));  
  // Stop the First Frame
  NiCANErrChkMsgPopup(ncAction (HdleSTD1495, NC_OP_STOP, 0));
because the Stop cleanes the message queues, you have to write a new message to the write queue before any restart.
hope that helps
DirkW

Similar Messages

  • Using opmn to start/stop hub repo and adapters

    Also posted as a thread on the OracleAS General forum, I'm hoping the duplication will cover both areas of expertise. Apologies if I offend.
    "Configuring custom process with OracleAS 10g Release 2 (10.1.2) "
    A Metalink note kindly informed me that I could use OPMN to start and stop Interconnect hub and adapter processes. The hyperlink sent me to the OPMN documentation and that's where the fun started!
    So far I have only tried to add the repository as an ias-component and this is how the section of the opmn.xml file looks.
    <ias-component id="HUBDEV3" status="enabled" id-matching="true">
    <process-type id="HUBDEV3-repository" module-id="CUSTOM">
    <environment>
    <variable id="CLASSPATH" value="/du01/OAI/oracleas1/integration/interconnect/lib/oai.jar"/>
    <variable id="CLASSPATH" value="/du01/OAI/oracleas1/jdk/jre/lib/i18n.jar" append="true"/>
    <variable id="CLASSPATH" value="/du01/OAI/oracleas1/jdbc/lib/classes12.jar" append="true"/>
    <variable id="CLASSPATH" value="/du01/OAI/oracleas1/jdbc/lib/nls_charset12.jar" append="true"/>
    <variable id="CLASSPATH" value="/du01/OAI/oracleas1/jlib/oraclepki.jar" append="true"/>
    <variable id="CLASSPATH" value="/du01/OAI/oracleas1/jlib/ojpse.jar" append="true"/>
    <variable id="PATH" value="/du01/OAI/oracleas1/jdk/jre/bin" append="true"/>
    <variable id="LD_LIBRARY_PATH" value="/du01/OAI/oracleas1/lib32" append="true"/>
    </environment>
    <process-set id="repo" numprocs="1">
    <module-data>
    <category id="start-parameters">
    <data id="java-parameters" value="-server -Drepo=InterConnectRepository -DORBdisableLocator=true -mx512m -ms8m oracle.aob.repository.Repomain"/>
    <data id="jar-file" value="/du01/OAI/oracleas1/integration/interconnect/lib/oai.jar"/>
    </category>
    <category id="stop-parameters">
    <data id="java-parameters" value="-server -Drepo=InterConnectRepository -DORBdisableLocator=true -mx512m -ms8m oracle.aob.repository.Repomain -shutdown"/>
    <data id="jar-file" value="/du01/OAI/oracleas1/integration/interconnect/lib/oai.jar"/>
    </category>
    </module-data>
    <start timeout="600"/>
    <stop timeout="120"/>
    </process-set>
    </process-type>
    </ias-component>
    This parses okay and when I call opmnctl status I get the following:
    $ opmnctl status
    Processes in Instance: hubASDEV3.xxxxxxxxxx
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    LogLoader | logloaderd | N/A | Down
    DSA | DSA | N/A | Down
    HTTP_Server | HTTP_Server | 27533 | Alive
    dcm-daemon | dcm-daemon | 217 | Alive
    OC4J | home | 27534 | Alive
    OC4J | jacada | 27535 | Alive
    HUBDEV3 | HUBDEV3-repository | N/A | Down
    I tried opmnctl startproc ias-component=HUBDEV3 & opmnctl startproc process-type=HUBDEV3-repository but both retun the following message:
    opmn id=crm-drtest:6200
    no enabled components for this request
    Can anyone advice on where and why I'm going wrong?
    Sometimes you wish you'd never seen the hint in the first place!!

    Well, I now have a working solution.
    The section from the opmn.xml file now reads (the major changes in bold):
    <ias-component id="HUBDEV3" status="enabled" id-matching="true">
    <process-type id="HUBDEV3-repo" module-id="CUSTOM" working-dir="/du01/OAI/oracleas1/integration/interconnect/repository">
    <environment>
    <variable id="JAVA_HOME" value=""/>
    <variable id="THREADS_FLAG" value="native"/>
    <variable id="PATH" value="/du01/OAI/oracleas1/jdk/jre/bin" append="true"/>
    <variable id="LD_LIBRARY_PATH" value="/du01/OAI/oracleas1/lib32" append="true"/>
    </environment>
    <process-set id="repo" numprocs="1">
    <module-data>
    <category id="start-parameters">
    <data id="start-executable" value="/du01/OAI/oracleas1/jdk/jre/bin/java"/>
    <data id="start-args" value="-server -Drepo=InterConnectRepository -DORBdisableLocator=true -mx512m -ms8m -classpath /du01/OAI/oracleas1/integration/interconnect/lib/oai.jar:/du01/OAI/oracleas1/jdk/jre/lib/i18n.jar:/du01/OAI/oracleas1/jdbc/lib/classes12.jar:/du01/OAI/oracleas1/jdbc/lib/nls_charset12.jar:/du01/OAI/oracleas1/jlib/oraclepki.jar:/du01/OAI/oracleas1/jlib/ojpse.jar oracle.aob.repository.Repomain"/>
    </category>
    <category id="stop-parameters">
    <data id="stop-executable" value="/du01/OAI/oracleas1/jdk/jre/bin/java"/>
    <data id="stop-args" value="-classpath /du01/OAI/oracleas1/integration/interconnect/lib/oai.jar:/du01/OAI/oracleas1/jdk/jre/lib/i18n.jar:/du01/OAI/oracleas1/jdbc/lib/classes12.jar:/du01/OAI/oracleas1/jdbc/lib/nls_charset12.jar:/du01/OAI/oracleas1/jlib/oraclepki.jar:/du01/OAI/oracleas1/jlib/ojpse.jar oracle.aob.repository.Repomain -shutdown"/>
    </category>
    </module-data>
    <start timeout="600"/>
    <stop timeout="120"/>
    </process-set>
    </process-type>
    <process-type id="HUBDEV3-adapters" module-id="CUSTOM" working-dir="/du01/OAI/oracleas1/integration/interconnect/adapters/CRMAPPS">
    <environment>
    <variable id="JAVA_HOME" value=""/>
    <variable id="THREADS_FLAG" value="native"/>
    <variable id="PATH" value="/du01/OAI/oracleas1/jdk/jre/bin" append="true"/>
    <variable id="LD_LIBRARY_PATH" value="/du01/OAI/oracleas1/lib32" append="true"/>
    </environment>
    <process-set id="crmapps" numprocs="1">
    <environment>
    <variable id="LANG" value="en_US"/>
    </environment>
    <module-data>
    <category id="start-parameters">
    <data id="start-executable" value="/du01/OAI/oracleas1/jdk/jre/bin/java"/>
    <data id="start-args" value="-server -Dadapter=CRMAPPS -DORBdisableLocator=true -ms8m -mx512m -classpath :/du01/OAI/oracleas1/integration/interconnect/lib/oai.jar:/du01/OAI/oracleas1/jdk/jre/lib/i18n.jar:/du01/OAI/oracleas1/jdbc/lib/classes12.jar:/du01/OAI/oracleas1/jdbc/lib/nls_charset12.jar:/du01/OAI/oracleas1/rdbms/jlib/aqapi.jar:/du01/OAI/oracleas1/rdbms/jlib/jmscommon.jar:/du01/OAI/oracleas1/lib/xmlparserv2.jar:/du01/OAI/oracleas1/jlib/oraclepki.jar:/du01/OAI/oracleas1/jlib/ojpse.jar:/du01/OAI/oracleas1/jdk/jre/lib/ext/mail.jar:/du01/OAI/oracleas1/jdk/jre/lib/ext/activation.jar:/du01/OAI/oracleas1/integration/interconnect/lib/UserDefinedTransforms.jar: oracle.oai.agent.service.AgentService"/>
    </category>
    <category id="stop-parameters">
    <data id="stop-executable" value="/du01/OAI/oracleas1/jdk/jre/bin/java"/>
    <data id="stop-args" value="-mx64m -classpath /du01/OAI/oracleas1/integration/interconnect/lib/oai.jar oracle.oai.agent.proxy.ShutdownAgent persistence/Agent.ior"/>
    </category>
    </module-data>
    <start timeout="600"/>
    <stop timeout="120"/>
    </process-set>
    </process-type>
    </ias-component>
    Once I added the working-dir attribute to the process-type tag, things began to fall into place. working-dir is set to the directory location of the repository start script and I repeated the same for the crmapps adapter. My biggest clue came when I added the crmapps adapter to the opmn.xml and when I tried to start it, the log file indicated that it couldn't find the adapter.ini file. The rest came naturally after that breakthrough.
    It needs a bit of rejigging but so far, results are good.
    Message was edited by:
    Devious Scully

  • Using IPMI to Start,Stop Oracle VM server via OVMM fails

    I have tried to manually start and stop an OVM server by using the ipmitool cmd from the environment of OVMM and it worked fine
    To start:
    ipmitool -U username -I lanplus -H xxx.xxx.xxx.xxx power off
    And to stop:
    ipmitool -U username -I lanplus -H xxx.xxx.xxx.xxx power on
    so, I thought that the IPMI method works! However when I tried via the OVMM GUI environment, I got the following error. Actually the server stopped, most probably because of the acpi, but with an error, and after that It couldn't start again.
    Caused by: com.oracle.ovm.mgr.api.exception.IllegalOperationException: OVMAPI_4004E Server Failed Command: dispatch https://?uname?:[email protected]:8899/api/3 remote_power_off xxx xxx xxx xxx, Status: org.apache.xmlrpc.XmlRpcException: exceptions.RuntimeError:Failed to run: ipmitool -I lan/lanplus -H 192.168.1.5 ['power', 'off'] [Fri Jan 03 15:06:08 EET 2014
    The server is a FUJITSU RX200 S5 and  I am not sure if it is certified for OVM, but that shouldn't matter for the starting and stooping via the IPMI.  Anyway has anyone else experienced similar problems? Is there a way to alter the ipmitool cmd options that OVMM uses?
    Thanks,
    Nikos

    I have tried to manually start and stop an OVM server by using the ipmitool cmd from the environment of OVMM and it worked fine
    To start:
    ipmitool -U username -I lanplus -H xxx.xxx.xxx.xxx power off
    And to stop:
    ipmitool -U username -I lanplus -H xxx.xxx.xxx.xxx power on
    so, I thought that the IPMI method works! However when I tried via the OVMM GUI environment, I got the following error. Actually the server stopped, most probably because of the acpi, but with an error, and after that It couldn't start again.
    Caused by: com.oracle.ovm.mgr.api.exception.IllegalOperationException: OVMAPI_4004E Server Failed Command: dispatch https://?uname?:[email protected]:8899/api/3 remote_power_off xxx xxx xxx xxx, Status: org.apache.xmlrpc.XmlRpcException: exceptions.RuntimeError:Failed to run: ipmitool -I lan/lanplus -H 192.168.1.5 ['power', 'off'] [Fri Jan 03 15:06:08 EET 2014
    The server is a FUJITSU RX200 S5 and  I am not sure if it is certified for OVM, but that shouldn't matter for the starting and stooping via the IPMI.  Anyway has anyone else experienced similar problems? Is there a way to alter the ipmitool cmd options that OVMM uses?
    Thanks,
    Nikos

  • Using non-administrator user to start/stop services

    We have Crystal Report Server (BOE XI) running on Windows platform.
    Our customer's policy dictates that operator ID are to be use to manage starting/stopping of Crytal Report Server. The operator ID has no administrator rights and it has no access to the Microsoft Management Console.
    Would it be possible to use non-administrator ID to start/stop Crystal Report Server services? Appreciate if anyone could share on the configuration.
    Thank you.

    salafrance wrote:A simple way would be to write a small C program to run systemctl setuid root.
    So perhaps like this?
    #include <stdlib.h>
    #include <unistd.h>
    int main(void)
    execl("/usr/bin/systemctl", "systemctl", "start", "calibre", NULL);
    return(EXIT_SUCCESS);
    compiled it, then "chown root:root test", "chmod u+s test" and it worked.
    But is this safe? I have absolutely no knowledge about potential security issues...
    I also have thought about periodically restarting calibre, but on the Raspberry Pi, with it's slow ARM, the start takes ages and the processor is completely busy with that task for some minutes.
    And that's the reason why I also want to avoid starting an entire second systemd session... Or is this not that resource intensive?

  • DV Start/Stop issue with DVC Pro 50

    Hey guys/ladies... I'm editing with Final Cut studio 2 (FCP 5) and i want to use the "DV Start/Stop Detect" feature. I'm capturing video with the DV50 NTSC 48KHz codec, however, when I try to use the DV Start/Stop Detect function, it gives me an error that reads "The clip you have selected does not reference a movie that can be analyzed". I've brought this video in via FireWire, and I see in the manual that it should work with DV, DVCPro, DVCPro 50, and DVCPro HD... The deck i'm using is the Panasonic AJ-SD93P (DVCPro 50), and the camera for aquisition is Panasonic AJ-SDX900P (DVCPro 50). What am I missing?
    G5   Mac OS X (10.4.9)   2x 3GHz Dual-Core Intel Xeon

    Ah! the operative word here is "may"... it's bad information I believe. The camera has to have a time of day code function recorded in the signal or it won't work... and only the consumer/prosumer level cameras have this feature. If you can't superimpose the time of day and date over the picture in the recording mode (like consumer cameras do) this isn't going to work.
    FCP reads this code and when it detects a break in time (every time you pause would be when this happens) it can place the markers. But if the feature isn't on the camera, FCP can't read it. I've never read nor seen this work on anything but DV 25 recordings... and then only if the camera has the time of day capability.
    Jerry

  • Command to Start/Stop "Windows File Sharing" on OsX Tiger Client

    Dear Mac Gurus:
    How to use command to start/stop “Windows File Sharing” on OSX Tiger client?
    Thanks!
    Max

    Hi Max,
    Windows file sharing requires two daemons, nmbd and smbd. They can be started/stopped as follows:
    To start (type the following all in a single line):
    sudo launchctl load -w /System/Library/LaunchDaemons/nmbd.plist /System/Library/LaunchDaemons/smbd.plist
    To stop:
    sudo launchctl unload -w /System/Library/LaunchDaemons/nmbd.plist /System/Library/LaunchDaemons/smbd.plist
    The option "-w" indicates that the default setting (whether start them at boot time or not) is also modified (the same effect as you turn them on/off via System Preferences -> Sharing). This means, if you start them and shutdown your Mac without stopping them, then they will be automatically restarted next time you reboot the Mac.
    If you use "load -F" instead of "laod -w", then they are started but the default setting is not modified (if it is off then remains off).
    If you use "unload" instead of "unload -w", then they are stopped the default setting is not modified (if it is on then remains on and will be started at next reboot).
    If you feel the commands are too long to type, then you can devide them into two commands, for example:
    sudo launchctl load -w /System/Library/LaunchDaemons/nmbd.plist
    sudo launchctl load -w /System/Library/LaunchDaemons/smbd.plist
    See launchctl man page for more detail.
    HTH
    PowerMacG4, PowerBookG4, iMac(C2D)   Mac OS X (10.4.9)  

  • API to Start / Stop Applications or to perform NWA like operations

    Hello,
    is there an API available that enables me to start and stop deployed ears programmatically?
    Or more generally asked, is there a way to perform the same actions that are possible with the NWA, e.g. modify web service ports, deploy applications and so on.
    Thanks in advance.
    ciao,
    Elmar

    Yes there is. I am trying to use it right now.
    It is the DeplyService interface (com.sap.engine.services.deploy.DeployService) which is contained in the deploy.sda.
    You can use it to start/stop applications, remove applications, deploy applications, etc.

  • 24pA - Captured timecode and DV Start/Stop

    Hello - I've got what I hope will be an easy one - though I haven't found the answers lurking around here. I'm capturing footage shot on my DVX-100A in 24p Advanced mode. I'm capturing it from my DSR-11 deck using the Advanced Pulldown Removal in FCP 5.0.3 on my Dual 1G G4 tower running OS 10.4.3. My tapes should all be Non-Dropframe I believe.
    I'm having an issue with DV Start/Stop Detect. It's putting markers where there is no start/stop between clips, and NOT finding any of the start/stop locations on the tape at all. This led me to examine my timecode more closely. I found that clips have timecode that increments like this (in the frames category):
    01, 02, 04, 05, 06, 07, 09, 10, 11, 12, 14, 15, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 29, 00
    It plays fine in sequences set to 23.98, and even displays fine on an NTSC television I've hooked up to my DSR-11. This from the clip itself in the viewer, or from the canvas in the sequence.
    Should my timecode be incrementing that way so that it can re-reference the 29.97 timecode on my original tapes, or do I have a problem? Does anybody know why my Start/Stop Detect feature won't work? Incidentally, it works just fine for 24p normal footage captured at 29.97.
    Thanks for your help.
    Zac

    Zebulun -
    I did what you suggested. I was able to capture a few clips just fine at 29.97. I also was able to use the dv start/stop detect feature with success.
    However, using the "remove advanced pulldown" from the tools menu yielded the same odd results. It appeared to work just fine, and the info window for the clip says that the frame rate is 23.98 (with lower field dominance), but my time code still reads as it did from the above posting. Up to 29 frames, skipping frames to make it count only 24 times.
    It still seems to play fine. Any thoughts on why my timecode is doing this?

  • Accidently moved dv start/stop marker

    hello people...so I have a clip in the editor which I used the dv start/stop tool on. I want to go through the clip and use the media manager to take out any unwanted footage. here's the issue. the clip shows all the red markings for when I stopped recording and started. If I accidently moved any of those...is that a problem as far as timecode and capturing later? thanks!

    I have a sequence with footage from 3 different clips in it. I decided not to use one of the clips....so I thought when I used the media manager, it would erase the one clip I am not using in the sequence....but for some reason, the manager shows me that after I selected the timeline....the original file is the exact same size as the modified.....why is this?

  • I there, my question is quite simple, I would like to know if the "apple remote control" can be used with a mac mini and , if so, it can be used to control also the "logic pro" functions (e.g. record, start, stop etc). Thks a lot, Danilo

    I there, my question is quite simple, I would like to know if the "apple remote control" can be used with a mac mini and , if so, it can be used to control also the "logic pro" functions (e.g. record, start, stop etc). Thks a lot, Danilo

    Good work, thanks for the report.

  • Can not  start/stop fullfilment server after fresh install

    Can not start/stop fullfilment server after fresh install
    Product: e-business suite (11.5.9)
    Platform: Win XP 5.1 (SP2)
    We have performed a new installation of ebusiness suite in our windows platform.
    Installtion went with out any problem.
    But we can not start/stop the fullfilment server. While trying to start/stop the server we are getting follwing error message:
    c:\oracle11i\prodcomn\admin\scripts\PROD_03274019ih\jtffmctl.cmd start
    script returned:
    C:\oracle11i\prodcomn\admin\scripts\PROD_03274019ih>echo off
    You are running jtffmctl.cmd
    Mon 13/09/2004
    01:46 PM
    "Starting Fulfillment Server for "PROD" on port "9300" ...\n"
    "Error returned while running OUI"
    ERRORCODE = 1 ERRORCODE_END
    .end std out.
    Class not found: oracle.apps.jtf.fm.engine.processor.Processor
    Please let us know how to fix this issue.
    Regards, Kunal

    edit the jtffmctl.cmd and make sure that it point to the correct java path, alse try to use java 1.4.1

  • Managed servers are started/stopped from admin console using NodeManager

    Hi,
    I have weblogic cluster and it has 4 managed servers on two different machines with each machine having 2 managed servers.
    I have node manager setup on the two machines. I use admin console to start/stop managed servers.
    Now there is a requirement to add TIBCO lib and bin path to weblogic managed server path. I have added the entries in LD_LIBARY_PATH but on starting the server using admin console the TIBCO lib/bin paths are not appended to weblogic server path.
    I noticed that in nodemanager.properties we have set StartScriptEnabled=false and so it doesn't use startWebLogic.sh,which internally use other configuration files.
    I'm wondering as how to add these entries in WebLogic server path. Also, how the nodemanager is able to start the managed server without using startWebLogic.sh script.
    In general, what happens when I click the start button in Admin console to start the managed servers which calls NodeManager internally.
    Your inputs are highly appreciated.
    Thanks in advance.
    BR,
    Ajmal

    Hi Ajmal,
    For your issue there are two solution's as shown below:
    Solution-1
    You can add the TIBCO lib with the complete path where the TIBCO lib file is kept from console in Class Path
    Console Path:
    Servers > Configuration > Server Start
    However this has to be done with all the managed serves.
    Solution-2
    If you don't want the burden to add the TIBCO lib files on every server from console then you can add the same lib files in the classpath of startWebLogic.sh and in nodemanager.properties we have set StartScriptEnabled=true. This will make sure that all the settings would be taken from the startWebLogic.sh.
    This way whenever you start any of you managed servers from console it would pick up that lib files.
    In both the solution you can check the managed servers *.out* files that the lib files would be present in there classpath.
    Hope this would help you.
    Regards,
    Ravish Mody

  • Cannot start application deployed using Weblogic console after stop

    Hello all,
    I have deployed an ear file using Weblogic console. If the app. is running, I can press stop and get the 404 error...after that I press start, and get a 503 error. Right after the app is deployed, and started, it always comes up fine. But when the application is running, I must click stop, start, stop, start to get the app to start.
    To start the app. I select, start and then "servicing all requests". To stop the app, I select stop and then "Force stop now". I have implemented a subclass of ServletContextListener to handle the start and stop. These methods do get called.
    The 503 did not cause any errors to be found in the weblogic.log, stdout.log or access.log.
    Does anyone have an idea how to start the app after it is stopped the first time?
    Thanks in advance.
    -PD
    Edited by pauladecker at 10/01/2007 1:47 PM

    Hi,
    As you see this error.
    [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: oracle.webcenter.framework, Specification-Version: 11.1.1, exact-match: false], [Extension-Name: oracle.sdp.client, exact-match: false].
    there is some miss match in library reference.
    Please check with your weblogic-application.xml file.
    Regards,
    Kal

  • Using CAN-Objects

    Hi, I have started  to learn LabVIEW and NI-CAN. Im using version 8.2.
    I
    have modified an example; now I have two transmit CAN-Objects and one receive CAN-Object.
    I use the following configuration:
    ncConfigCANNet->ncConfigCANObj
    -> ncOpen -> ncWriteObj -> ncClose...    I get the Error (Hex 0x8ff6211d) behind the second ncOpen, which states that there is no Network-Interface-Object- or CAN-Object -Configuration and I already closed the object, which i wanted to open. But I doesn't.
    can someone please tell me what am I doing wrong?
    thanks a lot
    Attachments:
    test1.vi ‏37 KB

    Hi,
    The problem is the close behind the first object. It closes the Network Interface as well because no other object is open, thus there is no port configuration for the next two objects.
    You have three options:  1. Close the first object with the next two objects together. See your modified VI.
    2. Open the Network Interface handle and close it in the end.
    3. Configure and open all objects together after the Port configuration.
    Hope that helps.
    DirkW
    Attachments:
    test_new.vi ‏40 KB

  • How can I create Droplets using Actions with several Stops?

    My Droplets (using Actions but with several Stops) work very nicely when using a single image source. However when using multiple images thing start to go crazy.
    At the first stop on the first image a pop-up emerges asking me to continue to the next image or stop. If I select stop I can continue with the Action for this first image and complete the Action on that first photo.
    If I select continue it halts the action on that photo at the first stop then opens the 2nd image and repeats the action to the first stop on the next photo then the pop-up appears again and the cycle repeats.
    How can I create Droplets using Actions with several Stops?

    I don't believe this is possible when starting from Java. I think you need to start with a WSDL to get this to work. I am curious as to why having multiple WSDLs is an issue, would you care to eloborate.
    Thanks

Maybe you are looking for

  • E72: How to install other languages?

    I want to install portuguese (br) language, Is it possible? How to install? I have a little problem in input language cause the english input don´t have accents (if have I don´t find )

  • How do I create a Snapshot without testing query?

    I'm working in an environment where the connection to the database server is done through a VPN that is sometimes broken and I have to wait for some time until it is restored. Other times, the database server is just down and in maintenance. In the m

  • Foreign key Mapping based on Data - in SQL Developer Data modeler

    Team Do SQL Developer Data modeler supports Foreign Key mapping based on the Data in the Schema rather defined at the DDL ? For e.g if we implement a Objects Relation ship mapping in Data base, we don't define Foreign keys at table creation. Toad doe

  • Please help me out tell me the differnce

    I have two statements like UPDATE WCOWNER.WC_EXT SET INVCE_STATUS='Error-UPDF' WHERE EXT_CD IN (SELECT SOURCE_SYSTEM_REFERENCE_ID FROM FFTD3_BILL_INTER_HEADER_GENER) above query is working in sql editor this fine and problem is with simple procedure

  • Can't drag and drop individual contact into group?

    I upgraded from SL to Lion. In the address books, I still have the individual contacts as well as groups. However, when I add new individual contacts and then drag them into a pre-existing group, it doesn't work. In fact, I can't figure out how to ad