Wli channel qualifiedmessagetype not working sometimes?

I am having the following problem.
I have a channel file which is as follows:
<?xml version="1.0"?>
<channels xmlns="http://www.bea.com/wli/broker/channelfile"
xmlns:sa="abcd"
xmlns:eg="http://www.bea.com/wli/eventGenerator"
channelPrefix="/xyz">
<channel name ="path1" messageType="none">
<channel name ="path11" messageType="none">
<channel name ="channel1" messageType="xml" qualifiedMessageType="sa:message" qualifiedMetadataType="eg:JmsEventGenerator"/>
</channel>
     </channel>
</channels>
When I build the schema the channel is created and visible in admin console.
I created a JPD with a start node as event subscription.
In event subscription, General Settings dropdown, i selected the channel
In ReceiveData dropdown, I expected the object type as the messagedocument (which i defined with that specific namespace). But it is showing XmlObject.
This is totally strange. Sometimes it shows the type as specific message document and most of the times as XmlObject.
Can anyone throw light on this why wli/workshop is behaving strange with respect to the channels and message types?
Any help is appreciated.

I encountered several times this problem with WLI 8.1 and didn't found any workaround. Consider it as a bug.

Similar Messages

  • Foxtel on T-Box -- all Foxtel channels suddenly not working

    Hi  I would really appreciate some help. We have happily had, used and (I daresay) loved our T-Box for the past 5 years. And then I made the fatal mistake of subscribing to Foxtel on T-Box about 6 weeks ago, as I wanted to legally watch Game of Thrones. (Please don't laugh at me spending $65 per month to watch one TV show; I am trying to do the right thing!) Suffice to say, the love affair with our T-Box is over. Foxtel on T-Box worked fine for a couple of weeks. (My original setup was a T-Box 1, connected via a strong WiFI signal via HDMI to plasma TV). And then all of a sudden, about 4 weeks ago, I began losing all Foxtel channels. Instead of the channel coming up, I get a black screen with a message at the top of the screen that says "Loading internet channel, please wait". And sometimes, I also get a message at the bottom of the screen which says "Cannot start playback, please try again later (0612)".   A wierd thing is that through all of the problems with Foxtel on the T-Box described in this post, using the exact same account/subscription, Foxtel has continued to work percetly fine via the Foxtel Go app on my iPad and PC. Since out Foxtel channels started not working, I have called Telstra support about 5-6 times. As a result of these calls, I have purchased a T-Box 2 and it connected via ethernet instead of WiFi. (BTW, this didn't change anything and IMHO was a complete waste of $99.) The Telstra support person has apparently done all he/she can on their end. And I have also reloaded subscriptions, reset licences, reformatted the hard drive, reset the T-Box(s) on more occasions than I can count - about 10x. My ADSL2+ internet speed is not great, but it should be OK. It's usually about 5-7Mbps download and 0.5-1Mbps uplaod (as measured by http://vic.speedtest.bigpond.net.au). As I mentioned above, even when the Foxtel channels don't work on the T-Box, it works fine via the Foxtel Go app on my iPad and PC. Sometime doing these things get the channels to work again, by trying one thing after another, but usually it does not. On the rare occasion when the Foxtel channels do somehow come back, neither the Telstra support person nor I, know what happened to make them work. The issue has been escalated to a "Level 2 support person" who is investigating. But he/she has been investigating for the past 2 weeks, and hasn't been any help at all so far. I now keep getting fobbed off by the Telstra support person, with no commitment about when the "Level 2 support person" will do anything or when he/she will call me. Whilst the Telstra support people I talk to are perfectly polite - so far no-one can solve this problem. This is very, very, very frustrating! If you have had similar issues and fixed them, can you please let me know how? If you are a Telstra support person monitoring this forum, how can I progress fixing this problem? Cancelling my Foxtel on T-Box subscription is not what I want to do, but right at the moment I have no confidence that anyone from Telstra has any idea what is going on or how to fix it. Any support would be grately appreciated. Michael PS: And if I hear another Telstra support person ask "Can I help with anytthing else today?" -- when they haven't been any help whatsoever WRT the problem I called up about -- I am going to scream! 

    I'm in the same boat, into Week 3 of losing all my Foxtel Channels, Lost anything that says Foxtel. Channel 958 doesnt have any reference to Foxtel.  Reset over 10times, Router & Tbox Reset & turned off for the Day.
    No Foxtel Channels show up in the Guide. First I had the error messages, then everything was wiped when asked to reset with a Telstra Customer Support Person. Then got invalid channel numbers on all Foxtel, & lost all Info to anything Foxtel.
    7 Customer Support persons & 14hours of Phone calls & complaints, no one has an answer how to get my Subscription Back. They can see that I have a Subscription but don't know how or why this has happened.
    Have also got Foxtel on the job looking for answers as well as Telstra. 
    I have been using Computers for 30years & can't believe no one knows how to fix it.
    The Tech Crew at Telstra said that my line speed had slowed due to the fact I don't have Foxtel on anymore.
    I asked my Wife to ask the Customer Support person to get the Tech to Email that Answer in writing to us so I can show the Communication Ombudsman people, but all they send are Emails about "I hope we have helped you with your query" & can you complete the online survey. 
    What they need to do is a full diagnostics / firmware reload, but it seems no one knows how to do that.
    Sorry I can't help!

  • In Flex application functionality is working sometimes and not working sometimes..

    Hi,
    Please help me on this..
    In my flex application some functionality is working some times and not working sometimes..
    In my project i have 5 sections with 5 separate screens..Each screen is of one diffeent module.
    After logining into the application:
      I will go to one screen..First time every functionality is working in that screen..
    Ex:: I have a screen with datagrid.From that user will select one job name from datagrid click on next button..
    Based the job name the user selected i have to display some information in next screen and customer names.customer names is a combo box..
    below is the code:::
                   public function populateAllOEMCustomers(event:ResultEvent):void
              1)     var object_CustomerList:CustomerList = event.result as CustomerList; //Assigining result object values to Object reference variable.
              2)    var allOEMCustomersCollection:ArrayCollection = new ArrayCollection(); //Declaration ArrayColliction referance variable.
             3)       var i:int=0;
             4)      var customerComboLabel:Label = new Label();
              5)      for (i = 0;i < object_CustomerList.arryCollCustName.length; i++)
                        var strCustName:String = object_CustomerList.arryCollCustName.getItemAt(i).toString();
                        var strCustId:String = object_CustomerList.arryCollCustId.getItemAt(i).toString();
                        customerComboLabel = new Label(); //Dynamic declaration of label.
                        customerComboLabel.name = strCustName; //Assinging the customer name to the Label name field.
                        customerComboLabel.text = strCustId; //Assingning the customer id to the Label text field.
                        allOEMCustomersCollection.addItem(customerComboLabel); //Adding Lable into the ArrayCollection referace variable.                                       
                    //customerComboID.selectedItem = "--";   
                    OEMCustomersComboID.dataProvider = allOEMCustomersCollection;
                    OEMCustomersComboID.selectedItem = -1;
    This functionality is working fine when i visit to this screen first time..If you go back to another screen and come back to this same screen and click on next button this time customer names combo box has no customer details..I am getting Nullpointer Exception and it is showing the line number 5( i have given the number for code given above..)
    If i change the first line of the code to below code:: every time the above functionality is working fine.Not getting any error msg..
      var object_CustomerList:Object= event.result ;
    If i  type cast it to specific class(CustomerList) ,functionality is not working ..getting null pointer exception..If i type cast it to Object everything is working fine..In my code wherever i have typecasted it to specific class functionality is not working(gettingNullpointerExcepion).
    Please help me on this..I am not getting what could be the reason..
    I am using::Flex 3,Flash player 10.1
    Thanks in advance..
    Regards,
    Satya

    Hi Satya,
    This sometimes as in your case might not work as the way you have specified the RemoteClass attribute in your AS class. As somtimes there may be a case as before it is mapped to a server side you are returned the data and so that you may not get the data as your Custom class but as normal Object type.
    So in order to avoid this you can map the server side class to AS classes in the PreInitialize handler itself as shown below:
    Specify the preinitializeHandler in your main application and write the below function.This way also you can map AS classes with the server side. So that you will not have any problem referring your application as AS class types.
    You can use the same line for registering all the classes. By using this you can remove all the  [RemoteClass] attributes on all AS classes and include it at single place.
    preinitialize="onPreinitialize()"
    private function onPreinitialize():void
      registerClassAlias("com.expeditor.ScriptAdmin.Objects.CustomerList", CustomerList);
    Here in the above line of code the string in quotes refer to the namespace of the Server side class and the latter is your AS class. Also dont forget to import the namespace of the corresponding AS class in the file.
    Try this and let me know..
    Thanks,
    Bhasker

  • KYPE Account its not work sometimes

     me have really problem with my SKYPE Account  its not work sometimes. what about it?
    [Topic title updated by moderator to be more descriptive. Original topic title was: "Re: Не отображаются контакты."]

    It's a one year limited warranty, not a guarantee. You have 14 calendar days  from the time your items are delivered to initiate a return as noted here.
    Not all new Mac's have issues with Wi-Fi including mine running v10.9.4.
    Unless you state exactly which troubleshooting steps you have taken that didn't work, we have no way of knowing.
    Network preferences may be corrupted.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    /Library/Preferences/SystemConfiguration
    Click Go then move all the files in the SystemConfiguration folder to the Trash.
    See if that makes a difference.
    Your Mac will generate a new SystemConfiguration folder for you.
    If that doesn’t help, try here >  Wi-Fi: How to troubleshoot Wi-Fi connectivity

  • HT201412 Message tones is not working sometimes

    1.My iPhone 5 message tones is not working sometimes suddenly, have to restart device or eventhought sometimes is not working too after restart my device. I have to reset my iPhone n restore again .
    2.Restore with iOS is not as good as last time coz I can't get back all my iOS photo stream photos n all the photo in my albums too. This is ***** n takes few days also not complete download all of my photos.
    3.some of my iPhone apps will suddenly not respond or will log out to home screen suddenly . Have to open the apps few times only its working as normal .

    Hi,
    I have nothing found regarding your issue. But maybe a look at SAP note 638058 will give you a hint.
    Regards,
    Klaus

  • "access restrictions" did not work sometimes when using 3-tier DeskI.

    My customer found that "access restrictions" did not work sometimes when using 3-tier DeskI.
    But this issue can be solved by logging on from another machine, or restarting the DeskI.
    For I can reproduce this issue, so I just want to know that:
    1.What is it probably related to?
    2.If this issue happens again, what can I suggest my customer for tracking it?
      For example, get some log files from servers etc.
    Thanks!

    Hi Sarah,
    Also you can try the following solution.
    1. Import the universe.
    2. Go to manage access restrictions
    3. Remove the restriction .
    4. Again create the rescrition and unchecked the " limit size of result set to"
    5. Now assign it to the unlimited results group ( this is the name of
    the group we have given to those users who should be able to retrieve
    more than X rows)
    6. Now we save the universe. (Dont export the universe).
    I hope this will help you.
    Regards,
    Sarbhjeet Kaur

  • My home button is not working sometimes and at the store they dont want to take it for repair because the problem did not show up at that time

    My home button is not working sometimes and at the store they dont want to take it for repair because the problem did not show up at that time

    When normally powering the phone, there would not be a loading bar, you would just see the Apple logo. You can try a reset of the phone, hold the sleep/wake and home buttons together until you see the Apple logo and then release. The phone will reboot.
    You can take the phone to Apple, by making an appointment at the Genius Bar to have the hardware checked. Apple handles warranty and post-warranty issues, not Verizon. Have Apple look at the hardware to see if there are any problems.

  • Ok my  ipod  keyboard is not working sometime it type and i didn't press anything i calibrated it and nothing happen but now it does not type these letters(d,x,r) help please because my cousin will be so mad

    ok my  ipod  keyboard is not working sometime it type and i didn't press anything i calibrated it and nothing happen but now it does not type these letters(d,x,r) help please because my cousin will be so mad because he is letting me use it unntil he givs it to his other cousin. Like before he gave it to me he went to the mall to get  the screen fix but i dont think it had affected it because i had it for two months now please help please i dont want him mad at me.

    Make sure the screen is clean
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar          

  • Satellite A300 - keyboard does not work sometimes

    Hi,
    the boot my Toshiba Satellite A300 Notebook the keyboard does not work sometimes?
    After a reboot everything is ok!
    Does anyone know why the keyboard does not work sometimes?
    greetings

    Hello
    Do you notice the same behavior with external keyboard? So you can check if the problem is related to internal keyboard/mainboard or something else.
    But its not easy to say something about these sometimes issues But if the keyboard would be really defective I dont see a big problem. Exchange is not so complicated and keyboards are not expensive. ;)

  • My speakers are not working sometimes after my phone got wet in rain...

    hi there please help me out i have been using iphone and my 4s got wet in rain and after that issue i got a problem that my speaker are not working for music and videos but my ringtone rings and i could hear my calls in loudspeaker and then after sometime it rectifies itself and becomes normal...... then again if i switch off and switch on i get the same problem ...... what should i do ??? is it a common problem ???? i have tried dock cleaning with qtip and kept in the rice bag........ does anyone know a solution for it???

    No other way. They will probably want to swap the phone out for you for a fee of some sort of course.  I wouldn't suggest self repair because at this point you really don't know what the issue is.  Maybe its something to do with the speaker, or maybe the logic board is damaged.
    If you think the phone might still be a little damp or wet inside, try putting it in a bowl of rice for a day.  The rice may be able to suck out the moisture which could possibly be causing an intermittent issue. 

  • My screen is not working. sometimes there is a shadow in the background

    my screen is not allowing me to slide. i cant get to settings etc. sometimes there is a shadow in the background

    Hi sag24s,
    Thanks for visiting Apple Support Communities.
    I recommend starting with the troubleshooting steps in this article if your iPod nano is not working as expected:
    iPod troubleshooting basics and service FAQ
    http://support.apple.com/kb/TS1382
    Best,
    Jeremy

  • My touchpad is not working sometimes

    sometime my touch pad is not working i updated dirver also no use.
    and my computer in warranty period my smart center also showing error for last four months.

    Hello there, It sounds like you're going to need to replace your Touchpad. Your warranty states that you can only get your Touchpad buttons replaced by an Authorized Service Provider. However, that's not the case you have. I recommend contacting the HP Support Center via phone to arrange for your notebook to be repaired. Best of wishes getting it fixed! Best Regards,Shawn

  • 2 channel oscilloscope not working on one channel, Better scope?

    My experience with Labview is limited and I am just restarting after about a year. I have searched but do not see the answer to my question.
    We upgraded from LV 7.0 to LV 7.1 and the 2 channel oscilloscope that is included as an example under V7.0 broke. I posted on the forum and was helped to download the updates to account for the legacy drivers. I did this and the scope started to work... sort of. I can't get channel 2 to work, the B channel. We have the 6036E mulitfcn board and the BNC-2120.
    Does anyone know of a better LV scope or one that is available as free or shareware. I realize this could be written, but I don't have the expertise to do so at present. Or is there a way to fix the current scope? The only alternative I seem to have is to go back to V7.0 as this is the only scope I have.
    Thank you in advance.
    Robert Lewis

    Hello Robert,
    From what I'm understanding you seem to have just installed LabVIEW 7.1 and are no longer able to load an application that you had running in LabVIEW 7.0.
    What could be happening here is you may not have the installed the drivers for the DAQ device that you are using. I would recommend looking in the folder path C:\Program Files\National Instruments\LabVIEW 7.1\vi.lib and make sure that you have folders in there called "Daq" and "DAQmx". If those folders do not exist, then download the latest version of the driver (NI-DAQ Version 7.4 for Windows 2000/NT/XP) and make sure that you enable support for LabVIEW 7.1.
    If the program you are running is a VI, then you might want to look inside the VI and see why there is the broken arrow as that would give you a better idea as to what is missing or broken.
    Regards,
    Otis
    Training and Certification
    Product Support Engineer
    National Instruments

  • Earpods not working sometimes

    The left earpod isn't working sometimes. It turns off and on every few minutes, but seems to work perfectly otherwise. I tried cleaning out the audio jack, and on different devices, but it has the same problem.

    Which iPod Nano are you using?  Are the earphones old, worn or damaged?
    The earphones must be pushed very hard into the iPod. So hard, that the white part of the plug must touch the iPod in order for the external speakers to turn off. You will hear a click.
    If you do a forum search, you will find this same solution. If it does not work, you will need to take your iPod to an Apple store or call the Apple iPod tech support if still under warranty or you have Apple Care.

  • Dependant LOV is not working sometimes???

    Hi Everyone,
    i have created one dependant LOV. Lov1(Dept) and Lov2(Eno).
    When i select any dept from first LOV it will trigger one OnChange() Event and there i am taking the dept name passing to the Employee table to filter corresponding ENOs in Lov2.
    It works sometimes fine but sometimes it shows blank records in Lov2 but in backed Lov2 is having records.
    what can be the issue?
    Thanks.

    Kumar,
    mention your jdev version and teck stack always before asking any query.
    what do you mean by 'sometimes' it is not working? in which case it's not working? when you are getting blank values in you dependent lov, have you checked that the query (for the dependent lov) is returning any record?
    ~Abhijit

Maybe you are looking for