Sending message not working anymore in WL 12 (InvalidDestinationException)

Hello,
after installing a fresh WebLogic 12 sending JMS messages from a WebService doesn't work anymore. Although I'm using only WebLogic JMS stuff (no foreign providers) I receive the following exception upon messageProducer creation:
weblogic.jms.common.InvalidDestinationException: [JMSClientExceptions:055142]Foreign destination, SystemModule-MyApp!Queue-MyApp
     at weblogic.jms.common.Destination.checkDestinationType(Destination.java:105)
     at weblogic.jms.client.JMSSession.setupJMSProducer(JMSSession.java:2830)
     at weblogic.jms.client.JMSSession.createProducer(JMSSession.java:2858)
     at weblogic.jms.client.JMSSession.createProducer(JMSSession.java:2822)
     at weblogic.jms.client.WLSessionImpl.createProducer(WLSessionImpl.java:827)
at the following code
connection = connectionFactory.createConnection();
session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
messageProducer = session.createProducer(queue);
At first I thought that there's some config mess which might have happened during JMS ConnectionFactory and Queue creation etc. in WL_Server. But after cross-checking it I've even compared the complete JMS-relevant WL-setup (in the /console) with another WebLogic 11 instance where the stuff is working and found no differences: The only destination used is a regular resource of type "Queue" at the SystemModule and not of type "Foreign Server". So I wonder why I receive a foreign destination exception when no foreign JMS stuff is used...
Do you have any ideas or tips where to investigate further? The only difference is that the codebase tested with WebLogic 12 uses CDI (coming with JavaEE 6) and the WebLogic 11 doesn't use CDI. In case this info is needed: the code trying to send the message to the queue is a simple @WebService.
Thanks in advance.

Thanks for your reply Dongbo!
The point regarding the classname of the Queue object was quite good! Its a org.jboss.weldx.jms.Destination$Queue$1555984123$Proxy$_$$_Weld$Proxy$ class. So this looks to me as if WebLogic uses JBoss Weld internally (for CDI) ??
The CDI-based injection of the Queue object from the JNDI is
@Produces
@MyAppTest
@Resource(name="jms/Queue-MyApp", type=Queue.class)
private Queue queue;
An the JNDI view of jms/Queue-MyApp shows
Binding Name:     jms.Queue-MyApp     
Class:     weblogic.jms.common.DestinationImpl     
toString Results:     SystemModule-MyApp!Queue-MyApp
Attached the complete stack trace:
weblogic.jms.common.InvalidDestinationException: [JMSClientExceptions:055142]Foreign destination, SystemModule-MyApp!Queue-MyApp
     at weblogic.jms.common.Destination.checkDestinationType(Destination.java:105)
     at weblogic.jms.client.JMSSession.setupJMSProducer(JMSSession.java:2830)
     at weblogic.jms.client.JMSSession.createProducer(JMSSession.java:2858)
     at weblogic.jms.client.JMSSession.createProducer(JMSSession.java:2822)
     at weblogic.jms.client.WLSessionImpl.createProducer(WLSessionImpl.java:827)
     at com.example.myapp.Demo(DemoServiceImpl.java:47)
     at com.example.myapp.Demo(DemoServiceImpl.java:82)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:92)
     at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:74)
     at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:149)
     at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:95)
     at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:892)
     at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:841)
     at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:804)
     at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:706)
     at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:430)
     at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:640)
     at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:265)
     at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:163)
     at weblogic.wsee.jaxws.WLSServletAdapter.handle(WLSServletAdapter.java:171)
     at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:708)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
     at weblogic.wsee.util.ServerSecurityHelper.authenticatedInvoke(ServerSecurityHelper.java:103)
     at weblogic.wsee.jaxws.HttpServletAdapter$3.run(HttpServletAdapter.java:311)
     at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:336)
     at weblogic.wsee.jaxws.JAXWSServlet.doRequest(JAXWSServlet.java:99)
     at weblogic.servlet.http.AbstractAsyncServlet.service(AbstractAsyncServlet.java:99)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:844)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:242)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:216)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:132)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:352)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:74)
     at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:74)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:74)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3288)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3254)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
     at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
     at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2163)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2089)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2074)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1512)
     at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:254)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)

Similar Messages

  • SAP PI FTP sender adapter not working with SAP ECC over Itanium

    Hi,
    We have been running normally SAP PI 7.0 SP14 with no issue for a while.
    We are now in the process of migrate the SAP ECC system from PA risc to IA platform. We are performing some tests between SAP PI and SAP ECC to check that the platform migration is not affecting us in any way and we have found that FTP adapter sender is not working anymore (receiver is working as usual).
    We place some files in the new ECC system and when PI goes to retreive the files it is like it can not read anything. It gives no error but it does not pick any file. This is not happening with the old platform.
    Does anyone have any idea?
    Thanks a lot for your help
    Diana

    Hi,
    I am using FTP connection and for the receiver it is working fine.
    Thanks
    Diana

  • After upgrading to 10.7.5 some of my AU plugins can not be validated in Logic pro. (I got error message "Remove property listener". I can not work anymore. What should I do?

    After upgrading to 10.7.5 some of my AU plugins can not be validated in Logic pro. (I got error message "Remove property listener". I can not work anymore. What should I do?
    VIBAC

    I downloaded and installed
    OS X Lion 10.7.5 Supplemental Update
    and that solved my problem completely. (368 AU plugins now works!)

  • Both cameras on my iPod touch generation 4 will not work anymore. Is there a way I can send it back to get it fixed? Thank you ..

    Both cameras (front/back) will not work anymore. I would tap on the camera app, and the camera shutters would stay closed for a while and when it finally opens, it leaves a full blank screen. Is there a way I could send it in and get that repaired?

    GEESAR wrote:
    hi there
    is there anyway i can use the unlimited data i have from my mobile network provider (o2)  on this i pod touch 4 generation the latest model  NO.
    and does the sim from my mobile network o2 be used in the ipod touch4 to use the unlimited minuites i have from my mobile network provider  NO
    if not then how do i use the unlimited data ive been given through my mobile network provider please tell me most kindly  Purchase a mobile WiFi hotspot (Sometimes referred to as a MyFi), or have that service added to your cell phone.
       geeeeesar also how does this ipod touch4  pick up the  wifi free of charge is this possible or do you have to pay for limited data to access internet Your iPod can connect to any unsecured WiFi network that you are currently within range of.  These networks can be found at your local library, some city/county government buildings, doctor's offices, Denny's, IHOP, Starbuck's, Home Depot, Lowes, Best Buy, and other merchants.  Your iPod can connect to any secured WiFi network that you are within range of and that you have the password for. 
    thanks  can i pod touch 4 generation download movies too  please help thank u very much....  Yes.  If your iPod has a WiFi connection and you have an account with a service like NetFlix....

  • Hi. Unfortunately my ethernet card was not working anymore. This is the message "This computer does not appear to have any PCI Ethernet card. How can I fix it?

    Hi. Unfortunately my ethernet card was not working anymore. This is the message "This computer does not appear to have any PCI Ethernet card. How can I fix it?

    i would try an SMC reset, the following article tells how to do this:
    http://support.apple.com/kb/HT3964
    if it still gives that message, you need to take it to apple store or apple service provider to have a new card installed. the apple site gives listings of providers and stores in your area:
    https://locate.apple.com

  • I am using Windows 7 64-bit. After installing Photoshop Elements 13 and trying to run it I always get the message: Photoshop does not work anymore. And it doesn't.

    I am using Windows 7 64-bit. After installing Photoshop Elements 13 and trying to run it I always get the message: Photoshop does not work anymore. And it doesn't.

    Hi Hardy Tasso,
    Are you seeing this problem since first launch of PSE13 after installation or recently?
    Please try:
    Keep Ctrl + Alt + Shift keys pressed while launching PSE13 Editor and click OK on the dialog that comes next.
    Thanks,
    Anwesha

  • My Creative Cloud does not work anymore. When I try to reinstall it I receive the message "AAM cannot initialise". I have tried all the instructions but it still does not work. Robert

    My Creative Cloud does not work anymore. When I try to reinstall it I receive the message "AAM cannot initialise". I have tried all the instructions but it still does not work. Robert

    Try perform below steps.
    Open task manager by pressing Ctrl + Shift + Esc  keys. Click on more details if the option available.
    Then end all Adobe related processes, including Creative Cloud and Coresync ( if running )
    Then hold windows key on your keyboard and Press R key.
    It will open Run window
    In Run window, type Appdata and click on Ok
    Open Local > Adobe folders
    Delete AAMUpdater and OOBE folders
    Then navigate to C:\Program Files (x86)\Common Files\Adobe
    Delete Adobe Application Manager and OOBE folders
    Go back to Program Files (x86) and Open Adobe folder
    Try deleting Adobe Creative Cloud folder, if it is not allowing rename it to Adobe Creative Cloudold
    Download and install Creative Cloud App from below link
    https://creative.adobe.com/products/download/creative-cloud
    Then check

  • Encore CS6 does not start / freezes - Message: Encore does not work anymore (Win 8.1)

    Hello,
    Encore CS6 does not work. When I launch the Programm a message appears "Encore does not work anymore" and I can only choose close or debug.
    How can I solve this error?
    By the way it is really early to stop the development of an DVD authoring software!
    Thanks
    Michael

    Did EncoreCS6 work at one time, or is this a new install and it has never worked? If it worked before... what changed?
    With Windows, an update will OFTEN/SOMETIMES cause a problem with the graphics adapter driver
    What is your exact brand/model graphics adapter (ATI or nVidia or ???)
    What is your exact graphics adapter driver version?
    Have you gone to the vendor web site to check for a newer driver?
    For Windows, do NOT rely on Windows Update to have current driver information
    -you need to go direct to the vendor web site and check updates for yourself
    ATI Driver Autodetect http://support.amd.com/en-us/download/auto-detect-tool
    nVidia Driver Downloads http://www.nvidia.com/Download/index.aspx?lang=en-us

  • Hello! I have installed Photoshop on PC WIN 7 64bit. When I store first time a Photoshop docuument, it works fine - after re-opening and doing changes I trying again to store it - it does not work anymore! First it does not accept the name (message "It ca

    Hello! I have installed Photoshop on PC WIN 7 64bit. When I store first time a Photoshop docuument, it works fine - after re-opening and doing changes I trying again to store it - it does not work anymore! First it does not accept the name (message "It can not be stored because the nam is invalid" With 2. trial it tells me that the data is blocked and I don't have the rights - and I should chenge them. But I am working as the Admin on my PC - and each trial to change the rights of the data is as well not possible because of missing rights - even I am Admin! I must always store the data with a new name, then it works, but I also cannot remove the old datas or shift them into the waste paper - because of no rights! -- sorry for not perfect english, I am German native speaker! Tahnks a lot for help!

    Hi,
    I am using a Nvidia 4200M adapter in my Laptop, Driver 266.96, Direct X 11
    In my desktop I am using an ATI XFX 6950, latest revision drivers (I am not at home right now so I cant get that info).
    The issue I did describe above, but it was a long explanation.
    In some flash games the game files load initially and get as far as the "click to start" button. Then the flash area usually goes either all white or all black (usually depending on the falsh game default background color) and then it stays that color. Cant see anything after hitting start (usually most games have an intro video or animation before the game starts, but I cant see any of it.
    For the very few games that do start, the flash game or application does not seem to work correctly in that when the rare game starts, it wont save any game files or save files to the pc and so if I exit the game (navigate away to another page or close browser) and then later come back, even though I click the option to save games (and ensure that the flash application slider shows it can save files and lots of space) it does not save and I have to start from the beginning all the time.
    More explanation I gave above.

  • The earphone port on my ipod touch 4 does not work anymore, will I need to send it in for repairs?

    The earphone port on my ipod touch 4 does not work anymore, will I need to send it in for repairs?

    Apple will exchange your Pod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    A third-party place like this one is less expensive.  Google for more places.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • Why is Adobe SendNow not working anymore (after using Adobe Send)?

    Why is Adobe SendNow not working anymore (after using Adobe Send)?
    Can this be fixed?

    We are concerned that you did not have a positive experience with Adobe Send. Can you share more information about your workflow so we can try to diagnose the problem?
    If you can provide some context on whether you were using the Adobe Send website or the integration with Adobe Reader? Can you share some details on the types of files and approximate sizes you were trying to send to your clients?

  • Why do hyperlinks not work anymore

    I use Adobe XI reader.
    I have in one PDF several hyperlinks to mp3 files in the same directory as the PDF and one hyperlink to a Youtube URL.
    They all used to work.
    The mp3 hyperlinks called the Windows Media Player.
    The YouTube URL calls the browser.
    But now, the mp3 hyperlinks do not work anymore.
    The Youtube URL still works.
    The mp3 hyperlinks appear to be correct.
    I have downloaded Adobe Reader XI again but that makes no difference.
    Please Help!
    Jan van Puffelen

    *     I downloaded both files and moved them to My Documents.
    *     I tried to start the mp3 from the pdf
    *     It did not work and gave the error message after the initial
    warning:
    *     Cannot find the file C:\440Hz_44100Hz_16bit_05sec.mp3
    *     I experimented a bit and I only got it to work when I moved the mp3
    to C:\Documents and Settings.
    *     Then the example works both with Safe Mode switched off as well as
    on.
    I created a test pdf as well, called CD1.pdf
    In my case the hyperlink in the PDF points to:
    file:///C|Documents and Settings/Jan/Mijn Documenten/Spaans, Maçonnieke
    Muziek, CD1.mp3
    Both pdf and mp3 are in the same directory.
    If Safe Mode is switched on, it does not work at all without any error
    message
    If Safe Mode is switched off, it works, however, it does not call the
    Windows Media Player but the Browser.
    In the CD1.doc version the hyperlink works correctly, it calls the Windows
    Media Player
    Can I send you my test doc, pdf en mp3?

  • A mailto-link does not work anymore in Acrobat Reader XI

    A mailto-link, i.e. mailto:[email address]?subject=[subject] in a PDF does not work anymore as it should be. Het whole mailto string is send to the TO-line in Outlook 2010.
    ==>

    Hmm... worked on 10.8 doesn't work on 10.9... that would seem to answer your question... you upgraded from something that does work, to something that doesn't
    Go to http://forums.adobe.com/community/premiere and, in the area just under Ask a Question, type in
    mavericks
    You may now read all the previous discussions on this subject... be sure to click the See More Results at the bottom of the initial, short list if the initial list does not answer your question
    I am Windows so did not bookmark the messages, but I have seen SOME message threads with SOME solutions for SOME mavericks problems

  • Fingerprin​t logon before OS is not working anymore

    Hi,
    with one of the last reboots fingerprint authentication before OS boots up is not working anymore. What I've changed I can't say, because I really seldom reboots my win7x64 at my T500 - its possible there where ThinkVantage * updates before.
    I wouldn't like to tell what I've already tried to don't fix your thinking direction. I uses passwords for entering BIOS, boot up the machine, every of the two sata devices (replaced optical drive) so I now will be asked to enter three passwords before windows starts. To log on windows the fingerprint reader workes fine also for using ThinkVantage password application.
    What information else do you need to give me a hint what to do/try.
    Regards
      Ronny

    hey rseffner,
    uninstall the password and fingerprint software.
    see if it still ask you for three passwords.
    then go to our support site via http://support.lenovo.com , download the latest password and fingerprint software and install it.
    try again
    WW Social Media
    Important Note: If you need help, post your question in the forum, and include your system type, model number and OS. Do not post your serial number.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    Follow @LenovoForums on Twitter!
    Have you checked out the Community Knowledgebase yet?!
    How to send a private message? --> Check out this article.

  • Satellite U400 - the webcam does not work anymore

    Hello guys here is my sudden probloema!
    About a year ago I purchased a laptop
    TOSHIBA - Satellite U400
    with s.o. WinVista 32bit and with integrated webcam chicony etc. ....
    For a year, everything worked correctly, but for some days now, the webcam does not work anymore.
    As soon as I try to open it, a message of management software cam that says "Webcam driver open fail, please restart or computer room"
    I tried to do it all: aggioronato and downloaded the drivers from toshiba, uninstalled the program and re installed the webcam ....! updated bios notebook ....! useless!
    the strange thing .. well that going into device manager ... the webcam is not there ....! but if the launch seems to open just then check quell caz ... Warning!!
    Gan you help me?
    Graziee

    Are you familiar and comfortable with LINUX LIVE bootable discs to load an alternative operating system with unobtrusive but extensive Toshiba device support so you can determine if your webcam hardware is ruined or if the problem is software and possibly solved reinstalling Windows ?
    At this point, you're pondering less time consuming but more expensive choices such as buying another web cam, or another computer and you might be temporarily borrowing someone else's web cam / using a non preferred spare web cam that isn't optimal for your needs.
    Continuously downloading software, registry cleaners, and repeatedly reinstalling drivers will eventually ruin your Windows installation and consume more time than you've wasted so far and still doesn't guarantee to fix your malfunction.

Maybe you are looking for

  • MAIN_SHDRUN/ACT_UPG error

    Hello Expert,       we are upgrade our develop server from ERP 6.0 to ERP 6.0 EHP 7. we are use SUM tool SUM10SP09 in step 5.5 preprocessing - MAIN_SHDRUN/ACT_UPG. we are receiving the following error:- Checks after phase MAIN_SHDRUN/ACT_UPG were neg

  • F110 - Payment Run OLD LOG

    Hello everyone! At my system, certain Payment Proposal canceled when the user tried to Create the payment execution. But later, this user could execute this payment successfully. At the log, there are just the messages of the latest run. Can i get at

  • Dictation issues on iPad

    I just recently have been trying to use dictation on my iPad for the past two weeks. It's been working fine up until recently. Everything was working every single type of function from capitalization two parentheses in quotations. Now however capital

  • JSP page communicating with a MySQL db throw a Glassfih RESTful web service

    Hello; I am en newbie in servlet/JSP stuffs, and as I said in the subject, i'm looking for the best way to make my JSP pages communicate with my db. My application already consists in a RESTful web service that, just for the record, communicates with

  • IPhone 3 trouble starting.

    My iPhone 3g is not starting, when i turn on it asks to connect with iTunes but is not able to connect with iTunes? any ideas?