Multiple screens issue on App Server 10.1.2.3

Hi, I'm having an issue with having multiple screen open within the same session on App Server 10g.
The first screen opens and operates just fine.
When I open the 2nd screen, I have some poplists that get built when it opens, but it doesn't seem to populate them. If I close my first screen and this one, then open this screen, it works fine. I do have some "Global" variables that we're using that may be causing the issue. THey worked fine in the days of 6i but conflicting now in 10g when multiple screens are opened.
I was wondering if there was a solution to get around this, or there is a config file that I could change that would resolve this.
Any help is much appreciated. Thank you in advance.
Chris

Hi,
We have just run it through with the same patchset for the installer. This is a clean install of Win OS and installed the 10g database first.
We receive the following error when installing the App Server (Forms & Reports)
*"Output generated from configuration assistant "Application Server Control Configuration Assistant":*
*Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2*
*Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.*
*http://200810G.[hostname]:18100/emd/console/aboutApplication*
*Starting Oracle Enterprise Manager 10g Application Server Control ..The Oracleoracleas1ASControl service is starting*
*The Oracleoracleas1ASControl service could not be started.*
*A service specific error occurred: 2.*
*More help is available by typing NET HELPMSG 3547.*
*Configuration assistant "Application Server Control Configuration Assistant" failed"*
When we type NET HELPMSG 3547 (as suggested), we receive the following error message:
*"A service specifig error occurred: ***."*
Are you running Windows Server 2008 (first release) or Windows Server 2008 R2?
Any suggestions? I will try installing the App Server without installing the database now to see if that makes any difference.
Thanks

Similar Messages

  • Welcome-file issue in App Server 8.2

    Hello all,
    can you explain some strange behaviour of Application Server?
    I have to set some page as a starting page. We all know that i have to put
    <welcome-file-list>
    <welcome-file>MyStartPage.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    to web.xml.
    So, my app does not include servlets, and i have web.xml as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <welcome-file-list>
    <welcome-file>MyStartPage.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    BUT: this works in Tomcat, but does NOT work in Sun App Server 8.2.
    In SUN App server, i have to add
    <servlet>
    <servlet-name>Fake servlet</servlet-name>
    <jsp-file>MyStartPage.jsp</jsp-file>
    </servlet>
    to web.xml (obviously, before welcome-file-list element).
    IMHO, it's an issue... Why do i have to use some fake declaration?
    Can someone test this curious issue against other App servers?
    Thanks in advance, Vad.

    Hi,
    I am facing the same issue. I did not verify with Tomcat but with an earlier version - 1.4.01
    It used to work earlier with J2ee sdk 1.4.01. I installed the J2ee sdk 1.4.03 after uninstalling 1.4.01. I had a bunch of JSPs, and a web.xml specifying the welcome page. It used to work fine. Now after 1.4.03, (server 8.2), the welcome page does not work. Instead it displays the list of JSPs on the page. There have been no modifications to the web.xml. The 8.2 has a bug here.

  • Class not Found issue in App Server

    Hi
    I have a problem in deploying a ear file in the WSAD 4.0. It gives the following error
    [04.10.07 22:22:25:156 GMT+05:30] f6e78a0 SystemOut U Compiling content of ejbModule/basfcorp/emcp/bo/ejb/login
    [04.10.07 22:22:25:203 GMT+05:30] f6e78a0 SystemOut U (1 problem found) Copying all resources on the classpath
    [04.10.07 22:22:25:312 GMT+05:30] f6e78a0 SystemOut U (1 problem found) Build done
    [04.10.07 22:22:25:312 GMT+05:30] f6e78a0 SystemOut U Java build completed
    [04.10.07 22:22:25:312 GMT+05:30] f6e78a0 SystemOut U Invoking Validation on /Deployed_EmcpEJB.jar.
    [04.10.07 22:22:25:484 GMT+05:30] f6e78a0 SystemOut U ejbModule/basfcorp/emcp/bo/ejb/login/EJSRemoteStatelessMCP_Login.java(-1): This compilation unit indirectly references the missing type basfcorp.emcp.util.common.MCP_Exception (typically some required class file is referencing a type outside the classpath)
    [04.10.07 22:22:25:562 GMT+05:30] f6e78a0 SystemOut U Shutting down workbench.
    [04.10.07 22:22:26:359 GMT+05:30] f6e78a0 SystemOut U Execution Halted: Compilation Errors Reported
    [04.10.07 22:22:26:359 GMT+05:30] f6e78a0 SystemOut U 1 Errors, 0 Warnings, 0 Informational Messages
    Does any of you guys have an idea what would be the solution for this error? This seems to be specific to this version of the App Server and Development Environment. The MCP_Exception .java whcih the application says is missing was writtem by us and it was working fine if we create the jar and ear files in the same machine. But when we try to deploy the ear file in a seperate server we get into this error. Your assistance is much appreciated
    Regards
    SK

    So, does the MCP_Exception get packed along with the ear? Sounds to me like maybe you have it in some common or shared part of the developement classpath, and don't move it to the application's classpath when deploying. Peek through the ear and make sure that the MXP_Exception.class file is in the proper pacakage, in the ear somewhere.

  • Generated WSDL Issue - Glassfish App Server

    Hi,
    I am at a loss as to how to modify the generated WSDL and associated schema for a webservice I am deploying to Glassfish V2 Milestone 4 - Build 33. I'm using EJB 3.0 and the entity beans I developed have one to many and many to one references to each other:
    An OverrideVersion contains a reference to the OverrideRequest it belongs to. There can be numerous OverrideVersions. I've tested the database code extensively and there is no problem performing saves and retrieves. The following is taken from the OverrideVersion class:
    @ManyToOne
    @JoinColumn(name="request", referencedColumnName="pricingRef")
    private OverrideRequest request;and this is from the OverrideRequest class:
    @OneToMany(mappedBy="request", cascade=CascadeType.ALL,
              fetch = FetchType.EAGER)
    private Set<OverrideVersion> overrideVersionCollection;The problem is that if I leave the app server to generate the WSDL these references are generated, which I don't want - I only want the Verson to reference :
    <xs:complexType name="overrideVersion">
      <xs:sequence>
        <xs:element name="request" type="tns:overrideRequest" minOccurs="0"/>
      </xs:sequence>
    </xs:complexType>and<xs:complexType name="overrideRequest">
      <xs:sequence>
        <xs:element name="overrideVersionCollection" type="tns:overrideVersion" nillable="true" minOccurs="0" maxOccurs="unbounded"/>
      </xs:sequence>
    </xs:complexType>I need to be able to change the WSDL as I am getting the following error on retrieves:
    com.sun.istack.SAXException2: A cycle is detected in the object graph. This will cause infinitely deep XML:I followed the advice in http://forum.java.sun.com/thread.jspa?threadID=725485&messageID=4184020
    "For now, the way is to do this manually : stop the app server, edit the as_install_dir/domains/domain1/generated/xml/j2ee-{apps|modules}/{your-app}/{META|WEB}-INF/wsdl/XXXXX.wsdl, and restart the app server"
    but no matter what I do the changes I make to the generated WSDL and schema files aren't refelected in the actual WSDL at the ?WSDL address.
    So I decided to take the generated WSDL file, modify it (remove the cyclic references), and drop it in my applications META-INF/wsdl directory (along with the previously generated schema) and specify the @WebService wsdlLocation attribute in my stateless session bean:
    @WebService(serviceName="PricingService",
              portName="PricingServicePort",
              wsdlLocation="META-INF/wsdl/PricingService.wsdl")But after deployment I try to access the WSDL (at the same address as the previous generated WSDL http://localhost:8080/PricingService/PricingService?wsdl) and get a plain white HTML page with: Invalid wsdl request http://localhost:8080/PricingService/PricingServiceI haven't been able to come up with a solution to this problem either.
    This is doing my head in so any help would be greatly appreciated.
    Thanks.

    Hi Arvind,
    First thing u shud do is..for invoking a webservice through XI do not import all the WSDLs ....Import only the WSDL under the porttypes....
    Port types defines the interface in XI...Once u import them....Then check the msg type.....As per u info u shud see them as
    getAuthorizationIn_doc---request
    getAuthorizationOut_doc---Response..
    If u want something more plz ask
    Regards,
    AshwinM
    Note:- Reward If helpful

  • The annoying login screen after rebooting App server

    Is there a way to disable to login prompt after reboot the App server? IE offers
    to remember it, but it doesn't. Thanks for any info!
    Dinesh

    Hi,
    I have answered a similar question in How to logout an user when the browser is closed?
    Thanks,
    Sharmila

  • Office web apps server (2013) certificate issue

    If the name of the farm is different from the name of the individual office web apps server machine is there any way to deploy office web apps server with a single domain SSL certificate? 
    My office web apps server is working, but reporting itself unhealthy, apparently due to the fact that the SSL cert is for the name of the farm and that is different from the name of the machine. 
    Errors are 2004, 1004, 2156, 1156, "could not establish trust relationship for the SSL/TLS secure channel"
    Going to the farm's discovery URL in the browser works fine, but going to the machine name (plus /hosting/discovery) gives an SSL error because the name of the farm is not the same as the name of the machine. 
    Is there any way to make it use the farm's URL instead of the machine's URL in its own internal watchdog operations? Or any way to make it use a self signed certificate on the machine's URL for it's own health checks and still use the legitimate purchased
    SSL cert for user access? Or any other way you can think of to use a $5.99/yr single domain certificate instead of a $89.99/yr multiple domain certificate? 
    Bill Coulter

    I am experiencing this same issue.  The OWA server has sp1 installed.  In the OWA event logs I am getting health fails for 2 events and as best I can tell it seems to be related to this issue.
    We are also using a single godaddy certificate with a non machine name FQDN.  Both internal and external url's of the OWA farm are set to this same name.
    The problem only seems to occur with the 'Proofing Watchdog' (See events below).
    Has anyone got any update on whether this is supposed to be fixed ?
    <?xml version="1.0" encoding="utf-16"?>
    <HealthReport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <HealthMessage>ProofingWatchdog reported status for Proofing in category 'PositiveWeb'. Reported status: Spelling attempt exception for "good": System.Net.WebException: The underlying connection was closed: Could not establish
    trust relationship for the SSL/TLS secure channel. ---&gt; System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.
    <?xml version="1.0" encoding="utf-16"?>
    <HealthReport xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <HealthMessage>ProofingWatchdog reported status for Proofing in category 'NegativeWeb'. Reported status: Spelling attempt exception for "baad": System.Net.WebException: The underlying connection was closed: Could not establish
    trust relationship for the SSL/TLS secure channel. ---&gt; System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.
       at System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception 

  • SharePoint 2013 Anonymous (public) site and Office Web Apps Server 2013 issue with download.aspx

    Our organization has a public facing anonymous site in SharePoint 2013 which allows access to documents (docx) in a library.  ViewFormsLockdown is activated as we present the documents via CQWP / custom template.  We are combating the usual
    issue of multiple login prompts when using Internet Explorer when a user accesses said document.  We also have tried  using the Word Viewer (view only mode) from Office Web Apps Server 2013 which works well, but ...
    the problem stems from the fact that users can go the file menu from the word view and choose to download the document (which is what we want),  unfortunately it looks like the link redirects via /_layouts/15/download.aspx which also presents a login
    prompt. Much has been written out there about doing direct links for documents via /_layouts/download.aspx to address multiple login prompts when the document is opening in word (from IE).
    I've tried nearly every combination of recommendations (disabling client integration, browser file handling (permissive/strict), ViewFormsLockdown feature, web.config modifications with options and propfind verbs and more) all to varying levels of success,
    but never totally getting rid of the prompt.  It has been stated that because the downloads.aspx inherits from Microsoft.SharePoint.ApplicationPages.Download this will not allow anonymous access.  We really want to use the word view from the Office
    web app and have the file download functionality work from the menu there ... can anyone suggest an alternate fix?  I might be wishing but will appreciate any guidance offered ...
    cheers,
    Dean
    some reference links (but not all) for various things we've tried:
    http://mohitvash.wordpress.com/2013/06/18/sharepoint-download-a-file-programatically/
    http://blog.sharedove.com/adisjugo/index.php/2012/09/29/open-sharepoint-files-in-edit-mode-from-client-applications-and-not-read-only/
    http://stackoverflow.com/questions/375390/office-documents-prompt-for-login-in-anonymous-sharepoint-site
    http://yalla.itgroove.net/tag/anonymous-access/
    Glifnard

    I'm glad to here that the problem has been fixed. Thank you for sharing your experience here, it will be helpful to other community members who have similar questions.
    Cheers,
    Steve Fan
    TechNet Community Support

  • We run an iMac 3.4 GHz I7 for our church worship service; we haven't upgraded to Mavericks because we heard about issues with multiple screens crashing.  Has this issue been resolved?  Thank you!

    We run an iMac 3.4 GHz I7 in our church worship service; we have front screens and a stage display monitor ; we haven't upgraded to Mavericks because we heard about issues with multiple screens crashing.  Has this issue been resolved?  Now that we are 2 upgrades behind, I'm getting little concerned.  Thank you!

    Oh, well that was a whole other kettle of fish:
    Oh the G4 I attempted to install iLife '08 before Lepoard was available. About the only thing that installed cleanly was iPhoto. I ended up reinstalling everything back to iLife '06, and then upgrading back to the current stable version of the iLife '06 version. I didn't attempt a reinstall until after I upgraded to Leopard.
    When I did reinstall, I made a iLife '06 folder, copied all iLife apps into it, and upgraded. Seemed to work, except for the part where iMovie gets left behind and iDVD is only mostly functional.
    When I installed on the other 2 machines, it was after installing Leopard and all upgrades. On those 2 machines, I didn't bother with the copy, I just moved everything to the iLife '06 folder I created, and did a fresh install.
    I didn't have to do anything with the iPhoto Libraries, that I can recall.
    I always do an upgrade, never an archive and install. I've never had a problem with this back to 10.1 or 10.2.

  • SP2013: Scaling search with multiple app server

    Hi Team,
    I am scaling a new SP environment with multiple App Server.
    I have used AutoSPINstaller to install SP2013 and Search. My search components are spread across all servers. All Search components on all servers and I have a blank publishing site as part of my content source.
    My issue is when i start full/Incremental crawl. It keeps on crawling for the whole day and do not produce any crawl error neither it stops. We waited for even 2 das but the crawl kept on going on.
    Any help will be really appreciated.
    Thanks Ba$va

    Hi Basva ,
    Follow these steps (one at the time) to reset the Content Source crawl:
    Start -> Run -> Services.msc -> Restart the “SharePoint Server Search 15”.
    Make sure  the Application Server Administration Service Timer Job working .
    Navigate to Central Administration-> Manage service application->
    Search Service Application,
    Reset Index and see if that fixes the problems.
    Go into the Services.msc  on each server and change the "RECOVERY" method of the “SharePoint Server Search 15” from "FIRST FAILURE"  to "TAKE NO ACTION" so that the service did not restart before
    all the servers had their "SharePoint Server Search 14" stopped.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Office Web Apps Server 2013 issue

    Dear All,
    I am encounter problem when I try to open document from my browser. Prompt message will pop-out when it try to preview a document:
    "sorry, there was a problem and we can't open this document. If this happens again, try opening the document in Microsoft word"
    When I check in Event viewer, there is an error display:
    "Could not contact WOPI End Point. Error details - 'Unauthorized url - http:bla.bla.bla....."
    Kindly advise on how should I resolve this issue.
    Application Note:
    1. Windows OS: Windows Server 2012 R2
    2. Office Web Server 2012 SP1
    3. SharePoint Server 2013
    Thank you.

    Verify if you have configured correctly by checking the following post
    https://technet.microsoft.com/en-us/library/ff431687.aspx
    In case everything is correct, Please check the following post for similar issue
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/f7be5f88-8c98-464e-8596-60956b5e98fd/sharepoint-2013-office-web-apps-problem-unable-to-openviewedit?forum=sharepointgeneral.
    http://blogs.technet.com/b/justin_gao/archive/2014/12/19/troubleshooting-error-event-id-8115-when-you-install-office-web-apps-server-2013-on-windows-server-2012-r2.aspx
    Note:Check with non Farmadmin account
    Please Mark it as answer if this reply helps you in resolving the issue,It will help other users facing similar problem

  • When i try to install iPlanet App Server on NT, I do not get screen to enter license key valid for evaluation. --- " cache File Read error"

    When i try to install iPlanet App Server on NT, I do not get screen to enter license key valid for evaluation.
    Also during installation screens an error window is displayed saying "cache File Read error -- Could not read ProductKey entry from the cache file "

    Hi,
    I also get the following message:
    "Could not read ProductKey entry from the cache file"
    I have no idea how to provide the installation software with the key. I also tried "keycheck.exe"
    Do you have a solution for this problem? Did you finish the installation?
    Christian

  • Issue in booting app server.

    I have installed tuxedo 8.1 on windows 2003 on PT 8.48.16 .
    Whenver I am trying to boot app server I m getting below error message .
    I had tried all the possible solution given on support site, but no luck.
    Beside that , I also get a pop-up image which say " an unhandeled win32 exception occured in tmadmin.exe[3004] "
    Can you please give advice on it.
    ==========
    Error :-
    073656.DCB-STG-APP3!tmloadcf.4048.1592.-2: 04-24-2012: Tuxedo Version 8.1, 32-bit
    073656.DCB-STG-APP3!tmloadcf.4048.1592.-2: CMDTUX_CAT:879: INFO: A new file system has been created. (size = 1120 512-byte blocks)
    073658.DCB-STG-APP3!tmloadcf.4048.1592.-2: CMDTUX_CAT:871: INFO: TUXCONFIG file E:\psoft\PT848\appserv\CRPROD\PSTUXCFG has been created
    073705.DCB-STG-APP3!PSADMIN.3964: Begin attempt on domain CRPROD
    073717.DCB-STG-APP3!tmboot.3744.864.-2: 04-24-2012: Tuxedo Version 8.1, 32-bit
    073717.DCB-STG-APP3!tmboot.3744.864.-2: LIBTUX_CAT:681: ERROR: Failure to create message queue
    073717.DCB-STG-APP3!tmboot.3744.864.-2: FATAL: internal error: CMDTUX_CAT:1098: ERROR: Can't create queue
    073717.DCB-STG-APP3!PSADMIN.3964: End boot attempt on domain CRPROD

    Did you also try the solution BobLilly gave, connecting to the server in Console mode?
    Are you connecting to the appserver machine via Remote Desktop or is it running locally?
    See also this doc on why terminal server and psadmin conflict.
    E-AS: LIBTUX_CAT:681: ERROR: Failure to create message queue with psadmin Using Remote Desktop when Connecting to Windows Servers [ID 658213.1]
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=658213.1
    And this doc with several solutions for this issue
    E-TUX: LIBTUX_CAT: 681/1098 - Failure to create message queue / Cannot Create Queue [ID 607729.1]
    https://support.oracle.com/CSP/main/article?cmd=show&type=NOT&id=607729.1

  • When I stream videos from my laptop onto my Apple TV via my iPad 2 using the Air Video app/server the video plays great however when I pause the video the Apple TV reverts back to the home screen within a few seconds and then when I want to restart watchi

    When I stream videos from my laptop onto my Apple TV via my iPad 2 using the Air Video app/server the video plays great however when I pause the video the Apple TV reverts back to the home screen within a few seconds and then when I want to restart watching the video I have to re-buffer the video. Is there any way I can stop the Apple TV from reverting back to the home screen when I pause the video I’m watching?

    Welcome to the Apple Community.
    Contact the developer of the Air Video app.

  • Multiple JVMs within app server - refresh of metdata not working

    Hi guys.
    We have an interesting scenario at present when running our application within a new test environment.
    Our web-based application has the facility to refresh it's application metadata. This should mean that the next time the browser refreshes (or a user logs in to the application), the application will display based upon the refreshed metadata structure.
    Previously, we have run our application on an app server with a single JVM without any dramas. ie. the refresh has always been reflected appropriately when viewing the application - as mentioned above.
    However, we have installed the application in a new environment where the refreshing of meta data does not work consistently. That is, only about 50% of the time does the data refresh correctly. This can be seen by pressing the refresh button in an IE browser, so that the refreshed data appears approx. every second time the button is pressed. The only notable difference with this environment is that it runs 2 JVMs within the app server.
    It seems that in this case, the 'old' data remains cached for the 'other' JVM, and that when the browser receives 'refreshed' data from the server, it does not always source from the same JVM.
    This situation can be resolved by restarting the OC4J container, but this is not a desireable solution.
    Is anyone aware of an OC4J parameter that can be set so that the 2 JVMs can run in synch so that both are refreshed appropriately when our meta data is cleared (refreshed) ? I don't believe this can be controlled within the Java source code, but I'm receptive to any other alternate solutions.
    Thanks in advance.
    Steve.

    I'd like to embed multiple instances of the JVM within
    a single, multi-threaded native server process. I'm
    aware this was not possible with the Sun JDK in the
    past.
    Is this still true (for JDK 1.4.1 say)?Yes, this is still true.
    If it's still not possible, are there any timetables
    as of when it might be available? No.
    Likelihood?Check the current list of JSRs at http://www.jcp.org.
    Ah, btw: Is support for VM unloading (during
    DestroyJavaVM()) available now?No.
    >
    In any case: does anybody know of a JVM
    implementation
    available for Linux which supports multiple VM
    instances within a single process?Why do you need multiple VMs? Would multiple separate 'processes' within a single VM work? If so, have a look at:
    http://www.cs.utah.edu/flux/janos/janosvm.html
    http://www.javagroup.org/echidna/
    Jim S.

  • Weblogic 8.1 App Server and IBM MQ Series 5.2 Issue

    Hi All,
              I am trying to create a bridge between Weblogic 8.1 App Server and IBM MQ Series 5.2 and i am facing issues.
              Bridge works fine if i use QualityOfService="Atmost-once" and i am getting following error when i use
              QualityOfService="Duplicate-okay".
              Error:
              <Oct 16, 2003 6:03:35 PM PDT> <Error> <MessagingBridge> <BEA-200015> <An error occurred in bridge "MQSeries WebLogic Bridge" during the transfer of messages (java.lang.Exception: weblogic.jms.adapter.JMSConnectionHandle.acknowledge(Ljavax/jms/MessageV).>
              <Oct 16, 2003 6:03:35 PM PDT> <Warning> <MessagingBridge> <BEA-200026> <Bridge "MQSeries WebLogic Bridge" encountered some problems in one of its adapters or underlying systems. It stopped transferring messages and will try to reconnect to the adapters shortly. (The exception caught was weblogic.jms.bridge.internal.MessagingBridgeException.)>
              Any suggestions or comments will be really appreciated.
              Thanks
              Suresh
              

    It is weird that nothing shows up in the log after you turned on the debug.
              Actually I knew somebody has run into the same problem once.
              The problem disappeared after he did something on the MQSeries side (like
              restart the system and something else). I did not know exactly what he did.
              I am not sure if that will help you but worth trying.
              If that does work either, I'd suggest that you contact the BEA Customer Support
              and somebody will look at it for you in depth.
              Thanks,
              Dongbo
              Suresh wrote:
              > Thanks for following up on this.
              >
              > This bridge works with 6.1 app server and we are trying to use the same stuff
              > for 8.1 app server too. No, we are not using XAConnectionFactory.
              >
              > Suresh
              >
              > Dongbo Xiao <[email protected]> wrote:
              > >Is there any chance that the JMS connection factory on the MQSeries
              > >side is a XAConnectionFactory?
              > >
              > >Suresh wrote:
              > >
              > >> I am using the debug options (-Dweblogic.Debug.DebugMessagingBridgeStartup="true"
              > >> -Dweblogic.Debug.DebugMessagingBridgeRuntime="true") in my stratip
              > >script,
              > >> but, thats the maximum stack trace I can get. I am using jms-notran-adp.rar
              > >for
              > >> both QOS. Bridge is working fine when I use Exactly-once and repeatedly
              > >getting
              > >> the same message when I use Duplicate_okay. My destination queue is
              > >not able to
              > >> ackowledge the messge to the sender.
              > >>
              > >> Here I am giving nodes from my config.xml
              > >>
              > >> <MessagingBridge AsyncEnabled="false" BatchInterval="40000"
              > >> Name="MQSeries WebLogic Bridge"
              > >> QualityOfService="Duplicate-okay"
              > >> SourceDestination="MQSeries Inbound Destination" Started="true"
              > >> TargetDestination="WebLogic Inbound Destination" Targets="myserver"/>
              > >> <JMSBridgeDestination
              > >> AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDINoTX"
              > >> ConnectionFactoryJNDIName="jms.InboundMessageConnectionFactory"
              > >> ConnectionURL="t3://myserver:7001"
              > >> DestinationJNDIName="jms.InboundMessageQueue"
              > >> DestinationType="Queue"
              > >> InitialContextFactory="weblogic.jndi.WLInitialContextFactory"
              > >> Name="WebLogic Inbound Destination" UserName="username" UserPassword="pwd"/>
              > >> <JMSBridgeDestination
              > >> AdapterJNDIName="eis.jms.WLSConnectionFactoryJNDINoTX"
              > >> ConnectionFactoryJNDIName="cn=MQ_BROKER_1,ou=inboundConnectionFactories,ou=mqseries,ou=jms,ou=Systems"
              > >> ConnectionURL="ldap://ldapServer:389/o=myroot"
              > >> DestinationJNDIName="cn=queue2,ou=queue,ou=mqseries,ou=jms,ou=Systems"
              > >> InitialContextFactory="com.sun.jndi.ldap.LdapCtxFactory"
              > >> Name="MQSeries Inbound Destination"
              > >> UserName="cn=admin,o=myroot" UserPassword="pwd"/>
              > >> <Application Name="jms-notran-adp"
              > >> Path="C:\bea\weblogic81\server\lib" StagingMode="nostage" TwoPhase="true">
              > >> <ConnectorComponent Name="jms-notran-adp"
              > >> Targets="rdoddapaneni3" URI="jms-notran-adp.rar"/>
              > >> </Application>
              > >>
              > >> Thanks
              > >>
              > >> Tom Barnes <[email protected]> wrote:
              > >> >By the way, if you are looking to improve performance, transactional
              > >> >mode may actually be the fastest. See the JMS Performance
              > >> >Guide white-paper on dev2dev for details.
              > >> >
              > >> >Suresh wrote:
              > >> >
              > >> >> Hi All,
              > >> >>
              > >> >> I am trying to create a bridge between Weblogic 8.1 App Server and
              > >> >IBM MQ Series 5.2 and i am facing issues.
              > >> >>
              > >> >> Bridge works fine if i use QualityOfService="Atmost-once" and i
              > >am
              > >> >getting following error when i use
              > >> >> QualityOfService="Duplicate-okay".
              > >> >>
              > >> >> Error:
              > >> >>
              > >> >> <Oct 16, 2003 6:03:35 PM PDT> <Error> <MessagingBridge> <BEA-200015>
              > >> ><An error occurred in bridge "MQSeries WebLogic Bridge" during the
              > >transfer
              > >> >of messages (java.lang.Exception: weblogic.jms.adapter.JMSConnectionHandle.acknowledge(Ljavax/jms/MessageV).>
              > >> >
              > >> >> <Oct 16, 2003 6:03:35 PM PDT> <Warning> <MessagingBridge> <BEA-200026>
              > >> ><Bridge "MQSeries WebLogic Bridge" encountered some problems in one
              > >> >of its adapters or underlying systems. It stopped transferring messages
              > >> >and will try to reconnect to the adapters shortly. (The exception
              > >caught
              > >> >was weblogic.jms.bridge.internal.MessagingBridgeException.)>
              > >> >>
              > >> >> Any suggestions or comments will be really appreciated.
              > >> >>
              > >> >> Thanks
              > >> >> Suresh
              > >> >
              > >
              

Maybe you are looking for