Pods of the poll?

Introduction to MAX of Nigel ( http://tv.adobe.com/#vi+f15384v1006 @ 26: 20), he showed slides showing the poll pod. I saw several other references to these in the previous marketing literature. Based on this I have boldly offered to code an example survey for my group, although now it looks like I have to build it up from lower-level components. Surveys, once you get into them, are non-trivial, and it's look like a project instead of hours weeks. I'm something obvious missing here?

See you soon

Will be

Ah, that guy from Nigel, cannot trust him. That said, you offered with Audacity encode an example thought he had already become a made for you? : p

As if by chance, there is an example in the folder sdk/examples/SharedModel which generates an application simple survey. It should be enough to get you well on your way - let us know if we can help you build to meet your use case.

see you soon
Nigel

Tags: Adobe LiveCycle

Similar Questions

  • Dashboard of the LabVIEW data recover indicators of the poll

    Hello

    I have attached my entire project, including the error messages that I receive. I have my labview VI to put in place to have 3 different screws. My entries, my global entries and my "side". I created my web server and all the controls and indicators that I linked. However, when I try and run the dashboard of data project, all my indicators have error signals indicating that he "could not connect to the server. I have no idea what I'm doing wrong. Any ideas?

    The reason why this does not work, it's that your web service code is not quite structured reason. When you call a web method in LabVIEW it does is run the VI related to this method. In your case you have mapped to the URL http://host:8080/FINALCOAST/COAST.vi SIDE, and then you have a poller to web service linked to this URL. When you run your dashboard the poller accesses this URL, which causes the web server of LabVIEW run COAST.vi. If you look at COAST.vi, however, you will notice that what he does is run a loop that runs until the stop button is pressed. Is not supposed for a web method. He has no one to press the stop button. In fact, there is no user interface for anyone to interact with at all. This means that COAST.vi will work forever. Finally, data dashboard gave up and closes the connection because it should not take long for the web server that responds.

    So what is the correct way? It depends on what you're trying to do. In your case, it seems that you take just a bunch of inputs, do some calculcations and producing a bunch of outputs. You could do that in a VI with the method of a web that has just a bunch a bunch of outputs and inputs. In this case, you use just a web service calling (button) connected to one of the methods. Because this method has two inputs and outputs, you will get two entry and exit of Terminal ornaments around the button that you can use to connect to your commands (entered) and indicators (outputs). When you press the button it brings together the current values of the controls and those on the server to use as inputs to call your VI sends, and then he retrieves the results from the server and puts them in your indicators. In my example attached (see the file updated the dashboard) I show you how to do this. Note that I also modified the code of VI to create a Subvi for calculation of Basic code, and it is this VI which is used for the web service. This VI has no loop in him, so he just runs once with data values and returns the results.

    If you want to rather than having a continuous process that is continually measures your system in real time you need another way to access this data from a web service. It seems that that's what you were trying to do here, even if you use data in real time. Suppose that you were, however. In this case, you were a little close, but we need to make some changes. First of all, the running process doesn't have to be part of your web service. It may be, but it's a little more complicated. Instead of this, your process running (COAST.vi) can be just a regular VI running in LabVIEW. You just open and press run as usual. However, you want to only change VI to share its data with other processes. You have tried to do by using globals. Globals allow you to share data between the screws running in the same process, but web services actually run in a process completely separate (in the web server), so you'll need something else. A drop-in substitute would be shared network Variables. You'll see that in annex changed code I replaced your globals with shared variables. Then in your web service if you just use the same shared variables. Network shared Variables allow you to share data between processes (even on machines on the network) so that you can easily access the same data to both your VI running and your web service screw I modified your COAST.vi for this (and he calls the same Subvi from the calculation of the kernel).

    In this case, you could do just a single method "inputs" and only one "exits" method, but it might be better to break up to the less distinct modes which include the strongly bound values just to make things a little neater. It can be tedious to deal with a large number of terminals.

    Alternatively, once you use shared variables you has actually connect your controls and indicators on the dashboard of data directly to these shared variables. This has the disadvantage of requiring more ports to be open through your firewall (and you can not use security as you can do with web services), but for the use of internal network, it is easier to implement. To do this, just run your VI as before, and then as soon as it runs you can select each control or indicator in the dashboard of data, press the small button below, choose 'Shared Variables' and look for your variables on your machine. In this case, each control is directly bound to the variable, and so there is no need of a button. Changes that you make in the dashboard data are immediately placed on the server through the variable sared, and your VI (which is still running until you press stop) will see the new value, update the outputs and then repel these new values to the dashboard of data via other shared variables.

    I did not create a dashboard for the last two approaches, but if you may not know what I'm talking about, then I can create examples for those as well. The screw and the project must be configured to work in any case, if the only difference is in the configuration of the dashboard.

  • GPS of the poll seems to block on setLocationListener

    I try to start the GPS of the poll, but setLocationListener seems to hang.  The application just hangs there.  It's on a device of Torch 9810.  I use 6 SDK.  I don't get any errors, it just seems to stop.  After MUCH research, I came up with this:

    I have static variables of provider and criteria in my main application class.

    To start the voting, the word is setupGpsPolling();

    I put a listener of the situation with my interval.

    I have a thread that checks the latest patch.  If the time is more than 20 minutes, it resets by calling setupGpsPolling();

    In my main application class:

       private static BlackBerryLocationProvider _provider = null;
        private static BlackBerryCriteria _criteria;
    ......
    
        public static void setupGpsPolling() {
            LocationInfo.setLocationOn();
            if (_provider != null) {
                _provider.setLocationListener(null, 0, 0, 0);
                _provider.reset();
                _provider = null;
            }
    
            try {
                _criteria = new BlackBerryCriteria();
                _criteria.setGPSRestartInterval(600, 0);
                _criteria.setSpeedAndCourseRequired(true);
                _provider = (BlackBerryLocationProvider) LocationProvider.getInstance(_criteria);
                _provider.setLocationListener(new LocationListener(), 300, -1, 0);
            } catch (LocationException e) {
                System.out.println(e.getMessage());
            }
        }
    

    LocationListener

    public class LocationListener implements javax.microedition.location.LocationListener{
    
        private static long lastFix = 0l;
        private static Object lock = new Object();
    
        public void locationUpdated(LocationProvider provider, Location location) {
            try {
                BlackBerryLocation loc = (BlackBerryLocation) location;
                double longitude = location.getQualifiedCoordinates().getLongitude();
                double latitude =location.getQualifiedCoordinates().getLatitude();
                float speed = location.getSpeed();
                float course = location.getCourse();
                setLastFix(location.getTimestamp());
                GPSLocation gps = new GPSLocation(longitude, latitude, speed, course, location.getTimestamp());
                gps.setStatus(loc.getStatus());
                gps.setError(loc.getError());
                gps.process();
            } catch (Exception e) {
                System.out.println(e.getMessage());
            }
        }
    
        public void providerStateChanged(LocationProvider provider, int newState) {
    
        }
    
        public static void setLastFix(long lastFix) {
            synchronized (lock) {
                LocationListener.lastFix = lastFix;
            }
        }
    
        public static long getLastFix() {
            synchronized (lock) {
                return lastFix;
            }
        }
    
    }
    

    My thread checker:

    public class GPSThread extends Thread {
    
        public GPSThread() {
        }
    
        public void run() {
            while (true) {
                try {
                    Thread.sleep(300000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                if ((System.currentTimeMillis() - LocationListener.getLastFix()) > (20 * 60 * 1000)) {
                    App.setupGpsPolling(); //reset our location listener
                }
            }
    
        }
    }
    
    _provider.setLocationListener(new LocationListener(), 300, -1, 0)
    

    Should have been

    _provider.setLocationListener(new LocationListener(), 300, -1, -1)
    
  • Cannot open the pod of the list of subjects in RH9

    The title of this post is explicit. The pod simply won't open. All my filters are checked in the project manager pod - don't know if that makes a difference in this case however. Something I'm doing wrong, or not do?

    I can see it now! Although, I don't think it was the fix provided in the link you sent Peter who fixed it. I did the steps suggested and not go. I then stumbled across this thread by you to http://forums.adobe.com/message/4502519 where you solved the problem and after trying the fix - out of the blue, I see my pod of the topic list in the upper left corner of the screen as small as an icon. As soon as I expanded that, he's back! Maybe it was a combination of two patches, but when I did the steps described in the proposal above, it would show only the programs, not apps/windows/pods within the program. Anyway, I'm back in business. Thanks Jeff and Peter for your expertise on this point - I appreciate it!

  • Get the number of users of the pod of the Roster

    Hello, I am trying to display the number of users online by using the pod of the list, but I can't understand how do. Does anyone have any suggestions?

    Kind regards.

    List Pod is just a user interface component that displays all the users. It will be

    show users in the room by default, you will not have to do anything, unless

    your anonymous presence is enabled.

    If you want to get users and their details, you must use

    userManager.userCollection which is a collection of the ArrayCollection that contains all the

    users. Similarly, if you want to get only the hosts or participants only.

    You should get userManager.hostCollection or

    userManager.participantCollection and so on.

    Hope this helps

    Thank you

    Hironmay Basu

  • How seeds Cache using the Event Table of the poll

    Hello Experts

    I have configured the Event Table of the poll in my PC
    Steps to follow:
    (1) table created using SAEPT. Oracle.SQL scheme in 10g
    (2) any SAEPT. Oracle.SQL by creating a new connection pool in the physical layer
    (3) configured in repository - tools - utility - OBI event Polling tables by selecting SAEPT. Oracle.SQL and gave 15 min in the polling frequency
    (4) inserted data in SAEPT. Oracle.SQL
    (5) NQserver.log checked after the time of the poll which is 15 minutes. NQserver.log was not getting updated or details about the event that occurred.

    You think that I missed a few steps in the configuration of EFA, if so... Please help me I need to implement on the client machine soon.

    Enjoy your time guys.

    Published by: Newby on July 1, 2010 10:34

    As much as I know the vote event tables are used to purge the cache automatically. It is not used to start the cache.
    If you want to start the cache, the ibots use or you do like a program...

    Published by: user8000915 on July 1st, 2010 07:37

  • ESXi server of the poll with Solarwinds Orion NPM

    I'm under ESX1 4.1 U2 and we just bought Orion NPM 10.2.2.  I connected with the success of the host of Orion by the creation of a local on the ESXi host user and give permissions ReadOnly.   It works all fine Orion is the CPU, MEM, survey disks, the virtual machine to its customers, ect...  However the condition of the material shows ' material vote failed: chassis Polling (class CIM_Chassis) has failed.» Unable to establish a session with all the identification information provided" I am able to fix this by assigning the Administrator role to my local user.

    That is the problem.  I don't want to give this account full administrator permissions to monitor my hosts.   I tried cloning of the Administrators role, but he doesn't let Orion survey CIM hardware stats.  What am I missing why the default role works but not the clone? What is different?

    SNMP is the right answer, because I got exactly the same problem.

    http://KB.VMware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalID=1008065

    Activation/enable SNMP on host ESXi 5.1 | Geraldo Magella Junior

    Use the two links above and it solved the problem.

  • Participants cannot view video pods through the mobile application

    My participants indicate that they are unable to watch the videos we play during our demonstrations.  Video pods are supported through the iOS app?  If so, are there specific measures I need to do to make them work for my presence?

    For the videos to work in the mobile application, they must be FLV videos. I know it's against intuitive, but the videos to MP4 will show just as content not supported.

  • Adapter DB of the poll as singleton process does not work as expected

    Poller DB adapater uses to control the transaction all the seconds to the downstream system and I want this poller as singleton process (an instance should be in working order at the same time).

    As suggested in the documents of the oracle, here are the settings that are configured in the composite.xml file.

    < name of service = "polling_Mange_Alert_Events."

    UI:wsdlLocation = "polling_Mange_Alert_Events.wsdl" > "

    " < interface.wsdl interface =" http://xmlns.oracle.com/pcbpel/adapter/db/Application1/int_app_manageAlerts/polling_Mange_Alert_Events#wsdl.interface(polling_Mange_Alert_Events_ptt) "/ > "

    < binding.jca config = "polling_Mange_Alert_Events_db.jca" >

    < property name = "singleton" > true < / property >

    < binding.jca >

    < name = "jca.retry.count property" type = "xs: int" much = 'false' override = "may" > 2147483647 < / property > "

    < name = "jca.retry.interval property" type = "xs: int" much = 'false' "

    Override = "may" > 1 < / property >

    < name = "jca.retry.backoff property" type = "xs: int" much = 'false' "

    Override = 'may' > 2 < / property >

    < name = "jca.retry.maxInterval property" type = "xs: String" much = 'false' "

    Override = "may" > 120 < / property >

    < / service >

    JCA file settings are:

    < name of the adapter-config = "polling_Mange_Alert_Events" = 'Database adapter' adapter wsdlLocation = "polling_Mange_Alert_Events.wsdl" xmlns =" " http://platform.integration.Oracle/blocks/adapter/FW/metadata ">

    < connection-factory location = ' ist/DB/vff-int-was"UIConnectionName ="PT_APPINFRA"adapterRef =" "/ >

    < endpoint-activation portType operation "polling_Mange_Alert_Events_ptt" = "receive" = >

    < className = "oracle.tip.adapter.db.DBActivationSpec activation-spec" >

    < property name = value = "polling_Mange_Alert_Events.ManageAlertEvents" / "DescriptorName" >

    < property name = "Nomrequete" value = "polling_Mange_Alert_EventsSelect" / >

    < property name = "MappingsMetaDataURL" value = "polling_Mange_Alert_Events - or - mappings.xml" / >

    < property name = "PollingStrategy" value = "LogicalDeletePollingStrategy" / >

    < property name = "MarkReadColumn" value = "TRANSACTION_STATUS" / >

    < property name = "MarkReadValue" value = "Treatment" / >

    < property name = "PollingInterval" value = "10" / >

    < property name = "MaxRaiseSize" value = "5" / >

    < property name = "MaxTransactionSize" value = "5" / >

    < property name = "NumberOfThreads" value = "1" / >

    < property name = "ReturnSingleResultSet" value = "false" / >

    < property name = "MarkUnreadValue" value = "pending" / >

    < / activation-spec >

    < / point endpoint-activation >

    < / adapter-config >

    This poller process runs on the environment in clusters (2 soa nodes) and it does not work as expected in the singleton process.

    Please advice to solve this problem?

    I think that, in this scenario, you must use the distributed polling in the DB adapter. You can select in the voting options in the DB adapter configuration wizard.

  • The poll by IPSEC VPN SNMP

    Hi all

    I am trying to add remote Cisco switches to our Analyzer from Solarwinds network performance and I'm unable to see the community strings of switches behind our Firewall ASA across L2L IPSEC vpn tunnels.

    First of all, I can ping and see all the traffic behind the firewall.   Configuration manager (NCM) works fine, it can download and download configs of the remote switches.  It's just the SNMP which does not seem to talk.  Here are the lines of configuration of the remote switches:

    SNMP-server community * RO

    SNMP-server community * RW

    This configuration works fine on the other our network switches that are not accessible via a VPN tunnel.  Y at - it another line I need to add that pointing to the server from SolarWinds SNMP traffic?

    When I try to add the switch to Solarwinds, he sees the IP perfectly but once I added community strings RO and RW it performs a test fails every time and will not let me continue to add the device.

    Any help would be GREATLY appreciated!  Thank you!

    Matt

    Exit to Windows firewall and check the Antivirus on Solarwinds as well. This may be the origin of the problem (a working time or does not not once). Another possibility (can be), if you have all IPS inline and inspect traffic, this could cause the issue. Check to see if any program/device in the path is kinetically limiting ICMP/SNMP packets #of.

    What version of NPM?

    THX

    MS

  • E-mail of the poll with attachments

    Hi all

    I am facing a little problem with the implementation of a service of the OSB.
    Our architecture consists of a server OSB (11 GR 1 material) acting as a façade and then connects to a server SOA.
    Our goal is, through OSB, query an email inbox to read e-mail attachment and process the data included in these attachments.
    We are currently processing the data correctly, but the first step - the email survey - this isn't perfect.

    At this moment we have a solution that works.
    The proxy service queries the mail inbox (message type of query: binary) and such only configured, send attachments in a folder of archive where is another proxy service (Protocol: file) queries the same folder to treat the attachment.
    As I said before, this mechanism works... However, much information is lost (email body, to, cc, bcc, date/time, etc.) and if the OSB allows a Messaging Protocol receive requests, I think of course there must be a better way to deal with emails.

    I chose the binary message type of request, because if it was:
    -Text, the content is inside a CDATA container;
    -XML, I would get an error "demarshalling message failed: could not parse XML text;
    -MFL, I don't know the structure of the enamel to generate the file conversion.

    Is there a way to deal with the (binary attachments, that this is a .zip file) and, at the same time, read the information remains contained?

    If you wish additional information about our architecture, or on the solution we have implemented work/wanted to implement, feel free to ask!

    Thanks in advance,
    Bagagem

    Hi Bagagem,

    There's an example here... But it's xml if...
    http://beatechnologies.WordPress.com/2011/06/24/triggering-an-OSB-message-flow-with-email/

    Text, the content is inside a CDATA container

    I think that text should be the way to go, what's the problem with a CDATA container?

    The other may info to, cc, bcc will probably come in the headers... Go to the operational parameters of your proxy server and enable tracking of message with full detail, so you can see on the osb server log exactly what is coming...

    I hope this helps...

    See you soon,.
    Vlad

  • Understanding of the polling question

    Hi, I work with the JDeveloper 11.1.1.5.0 the database I use is the DB HR on Oracle 11 g XE.

    I am observing, for me at least, a strange behavior.

    I have a page with a table of employees. When I change some data in this table and does not commit changes, always 'change' data is displayed and not the original data base table data.
    So, is the right query updating the data of my entity object and this behavior is supposed to happen and I have to refresh the data in a different way?

    Hello

    Unless cancel you the changed data will continue to be visible to you (another option would be to update the OS using the option "Actualiser updating from db, forget the changes").

    John

  • With the help of the POLL with Execute Immediate clause

    I wrote a query to update a table and return the column in a variable of type table nested using the return clause but its not working, I am getting error like

    ORA-06550: line 66, column 22:
    PLS-00306: wrong number or types of arguments in the call to ' |'
    ORA-06550: line 66, column 4:
    PL/SQL: Statement ignored

    I get the error message in part of my request to the suite

    || "RETURN If_row_status in bulk collect INTO"
    || v_if_row_status;


    Referred to as v_if_row_status-
    TYPE v_count IS the TABLE OF varchar2 (50) INDEX directory.
    v_if_row_status v_count;

    The original message listed error about concatenation, but the code in response to scott.wesley had no concatenation. Have you tried to revise the update process? What is a different issue, unrelated to the first?

    The best thing to do would be to create a cursor, loop through it and use a simple update for each row. Updates complex as the one you are trying to use are very difficult to manage. By using a loop to insert/update, you can have control over the process and have access to all values, you must use more later in advance instead of having to use the RETURN clause.

    Insert bulk can be more effective, but is difficult to manage for the great updates.

  • What should I do after having replaced the card mother i - pod?

    I replaced the motherboard of I have my daughter 7 Gen 160 GB iPod and when I turn it on the screen is completely gray. I think that I have to download an operating program. However, my PC does not recognize the iPod to allow me to access it. When I connected the former Council (replaced due to the connector of the battery come off) the display shows "battery charging please wait."

    How can I get my PC to recognize my I - Pod with the new motherboard was connected?

    Are you sure that the "new" motherboard is everything ok?

    Try to put it in DFU mode: plug it into your computer. Hold the power and select buttons together for 12 seconds. It should be a charge in the battery. See if the computer recognizes then.

  • Can I create a hierarchy of topic on the project manager pod or I must rely on the table of contents?

    Hello

    Can I create a hierarchy of topic on the project manager pod or I must rely on the table of contents? I use RoboHelp 9 (although I doubt that the version of the questions).

    Thank you

    Mary

    Hi Mary

    As you do this is by creating folders in the project manager, then create new topics in the files or move the existing entries in the records.

    If you work exclusively in the project manager, you are only able to move a single topic at a time. If you want to move a swarm of topics, open the pod of the list of topics and you can select as many as you want. Then drag the subjects selected to the folder on the project manager pod. Be a little careful when you drag. Often the mouse will pass over a tab at the bottom of the basket, and this can change their minds about you.

    See you soon... Rick

Maybe you are looking for

  • Where disappeared the filtering

    I just upgraded to iTunes 12.4 Can someone tell me how to get the Genre / artist / columns Album back to sit at the top of my library. Thank you

  • checkSUR for Vista sp2 64-bit ultimate

    After trying to install SP2 to Vista Ultimate 64 bit with Windows Update I got an Error 80004002I downloaded The Check upadate KB947821 system tool and he movedThen I downloaded the SP2 Windows6 update. 0-KB948465 - X 64 it cannot installquoting the

  • How to restore the real folder of the Document on the Start Menu

    THANK YOU EVERYONE I HAD TO RESTORE FOR THE 18TH TIME. I had two folders of paper in my user folder. I deleted apparently the one wrong because now when I put my curson on it in the Start Menu there is nothing there. Is there a way to restore, conten

  • Win7 spontaneously allows files and printers, sharing on public networks

    There isn't any residential group activated on the computer, but I recently changed the creation of connections of residential group "user accounts and passwords...". "to"allow Windows to manage the homegroup connections... ". ». Normally the files a

  • Not a VoicePrint?

    This phone does not a VoicePrint? I don't see the option in the menu contact details to add voice identifiers for hands-free calls.