Problem Setup message destinations

Hi people,

I just started to play with the flex data services a bit and tried the sample chat application that Aug can be found on the Labs site - it is called "Simple Application of cat. However, I came across a comment on the problem quickly covers the configuration of the channels and the dewstinations in the services.xml file - xx. It doesn't seem to work, the runtime compiler always sheet ma, that the destination does not exist, in fact he did, and Yes, it's the right configuration file...

So, alone with my pain, I decided to rework everywhere, uninstalled everything and started from scratch. This time I choose install the SDS as a JRun server instance, since I use an instance of j2ee coldfusion on the same machine. Now, I don't get the compile error more, and the app shows me how the message format ist, he is about to send. However, the message is not on a second instance of the same application.

Even more worryingly what do I need to package flex-admin? It doesn't seem to be able to configure anything, it? It is for monitoring only? Could not find any documentation on this subject, unfortunately. However, since the installation of the scale, the flash-flex-admin UI displays all the data. in the facility before, he did at least...

Help, anyone?

Thanks for the tip, I'll try that soon.

but in the mrantine I realized what the real problem was...
I used the jrun installation that comes with the coldfusion installation package. When finally, I rode the flex-error log files, I discovered, that the messagebroker servlet could not be instantiated due to an older version of jre (who came with cf!). However, I installed the latest version and since - everything works as expected :)

Thanks again,
Thomas

Tags: Adobe LiveCycle

Similar Questions

  • There was a problem creating the destination folder. If please check the permission of folder or choose a different folder.   What that means, tried to name several different folders, but still the same error message. Would be grateful for the help!

    There was a problem creating the destination folder. If please check the permission of folder or choose a different folder.   What that means, tried to name several different folders, but still the same error message. Would be grateful for the help!

    This means that the folder you want to create is blocked because of file permissions. The drive or folder you are trying to create the destination folder is set to read-only, and your username does not have write permissions.

  • When I try to install the 'install Creative Cloud' I get this message "we encountered the following problems: Setup failed in a critical file.» Please try to reinstall. (Error code: 43)

    When I try to install the 'install Creative Cloud' I get this message "we encountered the following problems: Setup failed in a critical file.» Please try to reinstall. (Error code: 43). I tried so many times and repeat me the same mistake. Help, please!

    Please check the resolution:

    Concerning

    Stéphane

  • Updated since version 7 or 8 during the installation SETUP message - your computer must be restarted to complete a previous update of Firefox. Do you want to restart now?

    Updated since version 7 or 8 during the installation SETUP message - your computer must be restarted to complete a previous update of Firefox. Do you want to restart now? Options are 'yes or no'. Option 'Yes' restarts my computer & the attempts to Firefox, I get the same message. Reboot several times has no effect. The option 'no' closes the file and nothing happens. Running XP Pro version 2002 SP 3. All normal programs have been updated to the current date (Adobe, Java, etc.).

    Do a cleaning (re) install and delete the folder of the program Firefox (C:\Program Files\Mozilla Firefox\).

    Download a new copy of Firefox and save the file to the desktop.

    Uninstall your current version of Firefox if possible.

    • Do not remove the data of a personal nature when you uninstall the current version or you lose your bookmarks and other data in the profile folder.

    Delete the program folder Firefox before installing newly downloaded copy of the Firefox installer.

    • It is important to remove the Firefox program folder to delete all the files and make sure that there is no problem with the files that were the remains after uninstallation.

    Your bookmarks and other profile data stored in the Firefox profile folder and will not be affected by a relocation, but make sure that you do not select delete data of a personal nature if you uninstall Firefox.

  • DPL8007: Unsupported message-destination element descriptors deployment?

    Hi all

    I'm not able to run a tutorial Java EE 5 JMS working in jdk1.6.0_25, (shipped with Netbeans 7.0 on Windows XP) GF3.1 despite having recreated the whole project from scratch. Here are snippets of various components of the project:
    C:\Documents and Settings\jack\JMSEnterpriseProject\JMSEnterpriseProject-ejb\src\java\com\ensode\mdb\MessageReceiverBean.java
    
    @MessageDriven(mappedName = "jms/myQueue", activationConfig = {
        @ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue = "Auto-acknowledge"),
        @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue")
    })
    public class MessageReceiverBean implements MessageListener {
    
        @Override
        public void onMessage(Message message) {
            TextMessage textMessage = (TextMessage) message;
            try {
                System.out.println("Received message:" + textMessage.getText());            
            } catch (JMSException ex) {
                Logger.getLogger(MessageReceiverBean.class.getName()).log(Level.SEVERE, null, ex);
            }
        }
    }
    
    C:\Documents and Settings\jack\JMSEnterpriseProject\JMSEnterpriseProjectApplicationClient\src\java\com\ensode\jms
    
    public class Main {
        @Resource(name = "jms/myQueue")
        private static Queue myQueue;
        @Resource(name = "jms/myQueueConnectionFactory")
        private static ConnectionFactory myQueueConnectionFactory;
    
        public static void main(String[] args) throws JMSException {
            new Main().sendJMSMessageToMyQueue("NetBeans makes JMS trivial!");
        }
    
        private Message createJMSMessageForjmsMyQueue(Session session,
                Object messageData) throws JMSException {
            TextMessage textMessage = session.createTextMessage();
            textMessage.setText((String) messageData);
    
            return textMessage;
        }
    
        private void sendJMSMessageToMyQueue(Object messageData) throws
                JMSException {
            Connection connection = null;
            Session session = null;
            try {
                connection = myQueueConnectionFactory.createConnection();
                session = connection.createSession(false,
                        javax.jms.Session.AUTO_ACKNOWLEDGE);
                MessageProducer messageProducer = session.createProducer(myQueue);
                messageProducer.send(createJMSMessageForjmsMyQueue(session,
                        messageData));
            } finally {
                if (session != null) {
                    session.close();
                }
                if (connection != null) {
                    connection.close();
                }
            }
        }
    }
    
    C:\Documents and Settings\jack\JMSEnterpriseProject\JMSEnterpriseProject-ejb\setup\glassfish-resources.xml
    
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE resources PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Resource Definitions//EN" "http://glassfish.org/dtds/glassfish-resources_1_5.dtd">
    <resources>
      <admin-object-resource enabled="true" jndi-name="jms/myQueue" object-type="user" res-adapter="jmsra" res-type="javax.jms.Queue">
        <property name="Name" value="myQueue"/>
      </admin-object-resource>
      <connector-resource enabled="true" jndi-name="jms/myQueueConnectionFactory" object-type="user" pool-name="jms/myQueueConnectionFactory">
        <description/>
      </connector-resource>
      <connector-connection-pool associate-with-thread="false" connection-creation-retry-attempts="0" connection-creation-retry-interval-in-seconds="10" connection-definition-name="javax.jms.QueueConnectionFactory" connection-leak-reclaim="false" connection-leak-timeout-in-seconds="0" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" lazy-connection-association="false" lazy-connection-enlistment="false" match-connections="true" max-connection-usage-count="0" max-pool-size="32" max-wait-time-in-millis="60000" name="jms/myQueueFactoryPool" ping="false" pool-resize-quantity="2" pooling="true" resource-adapter-name="jmsra" steady-pool-size="8" validate-atmost-once-period-in-seconds="0"/>
      <connector-resource enabled="true" jndi-name="jms/myQueueFactory" object-type="user" pool-name="jms/myQueueFactoryPool"/>
      <connector-connection-pool associate-with-thread="false" connection-creation-retry-attempts="0" connection-creation-retry-interval-in-seconds="10" connection-definition-name="javax.jms.ConnectionFactory" connection-leak-reclaim="false" connection-leak-timeout-in-seconds="0" fail-all-connections="false" idle-timeout-in-seconds="300" is-connection-validation-required="false" lazy-connection-association="false" lazy-connection-enlistment="false" match-connections="true" max-connection-usage-count="0" max-pool-size="32" max-wait-time-in-millis="60000" name="jms/myQueueConnectionFactory" ping="false" pool-resize-quantity="2" pooling="true" resource-adapter-name="jmsra" steady-pool-size="8" validate-atmost-once-period-in-seconds="0"/>
    </resources>
    Yet, she was met with the following exception appears as a generated by Netbeans 7.0 does not support deployment descriptor:
    _GF3.1 server log_
    WARNING: DPL8007: Unsupported deployment descriptors element message-destination value null
    
    _Application Client Outpu
    t_10/05/2011 2:59:45 AM com.sun.enterprise.deployment.util.ComponentValidator accept
    WARNING: DPL8007: Unsupported deployment descriptors element message-destination value null
    com.sun.enterprise.container.common.spi.util.InjectionException: Exception attempting to inject Unresolved Message-Destination-Ref jms/[email protected]@null into class com.ensode.jms.Main
    ………
    Caused by: javax.naming.NamingException: Lookup failed for 'java:comp/env/jms/myQueue' in SerialContext[myEnv={java.naming.factory.initial=com.sun.enterprise.naming.impl.SerialInitContextFactory, java.naming.factory.url.pkgs=com.sun.enterprise.naming, java.naming.factory.state=com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl} [Root exception is javax.naming.NameNotFoundException: No object bound for java:comp/env/jms/myQueue [Root exception is java.lang.NullPointerException]]
    GlassFish - resources.xml to reside in C:\Documents and Settings\jack\JMSEnterpriseProject\ setup\ sun - resources.xml in GF2.1.

    Deployment was successful, resulting in the following resources:

    Connector resources = > jms/myQueueConnectionFactory, jms/myQueueFactory.
    Pools of connections connector = > jms/myQueueFactoryPool, jms/myQueueConnectionFactory.
    Resources object admin = > jms/myQueue.

    Your help would be very appreciated.

    Thank you

    Jack

    It's because of the way you said your resources:

        @Resource(name = "jms/myQueue")
        private static Queue myQueue;
        @Resource(name = "jms/myQueueConnectionFactory")
        private static ConnectionFactory myQueueConnectionFactory;
    

    When you set the name attribute, you define a logical name, whose scope is this particular component and associating it to the resource. You not actually specify the physical location of the resource in the store your server JNDI.

    If you want, you can specify the following entries in client application. XML linking the two. (Of course looks a little weird in this case because the logical name extended component and the physical JNDI name are similar, even if they refer to different things).

    
       
          jms/myQueue
          javax.jms.Queue
          jms/myQueue
       
    
    

    This indirection allows the application developer to write their code without needing to know where the resources are physically located. This information can be added by the time the deployment deployment program.

    If you don't want this, you can set the physical location to hardcode the resources using the annotation by setting the attribute mappedName:

        @Resource(mappedName = "jms/myQueue")
        private static Queue myQueue;
        @Resource(mappedName = "jms/myQueueConnectionFactory")
        private static ConnectionFactory myQueueConnectionFactory;
    

    By doing this, your code is a bit less portable.

    (Note: it is better to ask questions about GlassFish on GlassFish forum at http://www.java.net/forums/glassfish/glassfish)

  • Problem with messages sent by post El Capitan: my sent messages appear only when someone answers, not in my "Sent" folder as they did.  Can anyone help?

    Problem with messages sent by post El Capitan:

    My sent messages appear only when someone answers, i.e., in the context of a thread.

    not in my folder "sent" as they did.  Can anyone help?

    The mailbox list is divided into categories with such topics on my Mac. When you position the cursor on one of these positions (with the exception of the mailboxes), you should see the Word display / hide it on the right. Click view, if that's what you see.

    In the category of the mailboxes, the mailboxes are arranged in groups, such as Inbox. To the left of each group is a small tip of arrow. If the arrow points to the right, click it so that it points downwards.

    Also note that you may need to scroll the list of mailboxes upwards or downwards to see it all.

  • Host process generic for win 32 services has encountered a problem error message

    Host process generic for win 32 services has encountered a problem error message. How to fix

    Hi MarkGanbucci,

    1. Did you the latest changes on the computer?
    2. When was the last time it was working fine?
    3. That you receive the error message?

    See the Microsoft articles below and check if it helps.

    Generic host process error message and a flashlight icon appear

    http://support.Microsoft.com/kb/821690

    Error messages when you start a Windows XP-based computer and then try to download Windows updates

    http://support.Microsoft.com/kb/931852

  • Disk problem error message: has: / is not accessible. No ID address mark was found on the floppy disk.

    Disk problem error message: has: / is not accessible. No ID address mark was found on the floppy disk. I am new to the computer world and that you just want to remove info a diskette and put the information on a CD. Can someone help me please?

    Hello
     

    1. are you able to use the other disks?
    2 have you tried to use this disk on another computer?
     
    The article below explains this error message. It is possible that data on the floppy drive went bad. I ask you to check whether the floppy drive works on another computer.
    Quick format in no. ID address mark results found
    http://support.Microsoft.com/default.aspx?scid=kb;en-us;130627
     

    Hope this information is useful.

    Thank you, and in what concerns:
    Shekhar S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.
    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • IP address conflict? How to solve this problem. Message on the screen. go to the system event log window.

    Next message on the screen for IP address conflict. There are two addresses. How to solve this problem. Message to say go to the system event log window. I can't. Pl help.

    A common situation that can lead to a conflict of ip address, it's only 2 (or more) computers or other devices are connected to the router (via ethernet or wireless), and both have ip addresses assigned by the router automatically, one of the computers, then past in mode 'sleep', and while we sleep the router restarts.  When the router comes back online he doesn't know the computer sleeps is here and that he already has an assigned ip address and so it gives the ip address of the other computer.  When the computer asleep wakes duplicate error will be triggered.  It can be solved by turning off computers and turn it back on so that the router will assign them new ip addresses.  If this is not what is happening in your situation, the following may help: http://windows.microsoft.com/en-US/windows7/Get-help-with-There-is-an-IP-address-conflict-message

  • All of a sudden I started getting a "Cannot complete the command because of a problem." message using the Adobe color engine Can anyone suggest what it can be and how to fix it? Thank you very much!

    All of a sudden I started getting a "Cannot complete the command because of a problem." message using the Adobe color engine Can anyone suggest what it can be and how to fix it? Thank you very much!

    Trash this stage and re - register. It could be that new file dialog tries to assign a document profile that is damaged or is no longer present on your system. If this does not work, reset the Photoshop preferences. Press ctrl + alt + shift at the launch, confirm with the dialog box that appears if you did it correctly.

    Make sure to save all your other actions, brushes and so on first!

    Shares usually work between different versions, but if certain parameters have changed they may fail right there.

  • Problem creating the destination for Lightroom 6 folder

    Just upgraded to Lightroon 6. Now I have a problem creating the destination folder. Already checked the folder permissions. Even tried a new folder nothing helps. A lot of space on the computer.

    Don't know who to turn to next. Is this a problem of individual computer?

    You must use a computer with permissions of administrator account

    Also, do a right click on the installer and select RUN AS ADMINISTRATOR from the popup option window to see if that helps

  • Centro + Exchange: There was a problem synchronizing messages

    I followed the instructions on this page: http://kb.palm.com/SRVS/CGI-BIN/WEBCGI.EXE/, /? St = 116, E = 0000000000145083804, K = 5545, Sxi = 18, case is Obj(45113) and I have connection problems. We use OWA and I can access this page from my phone and connect, but I get an error. I assume that the error is all simply because the page is too large for the phone to load. I know that the e-mail address and the password are good because I entered them several times and tried several accounts. If I have SSL on and the hit test I get the error: connection to Server error. Please check youre network or server and re-synchronization settings. If I disable SSL I get error: there was a problem synchronizing messages. If I put in what I know to be the wrong address with SSL off I get error messages from the server connection, so I think I'm at least getting the phone to see the server.

    Hey!  Update time.

    Kayden plugged away and got her headaches of restated certificate.  He ran Server2003 with Exchange2007 and we discovered that the previous admin never swapped the original self-signed certificate that Exchange moved with.  You know, - the cert that totally kills your ability to activesync, because it is not issued by a certificate authority valid with a server to export cert and inject it into a Centro (or other handheld).

    As a solution in the short term for his small business, he did not convince management to buy a commercial cert immediately.  Instead, they choose to install Server 2003 become business certification as their own certification authority root in trust with the ability to issue free self-signed certificates.  In addition, the Microsoft suggestion is that cert SAN is the best way to secure Exchange Server.  He has used a simple hack to activate his new CA to issue certificates of SAN and was able to issue a custom SSL certificate.  We are now ready to install and get things running.

    After a little confusion about which cert is supposed to go where (a root CA certificate was downloaded from the CA server to add to each customer so that they would trust self-signed certificates), the new SSL certificate has been installed by using Exchange Management Shell first IMPORT the cert, then turn it.

    Then, a test Cento was hotsync 'ed to add the new Board to the store root trust of the Palm OS' using this tool: http://www.palm.com/us/support/downloads/versamail/certmodtool.html

    VersaMail has been configured to connect to the Exchange 2007 server using the Regional service and the first synchronization went perfectly.  With sync "as items arrive" handheld is able to send and receive without any problem.

    Outlook clients were then the installation program to trust the new CA as well and everything went back to business as usual.

    Don't is love a happy ending?

    Message relates to: Centro (Sprint)

  • We encountered the following problems: Setup could not copy a critical file. Please try to reinstall. (Error code: 43)-message when you try to reinstall the creative cloud

    Can someone help me with this problem - tried all sorts and still saying the same thing!

    Download this file for the Macintosh and install it SOLVED the problem! Yay! Adobe - Adobe Application Manager: for Macintosh: Adobe Application Manager: thank you

  • Web interface of WRT120N show WiFi Protected Setup message repeatedly

    We have a WRT120N already configured and used for 2-3 years, which recently began displaying a message asking me to press the Wi - Fi Protected Setup button on the device. While in this State, work DHCP and wireless connection settings remain the same. It seems that the internet connection works if the router was not in that State when turned on, but not if the router was in this state when it is started.

    A few weeks ago, he did something where the wireless connection on my laptop would display Wi - Fi Protected Setup instead of WPA2 Personal as security, and then the connection would drop after a short period. Turning on the device, and then turn that would set, but does not necessarily solve the current problem. It happened a few times, but not more recently.

    The device is out of range, then the WiFi Protected Setup button has not been pushed back. Before this problem came up, I had downloaded a firmware update, but not him have not applied because the router is difficult to access, and now I'm worried that the device could be unusable if I try to do the update.

    I'm guessing that maybe it's a physical failure due to the humid climate here. Any ideas? Thanks for any help.

    Hard reset the router and reconfigure from scratch.  Once completed and verified working updated the firmware, hard reset and reconfigure back once again.

  • Updated my iPhone 5 ios 9.3.3 and problems with messaging

    Many of my applications were unusable, unless I upgraded (it has been a long time) but when I did all my old messages disappeared. And if that wasn't bad enough when I now get a message there is no notification. AND the content of incoming or outgoing messages will disappear in 1-2 hours. Just left with the name or phone number. I thought I the phone turned off and save but which only made it worse. Even the name / # disappeared. I am a foreigner and I am relying on texting but looks like I made a big mistake. These problems appear in beta? Googling - it's a known issue. Makes me want to never be updated again! Help!  I'm still traumatized from upgrading my MacBook Pro and lose iPhoto. Not impressed by the sign (less) Photo.

    Travel-Shotz wrote:

    ... unless I upgraded (it has been a long time)

    If you updated / upgrade every time new Apple software have been revised, you would probably avoid many of your questions.  You would replace it with several small updates / upgrade for a huge.

    So that's my advice for the future.  One thing you can also do right now is to check the settings > general > storage & use iCloud > manage storage (under storage) and make sure that you have absolutely no less than 10% of the total free storage of your device.

Maybe you are looking for