Integrate EP iVew with weblogic, problem with IE7

hi
We are integrating EP iViews within weblogic. We offer iView urls and Weblogic embed EP iViews in iFrame, which we click the link tree, different view shows in the iFrame rightside.
The problem is: using IE6, iViews displays fine. while using IE7, first click works well in the iframe, but from the second click, iViews just jump out in a new wiindow.
any experts suggestion?
Thanks.

HI Dongkai,
Please check the browser compatibility for the portal server and apply the patches accordingly to correct your issue.
Search for the browser IE7 compatiility with portal.
Hope it helps
Regards
Arun

Similar Messages

  • Install & Config LiveCycle ES with WebLogic, Problem with Database Initialization

    I am using the configuration manager to install and config LiveCycle ES trial version. At LiveCycle Database Initialization step, when I click the "Initialize" I got this error msg:
    ALC-TTN-104-002: Could not connect to bootstrap servlet, the requested URL was not found on the server. Is Adobe LiveCycle deployed?
    But the 3 ear files were just deployed in the previous step and they are all showing under Weblogic admin console under Deployments.
    I am stuck here. Any help would be greatly appreciated.

    Hiii,
               I also got the same problem. I am tryint to install on Websphere and Oracle. I am new to this AdobeLiveCycle animal.
    Can any help me to get out of the hurdle.
    The same Error:
    ALC-TTN-104-002: Could not connect to bootstrap servlet, the requested URL was not found on the server. Is Adobe LiveCycle deployed?
    How to know if the Adobe LiveCycle is deployed or not.. Plz let me know..
    Thanks a zillion in advance..
    Regards
    Adi

  • HT1349 Hi all,I have just purchased new iphone but have difficulty in completing the itunes download with message : problem with Windows installer package. A program run as part of the setup did not finish as expected.

    Hi all,I have just purchased new iphone but have difficulty in completing the itunes download with message : problem with Windows installer package. A program run as part of the setup did not finish as expected.
    Would appreciate help...its driving me up the wall!!

    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • Why can't I receive help with my problems with Match? A service I pay for??

    Why can't I receive help with my problems with Match? A service I pay for??

    Hi,
    THis is a user help forum. If you tell us what your issues are, maybe someone can offer advice. Otherwise, read this https://www.apple.com/uk/support/itunes/itunes-match/
    JIm

  • Can some one help me with this problem with my frame???

    i have gt a veri strange problem with my program,that is teh graphic changes only when i resize the the frame,if i dun resize,it will remain the same.However what i intended is that when i click on the radio button,it will change immediately to the respective pages.A simple version of my code is below,can someone helpl me solve it??(there is 3 different class)
    import java.awt.event.*;
    import javax.swing.*;
    public class MainPg extends JFrame implements ActionListener{
         private javax.swing.JPanel jContentPane = null;
         private javax.swing.JPanel buttons = null;
         private javax.swing.JRadioButton one = null;
         private javax.swing.JRadioButton two = null;
         private javax.swing.JPanel change = null;
         public MainPg() {
              super();
              initialize();
         private void initialize() {
              this.setSize(300, 200);
              this.setContentPane(getJContentPane());
              this.setName("mainClass");
              this.setVisible(true);
         private javax.swing.JPanel getJContentPane() {
              if (jContentPane == null) {
                   jContentPane = new javax.swing.JPanel();
                   jContentPane.setLayout(new java.awt.BorderLayout());
                   jContentPane.add(getButtons(), java.awt.BorderLayout.WEST);
                   jContentPane.add(getChange(), java.awt.BorderLayout.CENTER);
              return jContentPane;
         private javax.swing.JPanel getButtons() {
              if(buttons == null) {
                   buttons = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout1 = new java.awt.GridLayout();
                   layGridLayout1.setRows(2);
                   layGridLayout1.setColumns(1);
                   ButtonGroup group=new ButtonGroup();
                   group.add(getOne());
                   group.add(getTwo());
                   buttons.setLayout(layGridLayout1);
                   buttons.add(getOne(), null);
                   buttons.add(getTwo(), null);
              return buttons;
         private javax.swing.JRadioButton getOne() {
              if(one == null) {
                   one = new javax.swing.JRadioButton();
                   one.setText("One");
                   one.setSelected(true);
                   one.addActionListener(this);
                   one.setActionCommand("one");
              return one;
         private javax.swing.JRadioButton getTwo() {
              if(two == null) {
                   two = new javax.swing.JRadioButton();
                   two.setText("Two");
                   two.addActionListener(this);
                   two.setActionCommand("two");
              return two;
         private javax.swing.JPanel getChange() {
              if(change == null) {
                   change = new javax.swing.JPanel();
              change.add(new One());
              return change;
         public static void main(String[] args){
              new MainPg();
         public void actionPerformed(ActionEvent e) {
              change.removeAll();
              if("one".equals(e.getActionCommand())){
                   change.add(new One());
              else{
                   change.add(new Two());
              change.repaint();
    import javax.swing.*;
    public class One extends JPanel {
         private javax.swing.JPanel jPanel = null;
         private javax.swing.JLabel jLabel = null;
         private javax.swing.JPanel jPanel1 = null;
         private javax.swing.JLabel jLabel1 = null;
         private javax.swing.JLabel jLabel2 = null;
         public One() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.BorderLayout());
              this.add(getJPanel(), java.awt.BorderLayout.NORTH);
              this.add(getJPanel1(), java.awt.BorderLayout.WEST);
              this.setSize(300, 200);
         * This method initializes jPanel
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel() {
              if(jPanel == null) {
                   jPanel = new javax.swing.JPanel();
                   jPanel.add(getJLabel(), null);
              return jPanel;
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("one");
              return jLabel;
         * This method initializes jPanel1
         * @return javax.swing.JPanel
         private javax.swing.JPanel getJPanel1() {
              if(jPanel1 == null) {
                   jPanel1 = new javax.swing.JPanel();
                   java.awt.GridLayout layGridLayout2 = new java.awt.GridLayout();
                   layGridLayout2.setRows(2);
                   layGridLayout2.setColumns(1);
                   jPanel1.setLayout(layGridLayout2);
                   jPanel1.add(getJLabel2(), null);
                   jPanel1.add(getJLabel1(), null);
              return jPanel1;
         * This method initializes jLabel1
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel1() {
              if(jLabel1 == null) {
                   jLabel1 = new javax.swing.JLabel();
                   jLabel1.setText("one");
              return jLabel1;
         * This method initializes jLabel2
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel2() {
              if(jLabel2 == null) {
                   jLabel2 = new javax.swing.JLabel();
                   jLabel2.setText("one");
              return jLabel2;
    import javax.swing.*;
    public class Two extends JPanel {
         private javax.swing.JLabel jLabel = null;
         public Two() {
              super();
              initialize();
         * This method initializes this
         * @return void
         private void initialize() {
              this.setLayout(new java.awt.FlowLayout());
              this.add(getJLabel(), null);
              this.setSize(300, 200);
         * This method initializes jLabel
         * @return javax.swing.JLabel
         private javax.swing.JLabel getJLabel() {
              if(jLabel == null) {
                   jLabel = new javax.swing.JLabel();
                   jLabel.setText("two");
              return jLabel;
    }

    //change.repaint();
    change.revalidate();

  • Why did my calendar view suddenly change? Using iOS 7.1 and I've been using this version for a few weeks with no problem with my calendar. Now the view has changed and I can't view a list mode without seeing the month too

    Why did my calendar view suddenly change in iCal? I've been using ios7 fôr a few weeks now with no problems. Suddenly, without any updates or anything, the calendar view changed and I can no longer view it as a list without having the entire month seen as well.

    Hey Gattypyle,
    Thanks for the question. You simply need to go back to Day/Week view, then tap the list-view icon once more.
    Calendar at a glance - iPhone
    http://help.apple.com/iphone/7/#/iph3d110f84
    View a list of events. In month view, tap to see a day’s events. In day view, Tap the to view a list of events.
    Thanks,
    Matt M.

  • Can anyone help me with a problem with Photoshop 7.0?

    I have the old Adobee Photoshop 7.0.1 and I recently ran into a problem with my Type tool that I can't figure out.
    Suddenly the type tool won't type. When I hit the type tool a LARGE cursor appears that's almost the full length of the picture I'm typing on, and it can't be scaled down, and it won't type words. After a few days of frustration I totally removed Photoshop from my system and reloaded it, but the huge cursor still exist.
    Can anyone give me an idea as to how to fix this? Please?
    DM

    Reset the type tool.
    Click on the Type tool, then click on down arrow of tool icon in upper left corner of screen.  The click on the right arrow to reveal dropdown box to reset tool.
    Earlier discussion on this: Photoshop 7.0 type tool malfunctioning

  • Can you help with technical problems with the stereo imagry option

    can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3'

    Because this forum software is so absolutely USELESS now, you don't get to see the whole of the question in this view. In the other (non-list) view it says:
    "can you help with a technical problem with the stereo imagery option ? it won't take out lead vocal in a stereo mp3"
    And the answer is that if you can't isolate the vocal in the stereo field, or it is one of these odd ones where it's used inverted polarity in different parts of the stereo signal for the same vocal, then you won't be able to. But without a sample, it's impossible to tell. If you can post a link to one, that might help. It has to be external to this site though - Adobe in their infinite wisdom don't allow the posting of audio files on their audio U2U forum. Helpful, that, isn't it?

  • New with initial problems with Dreamweaver

    I am working on a large project, think of a multimedia-pedia.
    As I wish to do it by years, from 1950 to present, with 7 sub
    pages for each, I will end up with about 500 pages to horse around
    when I am done, which I expect to take a year or so. I have put up
    the first three years to test things and see how search engines see
    it and that kind of thing. It will not be viable of course until I
    am done with 1969 and I will have something to sell, THE SIXTIES.
    If you would like to see the project:
    http://1960.yearthatwas.com
    Perhaps someone could give me a few conceptual ideas on how
    best to do this in the first place...
    I only have a day looking over Dreamweaver but I have run
    into one problem that I need resolved before I can commit to it and
    DELETE that sorryass Frontpage I been messing with for most of ten
    years. :)
    This concerns just HTML at the moment.
    I loaded the 1960 page created in FP into DW.
    I created new tables at the top, moved the content into them
    and deleted the old tables. Hopefully ridding myself of bad old FP
    code.
    There are lots of new things I am having problems with but
    most will be resolved as I move along.
    But this one is stopping me in my tracks
    Design window:
    Returns to add lines between text and text and text and jpgs
    and jpgs and jpgs often do not show properly in IE and FF, and a
    few style formats, like center show differently in IE and FF.
    I can look at the code and the added lines are there, but a
    few never show up in the review.
    I am using
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    If that has anything to do with it.
    Sure FP with WYSIWYG is flaky, but I know how to deal with
    it, do I have to learn new flakyness all over again? :)

    > Sure FP with WYSIWYG is flaky, but I know how to deal
    with it, do I have
    > to
    > learn new flakyness all over again? :)
    >
    There is no such thing as WYSIWYG on the web or in web
    authoring.
    What you need to learn all over again is HTML and CSS, as
    recommended by
    Michael. DW will be a walk in the park with even an
    introductory
    familiarity with these notions.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "rack22" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am working on a large project, think of a
    multimedia-pedia. :)
    > As I wish to do it by years, from 1950 to present, with
    7 sub pages for
    > each,
    > I will end up with about 500 pages to horse around when
    I am done, which I
    > expect to take a year or so. I have put up the first
    three years to test
    > things
    > and see how search engines see it and that kind of
    thing. It will not be
    > viable
    > of course until I am done with 1969 and I will have
    something to sell, THE
    > SIXTIES.
    >
    > If you would like to see the project:
    >
    http://1960.yearthatwas.com
    > Perhaps someone could give me a few conceptual ideas on
    how best to do
    > this in
    > the first place...
    >
    > I only have a day looking over Dreamweaver but I have
    run into one problem
    > that I need resolved before I can commit to it and
    DELETE that sorryass
    > Frontpage I been messing with for most of ten years. :)
    > This concerns just HTML at the moment.
    >
    > I loaded the 1960 page created in FP into DW.
    > I created new tables at the top, moved the content into
    them and deleted
    > the
    > old tables. Hopefully ridding myself of bad old FP code.
    > There are lots of new things I am having problems with
    but most will be
    > resolved as I move along.
    > But this one is stopping me in my tracks
    >
    > Design window:
    > Returns to add lines between text and text and text and
    jpgs and jpgs and
    > jpgs
    > often do not show properly in IE and FF, and a few style
    formats, like
    > center
    > show differently in IE and FF.
    > I can look at the code and the added lines are there,
    but a few never show
    > up
    > in the review.
    > I am using
    > <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    > If that has anything to do with it.
    >
    > Sure FP with WYSIWYG is flaky, but I know how to deal
    with it, do I have
    > to
    > learn new flakyness all over again? :)
    >
    >
    >
    >

  • IE shuts down with message problem with flash10e.ocx

    I have a dell Dimension E310. I keep it in top shape. But recently my IE(7) either freezes up and eventually kicks back to desktop or sometimes it comes with a message that IE has encounted a problem with flash10e.ocx and must shut down. I have been on the phone for the last 3 days with Dell Tech Support and they are no help. Can someone on here please help me. This is driving me insane!!

    Hi,
    It seems that you are having issue with Crystal reports Java SDK's.
    Post your question in [Crystal Reports Java SDK forum|SAP Crystal Reports, version for Eclipse;.
    That forum is monitored by qualified technicians and you will get a faster response there. Also, all Java SDK queries remain in one place and thus can be easily searched in one place.
    Thank you for your understanding,
    Amit

  • Using xml with datagrid - problem with element attributes ...

    Hi,
    When i try to set the datafield in a DataGridColumn to an
    attribute, ex.: @isPermaLink - the value is not printet in the
    datagrid?
    My code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="feedRequest.send()" layout="absolute"
    backgroundGradientColors="[#808080, #c0c0c0]">
    <mx:HTTPService id="feedRequest" url="
    http://kristianthrane.dk/feed"
    useProxy="false" />
    <mx:Panel x="10" y="10" width="475"
    title="{feedRequest.lastResult.rss.channel.title}" id="panel1"
    height="531">
    <mx:DataGrid id="dgPosts" x="20" y="20" width="100%"
    dataProvider="{feedRequest.lastResult.rss.channel.item.guid}"
    height="100%">
    <mx:columns>
    <mx:DataGridColumn headerText="Lande"
    dataField="@isPermaLink" />
    </mx:columns>
    </mx:DataGrid>
    </mx:Panel>
    </mx:Application>
    I hope someone has a tip ....
    Best regards,
    Kristian Thrane

    Hi Kristian,
    I'm with some problems, a bit alike yours, but from what I've seen, I would recomend you to see type errors...does the atribute "isPermaLink" inside the "guid" tag, or "title" tag?
    My problem is the opposite of what you have... I can place tag attributes in a datagrid, but I can't put in the same Datagrid the tag value. But I have no choice since the feed comes from a public webservice.
    My feed is:
    <search ver="3.0">
    <loc id="BRXX1094" type="1">Aveiro, Brazil</loc>
    <loc id="POXX0006" type="1">Aveiro, Portugal</loc>
    </search>
    <mx:DataGrid x="10" y="53" width="365" id="dgLocation" dataProvider="{wSearch.lastResult.loc}" itemClick="callService(event);">
    <mx:columns>
           <mx:DataGridColumn headerText="Localidade" dataField="loc"/> //This doesn't work
           <mx:DataGridColumn headerText="Referência" dataField="@id"/> //This does
    </mx:columns>
    </mx:DataGrid>
    Hope it give you any ideas.
    Beste regards
    Leonel

  • Help with certficates - problems with CSSMERR_TP_NOT_TRUSTED & validating

    I'm having problems with my machine, and it appears to be a certificate problem. The problems first started showing up with codesigning and when trying to re-install XCode. I've been trying to understand things through keychain, but I don't know if what I'm seeing is normal or not.
    I've got two copies of Apple Root CA and Apple Root Certificate Authority in my keychains (one of each in "System", one of each in "System Roots"). I have no idea if that is normal or if that part of the problem. These all show up with "This root certificate is not trusted". I'm assuming that's OK, maybe that's part of the problem? (They are all have trust set to "use system defaults").
    The Apple Worldwide Developer Relations intermediate certificate that I download from Apple doesn't appear to find or trust the Apple Root CA (in keychain, the AWWDR shows "This certificate was signed by an unknown authority, and keychain "evaluate" doesn't find a root certificate, even though Apple Root CA is in the keychain).
    Note that the AWWDR certificate says that it's issuer was Apple Root CA, serial number 25, version 3, but the Apple Root CA certificate says that it's serial number 2, version 3. I'm not sure if that makes any difference.
    The big problem is that because of what I believe to be certificate problems, I'm getting the CSSMERRTP_NOTTRUSTED error reported when I try to codesign or even when I try to install the iPhone SDK.
    I did have my motherboard replaced a couple of months back, but things were working just fine (including codesigning) after that, and suddenly stopped working (I don't know when, I just know that I noticed the problem around Oct 12).
    For what it's worth, the error when trying to install XCode (with iPhone SDK) is:
    10/16/10 12:20:02 PM Installer[1582] Failed install preflight: Error Domain=PKInstallErrorDomain Code=102 UserInfo=0x19dd99d0 "The package “iPhoneSDKTools.pkg” is untrusted." Underlying Error=(Error Domain=NSOSStatusErrorDomain Code=-2147409622 UserInfo=0x1aa22360 "The operation couldn’t be completed. CSSMERRTP_NOTTRUSTED")

    Reinstalling Snow Leopard from the original DVD seems to have cleared up the problem. My Apple Root CA certificate now shows "valid".

  • Mac Book Air with Lion problems with images?

    Since Lion was installed, does Mac Book Air show problems with moving images, as videos and Skype?

    In these forums one does not speculate about the future of Apple products.

  • WebLogic problem with Eclipse

    I installed oepe-juno-installer-12.1.1.1.0.201207241647-12.1.1a-win32.exe package. In Eclipse I added Oracle WebLogic Server to run web application. I could start WebLogic server from the Eclipse, but when I tried to stop server I always get an error:
    [Stopped, User: weblogic , failed to be authenticated.].
    What I missed in my configuration?
    Thank you
    Alex

    Hi Raj,
    Thank you for your help!
    I believe that I was able to narrow down the problem. I tested these scenarios:
    - created a new weblogic domain using configuration wizard; added server to the Eclipse; didn't add any web application to the server; started and stopped server from the eclipse without errors.
    - added simple web application (just one index.html page) to the server; started and stopped server from the eclipse without errors. In both cases I saw the message:
    Stopping WebLogic Server...
    Server "AdminServer" was force shutdown successfully ...
    - added my application; cannot stop server from the Eclipse or by running stopWebLogic.cmd script. Below is the error message I got when I ran script:
    Stopping Weblogic Server...
    Initializing WebLogic Scripting Tool (WLST) ...
    Welcome to WebLogic Server Administration Scripting Shell
    Type help() for help on available commands
    Connecting to t3://topics:7001 with userid weblogic ...
    This Exception occurred at Thu Oct 04 08:58:09 EDT 2012.
    javax.naming.AuthenticationException [Root exception is java.lang.SecurityException: User: weblogic, failed to be authenticated.]
    Problem invoking WLST - Traceback (innermost last):
    File "E:\oracle\Middleware\user_projects\domains\base_domain\shutdown.py", line 3, in ?
    File "<iostream>", line 22, in connect
    File "<iostream>", line 648, in raiseWLSTException
    WLSTException: Error occured while performing connect : User: weblogic, failed to be authenticated.
    Use dumpStack() to view the full stacktrace
    Done
    Stopping Derby Server...
    I believe that the problem might be related to the fact that our application starts several servlets and for some reason WLS cannot shutdown them.
    I will continue to investigate the issue.
    Alex

  • Weblogic: problem with JMS foreign server and Transaction

    Hello everyone,
    I am working with an enterprise application with Web Application Server Logic 10.3. L 'application uses the following components:
    1) MDB 2.0
    2) FOREIGN JMS SERVER -> WebSpereMQ
    3) EJB SESSION
    L 'MDB calls the session bean which uses in its ejb-jar.xml using a Wrapper for JMS QueueConnectionFactory with res-ref:
    <resource- ref>
    <res-ref-name> jms / iss / QCFIXP </ res-ref-name>
    <res-auth> Container </ res-auth>
    <res-sharing -scope> Shareable </ res-sharing-scope>
    <resource- ref>
    The MDB is CMT
    <transaction-type> Container </ transaction-type>
    while the session bean is BMT
    <transaction-type> Bean </ transaction-type>
    to call the QCFIXP in its transaction.
    The QCFIXP ii an XA resource
    When there is a rollback operation in SessionBean also in 'MDB
    There 'an operation setRollbackOnly:
    getMessageDrivenContext (). setRollbackOnly ();
    After this operation on the MDB I do a JNDI look up the QueueConnectionFactory but sending the message on a queue I get the following exception:
    javax.jms.JMSException: [JMSPool: 169809] An error occurred while registering the JMS connection with JTA:
    But if not using the "wrapper jms" in the session bean I did not take any exception and the application don' t have any error.
    My doubt is :
    Why if I use the JMS wrapper I get an error javax.jms.JMSException: [JMSPool: 169809] An error occurred while registering the JMS connection with JTA?
    Thanks in advance.
    Michele
    Edited by: user3501731 on 11-mag-2011 3.16

    Hi Tom,
    Thanks very much for your responses and careful analysis you've done.
    Following the source code of the MDB where error occurs.
    Marked In bold the line where the exception is thrown.
         public void onMessage(Message msg) {
    //          Utility.logger(AP.DEBUG, "Partito MDB 2");
              processa(msg);
              protected void processa(Message msg) {
              Utility.logger(
                   AP.DEBUG,
                   "IXPReceiverMDB7.processa(Message msg) partito");
              try {
                   long start = System.currentTimeMillis();
    /*               Utility.logger(
                        AP.DEBUG,
                        "IXPReceiverMDB.processa(Message msg) effettuo lookup");*/
                   ejb = myEjbLocalHome.create();
                   // individuo l'identificativo del messaggio in ricezione
                   String msgid = msg.getJMSMessageID();
                   Utility.logger(
                        AP.DEBUG,
                        "IXPReceiverMDB7.processa(Message msg) elaboro messaggio:"
                             + msgid);
                   String charset = msg.getStringProperty("JMS_IBM_Character_Set");
                   Utility.logger(
                        AP.DEBUG,
                        "IXPReceiverMDB7.processa Charset:" + charset );
                   // invoco il processo di ricezione
                   boolean commitRequested = ejb.processa(ctlReq, encoding, msg);
                   // il valore di ritorno del processo di ricezione identifica o meno
                   // la necessita' di effettuare il rollback dell'intero processo
                   if (!commitRequested) {
                        getMessageDrivenContext().setRollbackOnly();
                   if (ctlReq) {
                        Utility.logger(
                             AP.INFO,
                             "IXPReceiverMDB7.processa(Message msg) spedisco il messaggio pilota del 'cleaning' con JMSCorrelationID = '"
                                  + msgid
                                  + "'");
                        msg.setJMSCorrelationID(msgid);
                        // Viene creata la QueueConnection
                        QueueConnectionFactory factory =
                             JmsFactoryDispenser.getSingleton().getFactory();
                        QueueConnection connection = factory.createQueueConnection();
                        // Viene ottenuta la 'session'
                        QueueSession session =
                             connection.createQueueSession(
                                  false,
                                  Session.AUTO_ACKNOWLEDGE);
                        // spedisco il messaggio sulla coda abbinata al processo di 'cleaning'
                        // della coda di controllo
                        IXPMessageManager msgManager = new IXPMessageManager(session);
                        msgManager.spedisci(msg, AP.PILOTQUEUE, "J", AP.STD_MESSAGE);                    session.close();
                        connection.close();
                   long end = System.currentTimeMillis();
                   Long durata = new Long (end - start);
                   Utility.logger(
                        AP.INFO,
                        "IXPReceiverMDB7 Tempo totale elaborazione messaggio: " +
                        msgid + " " +
                        durata.toString() + " mill" );
                   Utility.logger(
                        AP.DEBUG,
                        "IXPReceiverMDB7.processa(Message msg) terminato");
              } catch (Throwable e) {
                   getMessageDrivenContext().setRollbackOnly();
                   try {
                        Utility.myExceptionHandler(
                             "E",
                             "1",
                             "4028",
                             "IXPReceiverMDB.onMessage()",
                             e);
                   } catch (Throwable ex) {
                        ex.printStackTrace();
    Thanks in advance.
    Edited by: serpichetto on 16-mag-2011 1.24

Maybe you are looking for

  • Cannot edit Infoset in BI (7.0)

    For some reason, I am just not able to see the add infoprovider icon when I am in edit mode of an infoset in BI (7.0 version). Am I missing something here? Thanks!

  • Can not login to ProSite

    I have a Creative Cloud subscription and I created a “Project” on the Behance site and when I attempted to create my own ProSite website, I received multiple error messages, so I requested assistance from the Behance/ProSite Customer Support.  After

  • ITunes no longer shows my iPod classic.  do I show it in iTunes and manage it?

    I have just upgraded to Yosemite and the latest iTunes. But my iPod Classic is no longer visible in iTunes

  • Itunes + Windows Vista 64bits = ERROR

    Hi! I'm having problems to intall the *64bits version* of itunes. During installation, Windows shows an error of incompatibility. How can I resolve this? I need it to sync my itouch 3g. Thanks!

  • STMS distribution error - timeout during allocate / CPIC-CALL: 'ThSAPCMRCV'

    Hello All i am trying to confugreu STMS but i am facing this error when i am tryin to distribute the same, System   EC2              Command  TMS_PM_DISTRIBUTE_PROFILE Client   000              Service  tp Profile Service User     TMSADM           St