Bug in WL5.1 Console

Server: WLS 5.1 SP9 Solaris
Console: WL5.1 SP9 swing console from Linux, connecting to WLS 5.1 SP9 on
Solaris
Using the console, under "Deployed Beans", clicking on the beans that you
have deployed shows you how many transactions have been committed,
rolled-back, and the sum of the two. These counter work fine.
However, if you update the deployed bean using "java weblogic.deploy
update", the counter no longer works ... it no longer increments despite
calling the methods repeatedly.
This also happens even if there were no actual changes in the deployed jar.
Just doing a "weblogic.deploy update", and the transaction counter on the
console no longer works.
These are for SLSBs, not sure if the same is true for other beans.

How Do I implement security constarints? If I've a users
like 5000 users with admin,customer,manger type using same user table with different previledge to see
jsp pages ,......
thnaks
raj
Sriram Narayan wrote:
Hi
The isUserInRole method in Weblogic seems to be responding to the role-link instead of the role-name.
specifics ...
for the web.xml below,
isUserInRole("ViewAllFields") is correct usage.
isUserInRole("boss") is wrong usage.
Right?
<servlet>
<security-role-ref>
<role-name>ViewALLFields</role-name>
<role-link>boss</role-link>
</security-role-ref>
</servlet>
<security-role>
<role-name>boss</role-name>
</security-role>
<security-role>
<role-name>subordinate</role-name>
</security-role>
Am i right?
But the weblogic implementation only seems to be responding to the wrong usage!!
Please help me out.
thanks
sriram

Similar Messages

  • Font bug with SMC (Management console)

    I have got a bug with the font in Solaris Management Console, and only with it.
    With Xorg, the font are corrected displayed, but with Xsun, there are horible.
    I think there a problem with XSun, or with SMC, but I didn't know Xsun.
    Thanks.

    Hello Senthilkumar,
    Here are the outputs from the commands. The other ones that I left out (/var/adm/messages and showrev -p) had a lot of output and I wasn't sure what you needed. Please let me know what to post or if you want me to post the whole things.
    # more /etc/release
    Solaris 8 7/01 s28x_u5wos_08 INTEL
    Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
    Assembled 06 June 2001
    # java -version
    java version "1.2.2"
    Solaris VM (build Solaris_JDK_1.2.2_07a, native threads, sunwjit)
    Here are the errors that come back when /etc/init.d/init.wbem fails.
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/management/viperimpl/server/ViperServer
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:495)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:110)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:252)
    at java.net.URLClassLoader.access$1(URLClassLoader.java:218)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:199)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:193)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:300)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:290)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:256)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:316)

  • LINKSYS SRW 2048 bug on the web console ?

    Hello,
    hope you can help us.
    we are experiencing a bug on 2  LINKSYS SRW 2048, that we use since more the 4 years now.
    We are currently configuring them for Vmware, we never accessed them trough the console (web gui), but now that we need the switch to be configured (vlan, trunk, ec..) it suddenly reboot every time we enter user and password and press the enter key.
    We know that they are pretty old but we just wanted to give it a try...maybe someone of you alreday encountered the same problem.
    best regards,
    Robi

    Dear Lati,
    Thank you for reaching Small Business Support Community and for your time and patience regarding your inquiry.
    I would first suggest you to reset the switch; unplug it, wait a minute and plug it back in, then try the console connection through hyperterminal as described in the chapter 4 of the admin guide;
    http://www.cisco.com/en/US/docs/switches/lan/csbms/srw2048/administration/guide/SRW-US_v10_UG_A-Web.pdf
    If the problem persists reset the router once more and try the web-based utility as described by the same admin guide, chapter 5.
    If you are still unable to login the device I would then suggest you to contact the Small Business Contact Center for further assistance and please do not hesitate to reach me back if there is anything I may assist you with in the meantime.
    https://www.cisco.com/en/US/support/tsd_cisco_small_business_support_center_contacts.html
    Kind regards,
    Jeffrey Rodriguez S. .:|:.:|:.
    Cisco Customer Support Engineer
    *Please rate the Post so other will know when an answer has been found.

  • BasicRealm getUser() bug in WL5.1?

    Hi,
    I am facing a weird problem with authentication using a custom realm in WLS5.1.
    I have written a custom security realm which implements the BasicRealm and ListableRealm
    interfaces (the realm it does not extend Weblogic's AbstractListableRealm).
    I have my own implementation of the User object within my realm package (call
    it MyUser),
    which extends weblogic's User object and provides the following behavior: MyUser
    instances
    contain a ticket if they have been successfully authenticated. This ticket is
    available
    through MyUser.getCredential() method.
    Now, to the problem: Weblogic stores the wrong User object in the thread after
    authentication.
    The realm authentication sequence goes as follows:
    1. WLS calls the BasicRealm.getUser(String userName) method on my realm.
    2. The realm returns a MyUser object with a null ticket (since the user hasn't
    been
    authenticated). Let's call this user object myuser1.
    3. WLS then calls the BasicRealm.getUser(UserInfo userInfo) method on my realm.
    4. The realm authenticates the credentials and returns another MyUser object,
    this one
    with a valid ticket. Call this myuser2.
    The problem is, WLS seems to discard myuser2, and store myuser1 in the thread-specific
    authentication context. So, when an EJB method executing within that thread calls
    Security.getCurrentUser(), it gets back myuser1. Since myuser1.getCredential()
    returns null,
    the EJB is not able to fetch the authentication ticket.
    Is this a bug in WLS? If so, is there a patch available? Failing that, is there
    any way to
    make WLS store the second user object?
    Thanks
    Ravi

    Hi,
    I think your problem is that your first returned user object ( MyUser ) is stored
    in a caching realm, and it is this user that is returned when using Security.getCurrentUser().
    Instead of creating av new user object when authenticating ( authUserPassword
    ), just modify the user object already stored in the cache realm.
    The code for getting the user object from the cache could look something like
    this:
    User user = null;
    BasicRealm basicRealm = Security.getRealm();
    if (basicRealm != null && basicRealm instanceof CachingRealm)
    CachingRealm cachingRealm = (CachingRealm)basicRealm;
    if (cachingRealm != null)
    user = cachingRealm.getUser(name);
    user.setTicket(ticket);
    Now you can set your ticket attribute on this object and return it as the user
    object.
    Security.getCurrentUser() should now return a user object with a valid ticket.
    Yngve.
    "Ravi Shankar" <[email protected]> wrote:
    >
    Hi,
    I am facing a weird problem with authentication using a custom realm
    in WLS5.1.
    I have written a custom security realm which implements the BasicRealm
    and ListableRealm
    interfaces (the realm it does not extend Weblogic's AbstractListableRealm).
    I have my own implementation of the User object within my realm package
    (call
    it MyUser),
    which extends weblogic's User object and provides the following behavior:
    MyUser
    instances
    contain a ticket if they have been successfully authenticated. This ticket
    is
    available
    through MyUser.getCredential() method.
    Now, to the problem: Weblogic stores the wrong User object in the thread
    after
    authentication.
    The realm authentication sequence goes as follows:
    1. WLS calls the BasicRealm.getUser(String userName) method on my realm.
    2. The realm returns a MyUser object with a null ticket (since the user
    hasn't
    been
    authenticated). Let's call this user object myuser1.
    3. WLS then calls the BasicRealm.getUser(UserInfo userInfo) method on
    my realm.
    4. The realm authenticates the credentials and returns another MyUser
    object,
    this one
    with a valid ticket. Call this myuser2.
    The problem is, WLS seems to discard myuser2, and store myuser1 in the
    thread-specific
    authentication context. So, when an EJB method executing within that
    thread calls
    Security.getCurrentUser(), it gets back myuser1. Since myuser1.getCredential()
    returns null,
    the EJB is not able to fetch the authentication ticket.
    Is this a bug in WLS? If so, is there a patch available? Failing that,
    is there
    any way to
    make WLS store the second user object?
    Thanks
    Ravi

  • URGENT: New sessions created as increasing hits/second! BUG in WL5.1 sp10?

              Hello,
              I am experiencing the same problem as mr. Rajesh Rajagopalan, only he had it with
              WL 6.0:
              http://newsgroups2.bea.com/cgi-bin/dnewsweb?cmd=article&group=weblogic.developer.interest.jsp&item=8925&utag=
              So when the number of hits increases, it looks like new sessions are created when
              the number of hits increases!
              Is that a bug in WL 5.1 service pack 10? I would like an answer from a BEA Weblogic
              official!
              

    Hello,
              I think that the best way is to open a case to the BEA support.
              "\"Bogdan Barzu\" Bogdan.Barzu" wrote:
              > Hello,
              >
              > I am experiencing the same problem as mr. Rajesh Rajagopalan, only he had it with
              > WL 6.0:
              > http://newsgroups2.bea.com/cgi-bin/dnewsweb?cmd=article&group=weblogic.developer.interest.jsp&item=8925&utag=
              >
              > So when the number of hits increases, it looks like new sessions are created when
              > the number of hits increases!
              >
              > Is that a bug in WL 5.1 service pack 10? I would like an answer from a BEA Weblogic
              > official!
              

  • Bug in WL5.1 - isUserInRole( "role-name" or "role-link")

     

              Hi
              The isUserInRole corresponds only to role-link. This is the name thats given in
              the security-role. Look at the servllet spec or the ejb documentation. IT explains
              this clearly.
              HTH
              Raj
              >
              >
              >Sriram Narayan wrote:
              >
              >> Hi
              >> The isUserInRole method in Weblogic seems to be responding to the role-link
              >instead of the role-name.
              >> specifics ...
              >> for the web.xml below,
              >>
              >> isUserInRole("ViewAllFields") is correct usage.
              >> isUserInRole("boss") is wrong usage.
              >> Right?
              >> -----------------------------------
              >> ..
              >> <servlet>
              >> ..
              >> <security-role-ref>
              >> <role-name>ViewALLFields</role-name>
              >> <role-link>boss</role-link>
              >> </security-role-ref>
              >> ..
              >> </servlet>
              >> ..
              >> <security-role>
              >> <role-name>boss</role-name>
              >> </security-role>
              >> <security-role>
              >> <role-name>subordinate</role-name>
              >> </security-role>
              >> ..
              >> ------------------------------------
              >>
              >> Am i right?
              >> But the weblogic implementation only seems to be responding to the
              >wrong usage!!
              >> Please help me out.
              >> thanks
              >> sriram
              >
              

  • [Patch 정보] TRACKING BUG FOR CUMULATIVE MLR#6 ON TOP OF BPEL PM 10.1.3.3.1

    최근에 출시된 BPEL PM 10.1.3.3.1의 통합패치입니다.
    아래는 readme.txt에 포함된 patch list입니다.
    # WARNING: Failure to carefully read and understand these requirements may
    # result in your applying a patch that can cause your Oracle Server to
    # malfunction, including interruption of service and/or loss of data.
    # If you do not meet all of the following requirements, please log an
    # iTAR, so that an Oracle Support Analyst may review your situation. The
    # Oracle analyst will help you determine if this patch is suitable for you
    # to apply to your system. We recommend that you avoid applying any
    # temporary patch unless directed by an Oracle Support Analyst who has
    # reviewed your system and determined that it is applicable.
    # Requirements:
    # - You must have located this patch via a Bug Database entry
    # and have the exact symptoms described in the bug entry.
    # - Your system configuration (Oracle Server version and patch
    # level, OS Version) must exactly match those in the bug
    # database entry - You must have NO OTHER PATCHES installed on
    # your Oracle Server since the latest patch set (or base release
    # x.y.z if you have no patch sets installed).
    # - [Oracle 9.0.4.1 & above] You must have Perl 5.00503 (or later)
    # installed under the ORACLE_HOME, or elsewhere within the host
    # environment.
    # Refer to the following link for details on Perl and OPatch:
    # http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=189489.1
    # If you do NOT meet these requirements, or are not certain that you meet
    # these requirements, please log an iTAR requesting assistance with this
    # patch and Support will make a determination about whether you should
    # apply this patch.
    # 10.1.3.3.1 Bundle Patch 6823628
    # DATE: March 14, 2008
    # Platform Patch for : Generic
    # Product Version # : 10.1.3.3.1
    # Product Patched : Oracle(R) SOA
    # Bugs Fixed by 10.1.3.3.1 Initial patch 6492514 :
    # Bug 5473225 - PATCH01GENESIS HOT UNABLE TO CATCH AN EXCEPTION DURING A
    # TRANSFORM
    # Bug 5699423 - PARTNERLINK PROPERTY THAT SET BPELXPROPERTY FUNCTION DOESN'T
    # WORK
    # Bug 5848272 - STATEFUL WEBSERVICES DEMO ON OTN DOES NOT WORK 10.1.3.1
    # Bug 5872799 - ANT DEPLOY BPEL TEST FAILS/RUNS ON DEFAULT DOMAIN NOT
    # SPECIFIED TARGET DOMAIN
    # Bug 5883401 - ALLOW A WAY TO CREATE EMPTY NODES - AND USE FOR REQUIRED
    # NODES
    # Bug 5919412 - SAMPLE DEMO BPEL PROCESSES MIMESERVICE MIMEREQUESTER AXIS
    # JAVA EXAMPLE ERROR
    # Bug 5924483 - ESB SHOULD SUPPORT SOAP EDNPOINT LOCATION DYNAMIC UDDI LOOKUP
    # Bug 5926809 - ORAPARSEESCAPEDXML XPATH EXPRESSION FAILED TO EXECUTE
    # FOTY0001 TYPE ERROR
    # Bug 5937320 - STRANGE BEHAVIOUR CALLING FROM BPEL TO BPEL GETTING
    # NULLPOINTEREXCEPTION.
    # Bug 5944641 - BPA BLUEPRINT NOT AVAIALBLE IN JDEVELOPER
    # Bug 5945059 - JAVA.LANG.NULLPOINTEREXCEPTION SENDING EMAILS WITH PAYLOADS
    # LARGER THAT 1MB
    # Bug 5962677 - WS RESPONSE IS EMPTY SOAP BODY IN ONE-WAY CALL
    # Bug 5963425 - WHEN THE OUTCOMES FOR A HT CHANGED & IMPORTED - UPDATE
    # CONNECTION ROLES IN BPEL
    # Bug 5964097 - AQ ADAPTER DEPLOYMENT CAUSES OPMN TO PERFORM A FORCEFUL
    # SHUTDOWN IN SOA
    # Bug 5971534 - CANNOT GRANT USER TASK VIEWS TO GROUPS, ONLY TO USERS.
    # Bug 5989367 - REFER TO SR 6252219.993 BPEL 10.1.3 ONLY COPIES IN ASSIGN,
    # IN 10.1.2 IT CREATES
    # Bug 5989527 - ENHANCEMENT WARNING SHOULD BE GIVEN UPON UPLOAD IF BPEL
    # PROCESS IS OPEN IN ARIS
    # Bug 5997936 - ESB FAULT DOES NOT GET PROPAGATED TO BPEL
    # Bug 6000575 - PERF NEED ESB PURGE SCRIPT TO PURGE BY DATE AND PROCESS
    # Bug 6001796 - POSTING OF DATE RECEIVED FROM XML GATEWAY TO BPEL FAILED IN
    # ESB
    # Bug 6005407 - BPEL PROCESS DOESN'T PROPOGATE FAULT THROWN BY BPEL
    # SUB-PROCESS
    # Bug 6017846 - MIMETYPE OF EMAIL NOTIFICATION IS NOT SET THROUGH HUMAN TASK
    # Bug 6027734 - DECISION SERVICE IMPORT - LOCATING DECISION SERVICE IN .DECS
    # FILE IMPROPER
    # Bug 6028985 - EXCEEDED MAXIMUM NUMBER OF SUBSCRIBERS FOR QUEUE
    # ORAESB.ESB_CONTROL
    # Bug 6041508 - CREATING/UPDATING DVM CAUSE EXCEPTION
    # Bug 6053708 - FTP ADAPTER DOES NOT SUPPORT ENCRYPTED PASSWORD IN
    # OC4J-RA.XML
    # Bug 6054034 - INDEX4,INDEX5 AND INDEX6 CANNOT BE USED IN BPEL CONSOLE
    # Bug 6068801 - BACKPORT OF BPEL ON WEBLOGIC - VERSION 10.1.3.3
    # Bug 6070991 - HT EXPORT DOES NOT EXPORT PARAMETERS, ALLOW PARTICIPANTS TO
    # INVITE OTHERS
    # Bug 6071001 - WSIF HTTP BINDING NOT WORKING FROM ESB
    # Bug 6073311 - STRESS SCOPE NOT FOUND ON CALLBACK - WRONG (DUPE)
    # SUBSCRIPTION IN TABLE
    # Bug 6081070 - JMS ADAPTER REJECTION HANDLER CREATE 0 BYTE FILES
    # Bug 6083419 - DECISION SERVICE SCOPE NEED TO HAVE A SPECIAL INDICATOR
    # Bug 6085799 - HUMAN TASK ADDED IN SCOPE IN JDEV IS NOT UPDATED TO BPA
    # SERVER
    # Bug 6085933 - EXPORT AND EXPLORE SHOULD USE USER LANGUAGE AND NOT ENGLISH
    # ALWAYS
    # Bug 6086281 - STRING INDEX OUT OF RANGE ERROR FOR COBOL COPYBOOK WITH PIC
    # CLAUSE HAVING S
    # Bug 6086453 - DOMAINS CREATED IN A CLUSTER GETS NOT PROPAGATED TO NEW OR
    # EXISTING NODES
    # Bug 6087484 - MULTIPLE HEADER SETTING CAUSES ESB EXCEPTION
    # Bug 6087645 - ESB SHOULD ALLOW USER PICK RUNTIME PROTOCOL (HTTP/HTTPS)
    # Bug 6110231 - TRANSLATION NOT BASED ON MQ CCSID CHARSET
    # Bug 6120226 - BPEL IS NOT SETTING THE APPS CONTEXT CORRECTLY
    # Bug 6120323 - COMPLETIONPERSISTPOLICY ON DOMAIN LEVEL HAS DISAPPEARED
    # Bug 6125184 - ESB JMS SESSION ROLLBACK ORACLE.JMS.AQJMSEXCEPTION
    # Bug 6127824 - [AIA2.0] CURRENT XREF IMPLEMENTATION IS MISSING REQUIRED
    # INDEXES ON XREF SCHEMA
    # Bug 6128247 - HTTPCONNECTOR POST() METHOD SHOULD RAISE EXCEPTION FOR ALL
    # STATUS CODES EXCEPT 2
    # Bug 6131159 - ENABLE USERS TO CHOOSE XSD WHEN CREATING A BPEL PROCESS FROM
    # BLUE PRINT
    # Bug 6132141 - PROCESS_DEFAULT TABLE STILL CONTAINS INFORMATION FROM
    # UNDEPLOYED PROCESSES
    # Bug 6133190 - ENABLING ESB CONSOLE HTTP/S IS MAKING THE CONSOLE TO COME UP
    # BLANK.
    # Bug 6139681 - BPEL WSDL LINK IN CLUSTERED RUNTIME POINTS TO A SINGLE NODE
    # Bug 6141259 - BASICHEADERS NOT PUTTING WWW-AUTHENTICATE HEADERS FOR HTTP
    # BINDING IN BPEL
    # Bug 6148021 - BPEL NATIVE SCHEMA FOR COBOL COPYBOOK WITH IMPLIED DECIMAL
    # LOSES DIGIT IN OUTPUT
    # Bug 6149672 - XOR DATA - CONDITION EXPRESSION SPECIFICATION IS NOT
    # INTUITIVE IN BPMN MODELS
    # Bug 6152830 - LOSING CONDITIONAL EXPRESSIONS CREATED IN JDEV UPON MERGE
    # Bug 6158128 - BASICHEADERS NOT PUTTING WWW-AUTHENTICATE HEADERS FOR HTTP
    # BINDING
    # Bug 6166991 - WHEN STARTING SOA SUITE,, PROCESSES FAIL DUE TO UNDEFINED
    # WSDL
    # Bug 6168226 - LOCATION-RESOLVER EXCEPTION THROWN IN OPMN LOGS
    # Bug 6187883 - CHANGES FOR BPEL RELEASE ON JBOSS- VERSION 10.1.3.3
    # Bug 6206148 - [AIA2.0] NEW FUNCTION REQUEST, XREFLOOKUPPOPULATEDCOLUMNS()
    # Bug 6210481 - BPEL PROCESS WORKS INCORRECTLY WHEN AN ACTIVITY HAS MULTIPLE
    # TRANSITIONCONDITION
    # Bug 6240028 - WEBSERVICE THAT DOES NOT CHALLENGE FOR BASIC CREDENTIALS
    # CANNOT BE INVOKED
    # Bug 6257116 - MULTIPLE HEADER SETTING CAUSES ESB EXCEPTION
    # Bug 6258925 - MESSAGE RECEIVED BY THE TARGET ENDPOINT VIA HTTP POST IS
    # MISSING THE XML HEADER
    # Bug 6259686 - TOO MANY UNNECESSARY WORKFLOW E-MAIL NOTIFICATIONS GENERATED
    # Bug 6267726 - 10.1.3.3 ORACLE APPLICATIONS ADAPTER - NOT ABLE TO CAPTURE
    # BUSINESS EVENT
    # Bug 6272427 - WEBSPHERE BPEL FAILS FOR DATA RETRIEVAL OF SIZE 500+ KB
    # Bug 6276995 - MERGE SCOPE NAME IS NOT UPDATED WHEN CHANGED IN THE SERVER
    # Bug 6280570 - XPATH EXPRESSION ERROR IN MEDIATOR FOR ASSIGNING USER-DEFINED
    # CONTEXT VALUES
    # Bug 6282339 - RETRYCOUNT DOES NOT WORK PROPERLY
    # Bug 6311039 - ONE RECORD IS INSERTED TO SYNC_STORE IF
    # COMPLETIONPERSISTPOLICY SET TO FAULTED
    # Bug 6311809 - [AIA2.0] NON-RETRYABLE ERRORS ARE NOT POSTED ON ESB_ERROR
    # TOPIC
    # Bug 6314784 - THE PRIORITY DEFINED IN THE BPA SUITE IS NOT TRANSFERRED TO
    # THE JDEV CORRECTLY
    # Bug 6314982 - THREADPOOL RACE CONDITION IN ADAPTER INITIALIZATION MESSAGES
    # NOT PROCESSED
    # Bug 6315104 - (SET)CLASSNAME MISSING IN TSENSOR JAXB OBJECTS
    # Bug 6316554 - CONSUME FUNCTIONALITY OF JMS ADAPTER FOR BEA WEBLOGIC DOES
    # NOT WORK
    # Bug 6316950 - FILEADAPTER HARPER ENHANCEMENTS SYNC WRITE AND CHUNKED
    # INTERACTION SPEC
    # Bug 6317398 - THE ICON FOR COMPUTING DIFFERENCE IS MISSING IN JDEV REFRESH
    # FROM SERVER DIALOG
    # Bug 6320506 - IMPORT FAILS WHEN THERE IS AN UNNAMED CASE
    # Bug 6321011 - CANNOT PROCESS 0 BYTE FILE USING FTP ADAPTER
    # Bug 6325749 - TRACKING BUG FOR TRACKING ADDITIONAL CHANGES TO BUG #6032044
    # Bug 6328584 - NEED A NEW XPATH EXPRESSION TO GET ATTACHMENT CONTENT VIA
    # SOAP INVOKATION
    # Bug 6333788 - COLLAPSING OF CONSECUTIVE ASSIGN TASKS BREAKS BAM SENSOR
    # Bug 6335773 - BUILD.XML CONTAINS DO NOT EDIT .. - WHILE <CUSTOMIZE> TASK
    # MUST BE IN <BPELC>
    # Bug 6335805 - AQ ADAPTER OUTBOUND DOESN'T RECONNECT AFTER FAILURE
    # Bug 6335822 - [AIA2.0] PSRPERFESB - RUNTIME DVM PERFORMANCE OVERHEAD IN ABS
    # USE CASE
    # Bug 6339126 - CHECKPOINT BPEL JAVA METHOD DOESN'T WORK IN BPEL 10.1.3.3
    # Bug 6342899 - OUTLINECHANGE.XML NOT UPDATE WITH ACTIVITY FROM NEW BRANCH
    # Bug 6343299 - ESB CONCRETE WSDL NAMESPACE SHOULD BE DIFFERENT FROM IMPORTED
    # WSDL NAMESPACE
    # Bug 6372741 - DEHYDRATION DATABASE KEEPS GROWING IN 10.1.3.3
    # Bug 6401295 - NXSD SHOULD SUPPORT ESCAPING THE TERMINATED/QUOTED/SURROUNDED
    # DELIMITERS
    # Bug 6458691 - DIST DIRECTORY FOR 10.1.3.3.1 NEEDS UPDATE
    # Bug 6461516 - BPEL CONSOLE CHANGES FOR DISPLAYING RELEASE 10.1.3.3.1
    # Bug 6470742 - CHANGE THE VERSION NUMBER AND BUILD INFO IN ABOUT DIALOG IN
    # ESB
    # BUG ADDED IN MLR#1, 6671813 :
    # Bug 6494921 - ORABPEL-02154 IF LONG DOMAIN AND SUITECASE NAMES IN USE
    # BUGS ADDED IN MLR#2, 6671831 :
    # Bug 6456519 - ERROR IN BPEL CONSOLE THREADS TAB:SERVLETEXCEPTION CANNOT GET
    # DISPATCHER TRACE
    # Bug 6354719 - WHICH JGROUP CONFIGURATION PARAMETER IMPACTS BPEL CLUSTER
    # ACTIVITY
    # Bug 6216169 - SCOPE NOT FOUND ERROR WHILE DELIVERING EXPIRATION MESSAGE OF
    # ONALARM
    # Bug 6395060 - ORA-01704 ON INSERTING A FAULTED INVOKE ACTIVITY_SENSOR
    # Bug 6501312 - DEHYDRATION DATABASE KEEPS GROWING IN 10.1.3.3 #2
    # Bug 6601020 - SEARCHBASE WHICH INCLUDES PARENTHESIS IN THE NAMES DOES NOT
    # WORK
    # Bug 6182023 - WAIT ACTIVITY FAILS TO CONTINUE IN CLUSTER WHEN PROCESSING
    # NODE GOES DOWN
    # BUGS ADDED IN MLR#3, 6723162 :
    # Bug 6725374 - INSTANCE NOT FOUND IN DATASOURCE
    # Bug 4964824 - TIMED OUT IF SET CORRELATIONSET INITIATE YES IN REPLY
    # ACTIVITY
    # Bug 6443218 - [AIA2.0]BPEL PROCESS THAT REPLIES A CAUGHT FAULT AND THEN
    # RETHROWS IT IS STUCK
    # Bug 6235180 - BPPEL XPATH FUNCTION XP20 CURRENT-DATETIME() IS RETURNING AN
    # INCORRET TIME
    # Bug 6011665 - BPEL RESTART CAUSES ORABPEL-08003 FAILED TO READ WSDL
    # Bug 6731179 - INCREASED REQUESTS CAUSE OUTOFMEMORY ERRORS IN OC4J_SOA WHICH
    # REQUIRES A RESTART
    # Bug 6745591 - SYNC PROCESS <REPLY> FOLLOWED BY <THROW> CASE CAUSING
    # OUTOFMEMORY ERRORS
    # Bug 6396308 - UNABLE TO SEARCH FOR HUMAN TASK THAT INCLUDES TASK HISTORY
    # FROM PREVIOUS TASK
    # Bug 6455812 - DIRECT INVOCATION FROM ESB ROUTING SERVICE FAILS WHEN CALLED
    # BPEL PROCESS
    # Bug 6273370 - ESBLISTENERIMPL.ONFATALERROR GENERATING NPE ON CUSTOM ADAPTER
    # Bug 6030243 - WORKFLOW NOTIFICATIONS FAILING WITHOUT BPELADMIN USER
    # Bug 6473280 - INVOKING A .NET 3.0 SOAP SERVICE EXPOSED BY A ESB ENDPOINT
    # GIVES A NPE
    # BUGS ADDED IN MLR#4, 6748706 :
    # Bug 6336442 - RESETTING ESB REPOSITORY DOES NOT CLEAR DB SLIDE REPOSITORY
    # Bug 6316613 - MIDPROCESS ACTIVATION AGENT DOES NOT ACTIVATED FOR RETIRED
    # BPEL PROCESS
    # Bug 6368420 - SYSTEM IS NOT ASSIGNING TASK FOR REAPPROVAL AFTER REQUEST
    # MORE INFO SUBMITTED
    # Bug 6133670 - JDEV: UNABLE TO CREATE AN INTEGRATION SERVER CONNETION WHEN
    # ESB IS ON HTTPS
    # Bug 6681055 - TEXT ATTACHMENT CONTENT IS CORRUPTED
    # Bug 6638648 - REQUEST HEADERS ARE NOT PASSED THROUGH TO THE OUTBOUND HEADER
    # Bug 5521385 - [HA]PATCH01:ESB WILL LOSE TRACKING DATA WHEN JMS PROVIDER IS
    # DOWN
    # Bug 6759068 - WORKLIST APPLICATION PERFORMANCE DEGRADATION W/ SSL ENABLED
    # FOR BPEL TO OVD
    # BUGS ADDED IN MLR#5, 6782254 :
    # Bug 6502310 - AUTOMATED RETRY ON FAILED INVOKE WITH CORRELATIONSET INIT
    # FAILS
    # Bug 6454795 - FAULT POLICY CHANGE NEEDS RESTART OF BPEL SERVER
    # Bug 6732064 - FAILED TO READ WSDL ERROR ON THE CALLBACK ON RESTARTING BPEL
    # OC4J CONTAINER
    # Bug 6694313 - ZERO BYTE FILE WHEN REJECTEDMESSAGEHANDLERS FAILS
    # Bug 6686528 - LINK IN APPLICATION.XML FILES CHANGED TO HARD LINKS WHEN MORE
    # THAN 1 HT PRESENT
    # Bug 6083024 - TEXT AND HTML DOC THAT RECEIVED AS ATTACHMENTS WERE EITHER
    # BLANK OR GARBLED
    # Bug 6638648 - REQUEST HEADERS ARE NOT PASSED THROUGH TO THE OUTBOUND HEADER
    # Bug 6267726 - 10.1.3.3 ORACLE APPLICATIONS ADAPTER - NOT ABLE TO CAPTURE
    # BUSINESS EVENT
    # Bug 6774981 - NON-RETRYABLE ERRORS ARE NOT POSTED ON ESB_ERROR TOPIC
    # Bug 6789177 - SFTP ADAPTER DOES NOT SUPPORT RENAMING FILES
    # Bug 6809593 - BPEL UPGRADE TO 10.1.3.3.1 WITH ESB CALLS FAILS DUE TO
    # CACHING OF PLNK - SERVICE
    # BUGS ADDED IN MLR#6, 6823628 :
    # Bug 6412909 - <BPELX:RENAME> DOES NOT ADD XMLNS DECLARATION AUTOMATICALLY
    # Bug 6753116 - OUTPUT FROM HUMAN TASK IS NOT IS NOT CONSISTENT WITH
    # SCHEMA
    # ORDERING
    # Bug 6832205 - BAD VERIFICATIONSERVICE PERFORMANCE IF LDAP SERVICE HAS HUGE
    # DATA
    # Bug 6189268 - CALLING BPEL PROCESS VIA SOAP FROM ESB FAILS WITH
    # NAMENOTFOUNDEXCEPTION
    # Bug 6834402 - JMS ADAPTER IMPROPERLY CASTS XAQUEUESESSION TO QUEUESESSION
    # Bug 6073117 - TASK SERVICE DOESN'T RENDER THE TASK ACTIONS
    # Bug 6054263 - REUSING SOAP WSDL IN RS CAUSES SOAP ACTION'S NS TO BE
    # STRIPPED
    # AWAY
    # Bug 6489703 - ESB: NUMBER OF LISTENERS > 1 GIVES JMS EXCEPTION UNDER STRESS
    # Bug 5679542 - FTP ADAPTER: COULD NOT PARSE TIME:
    # JAVA.LANG.STRINGINDEXOUTOFBOUNDSEXCEPTION
    # Bug 6770198 - AQ ACTIVATIONINSTANCES >1 DOESN'T WORK IN ESB
    # Bug 6798779 - ESB ROUTING RULES CORRUPTED ON RE-REGISTERING WITH ROUTING
    # ORDER
    # IN WSDL CHANGED
    # Bug 6617974 - BACKPORT REQUEST FOR MOVING FILES FUNCTION OF FTP ADAPTER
    # Bug 6705707 - VALIDATION ON ESB CAN'T HANDLE NESTED SCHEMAS
    # Bug 6414848 - FTP ADAPTER ARCHIVE FILENAME FOR BPEL IS BEING SCRAMBLED
    # AFTER
    # THE 10.1.3.3 UPGR
    # Bug 5990764 - INFORMATION ARE LOST WHEN BPEL PROCESS IS POLLING FOR MAILS
    # WITH
    # ATTACHEMENTS
    # Bug 6802070 - ORA-12899 SUBSCRIBER_ID/RES_SUBSCRIBER COLUMN SMALL FOR LONG
    # DOMAIN AND PROCESS
    # Bug 6753524 - WRONG SERVICE ENDPOINT OPEN WHEN TEST WEB SERVICE OF ESB
    # Bug 6086434 - PROBLEM IN BPEL FILE ADAPTER WHILE READING A FIXED LENGTH
    # FILE
    # Bug 6823374 - BPEL 10.1.3.3.1 BAM SENSOR ACTION FAILS WITH BAM 11
    # Bug 6819677 - HTTS STATUS 202 RETURNED INSTEAD OF SOAP FAULT
    # Bug 6853301 - MQ ADAPTER REJECTED MESSAGES IS NOT REMOVED FROM THE RECOVERY
    # QUEUE
    # Bug 6847200 - 10.1.3.3.1 PATCH (#6748706) HAS STOPPED FTP ADAPTER POLLING
    # IN
    # SFTP MODE
    # Bug 6895795 - AQ OUTBOUND DOESN'T WORK WITH MLR#6
    업무에 참고하시기 바랍니다.

    David,
    You are right, theer are some changes incorporated in the latest MLR # 16 on the configurations files and on the dehydration store metrics(such as performance, fields,..).
    However, I would not suggest to continue working on olite, even for Development/Test purposes as you might get stuck with strange errors...and the only solution would be to re-install SOA Suite if your olite gets corrupted. There might be ways to gets your olite back to position, but trust me..its not so simple.
    Also, when you develop and stress test all your testcase scenarios in an TEST Adv installation, its simple to mimic the same in actual production box, as you exactly know its behavior.
    So, go for a brand new SOA 10.1.3.4 MLR # 5 (or) 10.1.3.3.1 MLR # 16 SOA Suite Advanced installation with Oracle DB 10.2.0.3 as its dehydration store.
    Hope this helps!
    Cheers
    Anirudh Pucha

  • Too many bugs to isolate a bug when swithching from Alt-F1 to Alt-F7

    First, I consider Linux to be the less buggy OS out there.
    Well, Windows would be less buggy, but it does not really exist, since you have to pay to use it.
    Still, I use to consider Linux very buggy. This opinion I hold true more than ever.
    Here is my box:
    A P5GZ-MX motherboard (intel 945GZ), with 1 GB Memory, and an Celeron D @ 2.66 GHz.
    Now, the integrated VGA connector is badly soldered, so that I used to put something to hold the cable up to have an image.
    This is not the monitor Cable that is broken (I tried an other one and had the same problem).
    When this was not enough anymore, I put my box upside-down (reversing side of  DVD and HD too), that way gravity would hold the cable up (eh... down).
    When this was not enough anymore, I put an old Radeon 7200 (an R100 generation ATI PCI card).
    Then, my problems began (eh... I means continue as usual).
    Let's begin the story with when I installed Arch Linux (again, well the first time with the Radeon 7200 card), about three weeks ago.
    Well, I set the BIOS to prefer the PCI card, to internal one, for what should be now obvious reason.
    I installed Xorg... and things were not so bad. Except, one in about 3 times, when switching back from (Ctrl-Alt-F1 console) to (Alt-F7 Xorg).
    I would have THE bug. Well, basically, one or many window would be empty. Mouse would move, but not interact with anything on screen. Sometimes mouse is jailed inside a window (cannot move out of a window). Recently (maybe just because Firefox not occupying full screen), I would see that some of the text from (Ctrl-Alt-F1 text console) would appears (very brokenly) under the windows (about 4 times on the screen, in green on black).
    I still can swith to text mode with Ctrl-Alt-F1 after bug, and then can use the console.
    Nothing interesting would show in Xorg.0.log after the bug happened.
    I thought maybe I should try a different window manager. I tried icewm rather than OpenBox (or twm).
    At first, I thought OpenBox was the bug, because icewn seems not exhibit THE bug.
    But then, I came to the conclusion, that icewm just had made the bug happen one in about twenty (rathen than in three).
    So I thought that I should install fbcon and vesa driver too (there were some warning they were not installed).
    No change.
    Then I thought, maybe I should try with the vesa driver rather than the radeon one.
    Surprise:
    (EE) VESA(0): V_BIOS address 0x3d810 out of range
    (EE) screen found, but none have a usable configuration
    Then I thought, I should try with latest kernel. Downloaded it.
    Still the bug... with 3.1.1-1-Arch (32 bits BTW).
    Ok, so let's stick with radeon. Reading on possible Kernel Mode Setting with Radeon, I created /etc/modprobe.d/radeon.conf with:
    options radeon modeset=1
    Well, just restarting with startx, show in Xorg.0.log, that KMS was still active.
    So, I thought, let's reboot and see.
    But I did not see.
    Well, my GRUB menu, have NO vga= on the kernel line. So that I boot in plain text (as far as I know).
    At first, Linux seems to boot fine, but then not much before when login prompt would appears... screen became totally black.
    I realized I was still able to log in without seeing what I do, and 'reboot'.
    Ok, try the fallback... not working either.
    So basically, my computer still was working, except I would not see anything.
    Then I began to think... well, maybe I could try to connect the monitor in the 'badly soldered' internal VGA connector.
    Surprise, surprise: the login prompt! Ouf!
    Well, strangely I now need to hold the cable up, so that I thought: maybe this is time to put my box down side up (remember, it is already up side down). But, was too lazy for it. I just edited back /etc/modprobe.d/radeon.conf with modese=0, put back the monitor in the Radeon 7200 card, and rebooted.
    Things were 'fine' again.
    That's when, I thought I should write a message for maybe asking help, but frankly more to publicly complain.

    Revised hypothesis:
    I now believe that the bug while switching from console back to Xorg is not hardware related, and should probably happens to anyone. Also I have a new procedure that seems to always trigger it:
    1) on console (Ctrl-Alt-F1) run startx    (without ending & )
    2) You should be in Xorg, go back to console with Ctrl-Alt-F1
    3) type Enter
    4) Type Alt-F7 to go back in Xorg... hopefully for me in bogus state
    Now, the message that seems to be written in some titlebars are the same, I think, that I would get when I go back to console and do: Ctrl-C (2 or three times)... then after the bug I would see some:
    xterm: Ressource temporarily not available  (or something very similar)
    About V_BIOS address 0x3d810 out of range I am now convinced it is while loading (initializing) int10 module,
    The sad part is that if I add Option "NoInt10" "True" to vesa driver section (doc seems to wrongly suggest to put it in Server section)... then yes, the out of range does not appears, but vesa will continue to unload itself... and finally no usable screen found message would continue to appears. So I suppose Int10 module have become mandatory to vesa rather than optional.

  • How do other video editors cope with Yosemite (xpc, icloud bugs...)

    Right so all I want is to be able to use Apple Motion on a stable system.
    I don't need icloud, photos or any of that bs.
    However I keep noticing icloud bugging out in the console, as well as photoagent and all kinds of needless process that slow down when not crash my editing software or even block me out of internet.
    And so I sign out of icloud and anything related. But then it gets worst, sandbox, xpc, my whole system gets completely  lost and throws identification errors left and right, making Motion super laggy.
    Has anyone else noticed that? Could it be possible that Icloud plays such a role in the way processes, including the ones used by pro apps, communicate with each other? Are we in a way forced to give in to icloud (and its load of issues), to be able to edit in a half way decent fashion?
    I tried keychain first aid, onyx, digital rebellion, fsck-fy, reset p-ram, smc,nothing gives.

    We all pretty much now by know that the OS has issues, serious ones (I 'm not the only apparently). I finally mitigated some of my issues (one fix entailed solving a huge mess in my keychains) and haven't slept in 2 days with a deadline tomorrow. Now that I can finally get back to work seriously, I find out that Motion 5 is excruciatingly slow to export, whether from the soft itself or via compressor . Even Motion 3 was a breeze in comparison.(by the way, Compressor offers to distribute batch among several computers, but the feature doesn't apply to projects sent from Motion and fcp, hence a completly useless feature for most workflows). I know that generators and replicators are ram hungry and so I'm resorting to export them one by one with the happy prospect of an additional round of compositing and export). As I speak, a simple circle with a paint stroke superimposed by an ulterior export of the corona emitter sigh....are rendering. and for only 16secs of a  4444 clip on alpha over a stroke outline is taking a good 30mn
    This is outrageous. knowing that it is only portion of a clip among a dozen others which need to be delivered all cut up tomorrow, I am basically dead. Needless to say that re-installing everything right now is unthinkable, especially since I'm working on a recent clean install and so who knows what defects I'll end up  getting the next time around
    If I could use help at this level of catastrophy, it would be some advice on the best quality/time ratio codec for exporting and re-importing 1080 w alpha clips. I'm currently going for 4444 + alpha with same settings as the project but there may be faster.

  • Problem with BPEL Console

    Hi all,
    We are facing a peculiar type of problem on BPEL Console.
    Scenario: I have created an empty BPEL process. That process gets initiated by a CSV file present in the specific folder (with the help of file adapter), and subsequently the values from that CSV file is used as an input parameter for calling a procedure (with the help of DB Adapter). The success or failure of the BPEL process is informed to particular set of people through Email. Everything is working perfectly fine including the process instance and the Email part.
    Problem: We are not able to see any instance created on BPEL console if we are passing more than 2000-3000 records in a CSV file. But the process is happening because procedure is doing its work and we are getting the success or failure Email also.
    Point to note, For less than 2000 its working perfectly fine.
    Any help in this case will be helpful for our team.
    Regards,
    Abhi...

    This sounds like a bug in the administrative console. It would be interesting to see what happens if you query the database directly:
    There is a whitepaper that discusses that:
    http://www.oracle.com/technology/pub/articles/bpel_cookbook/blanvalet.html
    The relevant code for you is:
    whereCondition where = whereConditionHelper.whereInstancesStale();
    IInstanceHandle[] instances = getLocator(domainId, domainPassword).listInstances(where);
    BPEL ProcessManager API documentation can be found in [bpelhome]\integration\orabpel\docs\apidocs\index.html
    If this returns all instances, even when there are more than 2000, you know you hit a bug in the management console.
    Hope this helps,
    Lonneke

  • I downloaded Office for Mac 2011, and almost immediately my Yahoo email stopped working, most images were disabled throughout my internet sites, and my bank site reported that I was using a "new computer," which is not true. How can I get my email to work

    I have an iMac version 10.6.8/2.66 GHz Intel Processor and 4 GB memory, with Safari 5.1.10. I had used Office for Mac 2008 but had to upgrade for work. The download (from Amazon) went swiftly, but when I started Word, it did not function too well. Then about an hour later I noticed that my Yahoo email site stopped working, it lost all images and the text just jumbled up on the left side of the screen. No amount of emptying caches or resets/quits/restarts did anything. I called the Internet support, and they just said it was my iMac that had the problem. I have been reduced to using MacMail as my email, but this is tenuous, as my Yahoo account keeps holding things up and constantly asking me for my password (and sometimes it does not accept it). How can I get my computer back?

    The path may be long and tedious, grasshopper.
    Actually, the download of Office 2011 for Mac probably was not legal and may have contained bugs or other things meant to make it unstable, or invite a host of issues. The usual path would be Office 2011 for Mac on DVD so you could reinstall it and add the extras from the disc as needed; or fix the installation later on. The updates for security were downloads from Microsoft servers. You'd need a legitmate version with pass code.
    Options for Mac and office-like application suites include Libre Office, NeoOffice, and these run free. The latter supports up to Mavericks. 10.9.1 now. They have a word, excel, and other parts a lot like the real office.
    If you have a working clone of the system prior to installing the Office 2011 for Mac download and any subsequent and perhaps unseen extras, you could revert to it simply by restarting the computer from the clone, where it resides in externally enclosed self-powered hard disk drive, of a type known to support OS X clones... With ports to help work with most modern Macs. FireWire + USB. Then, clone it back w/ carbon copy cloner.
    Short of that, perhaps someone will see your post and offer some indepth method of hunting down bugs via use of Console logs; and maybe booting into Terminal utility to use unix code. It can be rather involved. Maybe Linc Davis will offer some detailed reply that will invite you to read carefully and try it.
    I've given up using computers long ago.
    A pet raven has been taught to write this.
    Good luck & happy computing!

  • How do i make wls 9.2 stop shutting itself down within eclipse 3.2.2?

    after starting weblogic server 9.2 mp1 from within eclipse
    sdk 3.2.2 build M20070212-1330 for solaris gtk, something
    programatically requests weblogic server 9.2 to shut
    itself down only seconds after the server has started.
    steps to reproduce:
    1. download & install [url http://download.eclipse.org/eclipse/downloads/drops/R-3.2.2-200702121330/]eclipse sdk 3.2.2 build M20070212-1330 for solaris
    (eclipse-SDK-3.2.2-solaris-gtk.zip)
    2. update eclipse sdk with the [url http://download.eclipse.org/webtools/downloads/drops/R1.5/R-1.5.3-200702082048/]Web Tools Platform (WTP)
    1.5.3 plus all of the WTP 1.5.3 pre-reqs
    3. download & install [url http://commerce.bea.com/showallversions.jsp?family=WLS]bea weblogic server 9.2 mp1 binary
    package installer for solaris 9 sparc
    4. confirm that bea weblogic server's sample domain can
    be started from the solaris 9's shell
    $ $BEA_HOME/weblogic92/samples/domains/workshop/startWebLogic.sh
    5. create a j2ee enterprise application by following the
    instructions in [url http://www.eclipse.org/webtools/community/tutorials/BuildJ2EEWebApp/BuildJ2EEWebApp.html]this WTP tutorial
    a. in the "Choose a Server Runtime Environment" step,
    choose BEA WebLogic 9.2 server instead of Tomcat.
    6. start the generic bea weblogic server v9.2.1 from the
    servers view as instructed in the tutorial.
    the eclipse status bar in the bottom right hand corner of
    eclipse indicates that weblogic server 9.2 is starting.
    eclipse then switches focus from the servers view to the
    console view. the console view lists the typical weblogic
    server startup console entries:
    ...<Server state changed to STANDBY>
    ...<Server state changed to STARTING>
    ...<No test table set up for pool "cgDataSource". Connections will not be
    tested.>
    ...<No test table set up for pool "cgDataSource-nonXA". Connections will not be
    tested.>
    ...<No test table set up for pool "samplesDataSource". Connections will not be
    tested.>
    ...[see 13_05_07_eclipse_wls_startup.txt in [url https://bugs.eclipse.org/bugs/attachment.cgi?id=66989]comment #1 attachment of [url https://bugs.eclipse.org/bugs/show_bug.cgi?id=186716]eclipse bug #186716  for full
    console output]
    eventually - but only for a few seconds - the servers view indicates the state
    of the weblogic server as "Started". the following log entries snipped from
    weblogic server 9.2's filesystem logs confirm that the wls did actually start
    at some point:
    ...<Server state changed to RUNNING>
    ...<Server started in RUNNING mode>
    ...<78% of the total memory in the server is free>
    ...[see cgServer.log in  [url https://bugs.eclipse.org/bugs/attachment.cgi?id=66989]comment #1 attachment of [url https://bugs.eclipse.org/bugs/show_bug.cgi?id=186716]eclipse bug #186716  for full log output]
    then eclipse automatically switches focus to the console view again; displaying
    the following:
    $BEA_HOME/weblogic92/samples/domains/workshop/bin/stopWebLogic.sh: 
    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://localhost:7001 with userid weblogic ...
    This Exception occured at Sun May 13 12:35:42 BST 2007.
    javax.naming.CommunicationException [Root exception is
    java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested
    exception is:
            java.net.ConnectException: Connection refused; No available router to
    destination]
    ...[see 13_05_07_eclipse_wls_shutdown.txt in [url https://bugs.eclipse.org/bugs/attachment.cgi?id=66989]comment #1 attachment of [url https://bugs.eclipse.org/bugs/show_bug.cgi?id=186716]eclipse bug #186716  for full
    stack trace]
    the servers view eventually indicates the server has transitioned to the
    "Stopped" state. the problem is, i never commanded neither eclipse or wls to
    shutdown the wls server.
    since the wls server can be successfully started outside of eclipse from the
    shell, and since - once it is successfully started outside of eclipse - wls
    doesn't automatically shutdown as soon as it starts; i suspect there is
    something in eclipse|wtp that is triggering the automatic
    shutdown. but of course, i could be wrong. maybe something
    in wls itself is at fault.
    i encountered this exact same bug in wls 9.0 with eclipse 3.2.2/wtp 1.5.3 on
    solaris 9 sparc (which is what prompted me to upgrade to wls 9.2 on solaris 9
    sparc; see [url https://bugs.eclipse.org/bugs/show_bug.cgi?id=169197]eclipse bug #169197); and i encounter this exact same bug with wls 9.2 with
    eclipse 3.2.2/wtp 1.5.3 in mac os x 10.4.9! there is a
    slight difference in what happens in solaris vs what happens on the mac. on the mac, the exception appears to
    be thrown at a different point (when a wldeploy.xml script
    is executed; not at the point of "Initializing WebLogic
    Scripting Tool (WLST)" like in the solaris installation):
    Buildfile: /Applications/eclipse/plugins/org.eclipse.jst.server.generic.weblogic_1.5.1.v200609141504/buildfiles/wldeploy.xml
    init:
    deploy:
         [echo] Deploying module WTP_WebApp_Tutorial
    [wldeploy] weblogic.Deployer -debug -verbose -noexit -name WTP_WebApp_Tutorial -source /Users/bilbo/development/projects/eclipse_3.2.2_tutorial/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/WTP_WebApp_Tutorial -adminurl t3://localhost:7001 -user weblogic -password ******** -deploy
    [wldeploy] weblogic.Deployer invoked with options:  -debug -verbose -noexit -name WTP_WebApp_Tutorial -source /Users/bilbo/development/projects/eclipse_3.2.2_tutorial/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/WTP_WebApp_Tutorial -adminurl t3://localhost:7001 -user weblogic -deploy
    [wldeploy] [WebLogicDeploymentManagerImpl.<init>():103] : Constructing DeploymentManager for J2EE version V1_4 deployments
    [wldeploy] [WebLogicDeploymentManagerImpl.getNewConnection():146] : Connecting to admin server at localhost:7001, as user weblogic
    [wldeploy] [ServerConnectionImpl.getEnvironment():288] : setting environment
    [wldeploy] [ServerConnectionImpl.getEnvironment():291] : getting context using t3://localhost:7001
    [wldeploy] [ServerConnectionImpl.close():334] : Closing DM connection
    [wldeploy] [ServerConnectionImpl.close():354] : Unregistered all listeners
    [wldeploy] weblogic.deploy.api.tools.deployer.DeployerException: Unable to connect to 't3://localhost:7001': Destination unreachable; nested exception is:
    [wldeploy] java.net.ConnectException: Connection refused; No available router to destination. Ensure the url represents a running admin
    ... also, on the mac the cgServer.log has the following additional log entries:
    ...<Graceful shutdown of cgServer was issued remotely from 10.0.0.9>
    ...<Server shutdown has been requested by weblogic>
    ...<Server state changed to SUSPENDING>
    ... <Server state changed to ADMIN>
    ...<Server state changed to SHUTTING_DOWN>
    ...<Channel "Default[2]" listening on 127.0.0.1:7001 was shutdown.>
    ...in all cases, i have done nothing
    more and nothing less than what the eclipse/wtp and weblogic documentation has
    instructed me to do.
    please, can anybody suggest a fix or a workaround. thanks in advance.
    Edited by wboyd at 05/13/2007 7:48 AM

    thanks rob,
    please, can you clarify what bearing the global system properties mentioned in CR299479 at the bottom of [url http://e-docs.bea.com/workshop/docs92/relnotes/relnotes.html#wp1139954]this page of 9.2.1 release notes have on the timeout value discussed in [url https://bugs.eclipse.org/bugs/show_bug.cgi?id=186902]this eclipse wtp bug report?
    many thanks,
    wboyd

  • IPhone doesn't appear in the desktop

    Hello,
    My PC : HP Elite m9361.ch Vista X64 Edition Familiale Premium
    My iPhone : 3GS 16Mo, OS 3.1.2
    Itunes : 9.0.2.25
    Since few days, I can't see anymore my iPhone under my Desktop (Windows Explorer).
    If I connect it to the USP 2.0 port :
    OK :
    - iTunes see my iPhone, synchronisation is OK, everything is OK with iTunes.
    - Application as iPhoneBrowser 1.9.3.0 see it, folder DCIM too,
    I can transfer pictures with this application.
    - in Devices Managment, I see under Mobile Device "Apple iPhone", it seems OK, in Blue.
    NOT OK :
    - iPhone doesn't appear anymore in the desktop (windows explorer) when I connect it.
    I hear 2 sounds when I connect my iPhone.
    I can't see the folder DCIM anymore.
    - I can import token pictures on my iPhone with HP Essentiel, Windows Pictures, etc,
    but not I choose "Open with Windows Explorer" or "Import Pictures with windows",
    I receive an error message.
    - I tried to desinstall the driver, and then to reinstall it, but a problem appear:
    The driver installation process start, it tells me that drivers are found under Windows update,
    but then I receive the error message :
    "The class installer has denied the request to install or upgrade this device".
    At that point the driver installation apears to be aborted,
    Then i have a yellow triangle for this device in the managment console.
    However I can communicate with the iPhone with iTunes and iPhoneBrowser for exemple.
    I must using "system restore" to recover this bug in the managment console
    and to have this device OK (no more in yellow).
    Can anyone using Vista X64 tell me :
    - About the following registry key :
    [HKEYLOCALMACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E967-E325-11CE-BFC1-08002BE1 0318}]
    Is this key present ?
    Is there an Upper or lower filter on this key ?
    - Wich drivers are installed for this device ?
    I have the following drivers shown for this device in the managment console :
    C:\Windows\System32\WpdConns.dll
    C:\Windows\System32\WpdMtp.dll
    C:\Windows\System32\WpdMtpUS.dll
    C:\Windows\System32\drivers\WpdUsb.sys
    C:\Windows\System32\drivers\WUDFRd.sys
    C:\Windows\System32\drivers\UMDF\WpdMtpDr.dll
    Are others drivers present ?
    - What about the path the following directory :
    C:\WINDOWS\System32\DRVSTORE\usbaapl_872A2434B7205D4BD84BBE53811BDCE15F347D5B
    Does this directory exist ?
    Wich files are present in this directory ?
    Thanks for the help and the attention.
    (and sorry for my bad English, I'm french speaking)

    Can someone tell me about the driver :
    C:WINDOWSSystem32driversusbaapl64.sys
    There is something telling about that :
    http://www.engadget.com/2007/06/30/iphone-not-supported-under-64-bit-windows-xp- or-vista-oops/

  • Unable to order prints anymore... weird iPhoto error

    Hey there,
    I'm unable to order prints from iPhoto anymore, it started before the 8.1.1 update. When I start to upload photos to the Kodak server, after 2Mo is transmitted it bugs. In the console I have the following mysterious error :
    25/11/09 23:11:00 iPhoto[6419] PUT /Documents/49519329/image_0.jpg (FAILED), httpStatusCode:402, errorType:100, transactionState:5, txnId:A749349E-5655-4459-8EC0-E92E465EC788, auto-retries=0, manual-retries=0
    25/11/09 23:11:00 iPhoto[6419] ISCoordinator responseFromUploadFiles: error...
    MessengerContext = <ISNewMessengerContext: 0x199b9fa0>;
    Retry = YES;
    Status = ERROR;
    StatusCode = 402;
    }

    I wondered, reading the output from the Error you posted, if it was having trouble finding particular photos:
    /Documents/49519329/image_0.jpg (FAILED)
    How are you uploading to the Kodak Server? With an app, a plugin to iPhoto, some other way?
    Regards
    TD

  • Search with "Current Node + All Subfolders" not functioning correctly

    Hi,
    We are having an issue with the search function of SCCM 2012 Admin Console. We have built multi-level folder structure to SCCM which matches our organizational unit structure in AD.
    The issue occurs when trying to search with "Current Node + All Subfolders" option in a folder to get listing of all collections nested in the structure. As a result we get incomplete list of collections and majority of them are not showing
    up. Sometimes the console even crashes when trying to do this kind of search. Note that this behaviour only occurs when searching inside a folder, not in the device collections root node.
    We managed to trace the SQL query in the above situation from SMSProv.log, and it is as follows:
    select  all SMS_Collection.SiteID,SMS_Collection.CollectionType,SMS_Collection.CollectionVariablesCount,SMS_Collection.CollectionComment,SMS_Collection.CurrentStatus,SMS_Collection.HasProvisionedMember,SMS_Collection.IncludeExcludeCollectionsCount,SMS_Collection.IsBuiltIn,SMS_Collection.IsReferenceCollection,SMS_Collection.LastChangeTime,SMS_Collection.LastMemberChangeTime,SMS_Collection.LastRefreshTime,SMS_Collection.LimitToCollectionID,SMS_Collection.LimitToCollectionName,SMS_Collection.LocalMemberCount,SMS_Collection.ResultClassName,SMS_Collection.MemberCount,SMS_Collection.MonitoringFlags,SMS_Collection.CollectionName,SMS_Collection.PowerConfigsCount,SMS_Collection.RefreshType,SMS_Collection.ServiceWindowsCount from vCollections AS SMS_Collection  where (SMS_Collection.SiteID
    in (select  all Folder##Alias##810314.InstanceKey from vFolderMembers AS Folder##Alias##810314 
    where (Folder##Alias##810314.ObjectTypeName = N'SMS_Collection_Device'
    AND Folder##Alias##810314.ContainerNodeID in
    (16777237,16777374,16777384,16777385,16777375,16777376,16777377,16777378)))
    AND SMS_Collection.CollectionType = 2) order by SMS_Collection.CollectionName
    From this we noticed that not all ContainerNodeIDs are searched, but a list of only 8 ContainerNodeIDs. These ContainerNodeIDs remain the same if the search is done again in the same folder. The same behaviour repeats also in other folders with a different
    list of ContainerNodeIDs.
    For clarification I'll attach a picture which shows our folder structure with ContainerNodeIDs and ParentContainerIDs. We have also marked the containers which were present in SQL statement. From this you can clearly see there should have been far more ContainerNodeIDs
    than listed in the SQL query. Is this a bug in the admin console or could this be a problem with our site database? Is anyone else experiencing similar issues? We have written a custom
    powershell script that reads containers from SMS_ObjectContainerNode WMI-class recursively and is able to return complete list of folders and their subfolders, so we assume that our site database and WMI on site server is functioning correctly.
    We noticed this on CU2 (could have been present also earlier) and updating to CU3 did not fix the problem. Currently we are running SCCM 2012 SP1 CU3 with one primary site. All components besides distribution point is running on the site server. Distrubution
    point is running on a separate server. Our SQL server is running on the site server.
    Best Regards,
    Juha-Matti

    Sorry for the very long delay. I created the ticket in the autumn of last year and just received the final verdict to this issue.
    Microsoft support said they were able to reproduce the problem and that they contacted the product group about this issue. It turns out that this behaviour is by design (wait, what?) and since it is by design there is nothing they
    can/will do about it.
    So the only choice is to request a tailored customization for SCCM2012, which probably in this case (as it is by design) would cost.
    I feel a bit puzzled: how can it be by design if it clearly does not work?

Maybe you are looking for

  • Apple ID and password nightmares

    For years I've never had trouble with my Apple ID and password. However, I am amazed that I was able to log on here to the discussion board after what I've been going through the past 36 hours. Yesterday, I was trying to renew my MobileMe and it woul

  • Satellite C855-S5194 Windows 8 Recovery OS and software

    Hi, I just bought a Satellite C855-S5194 with Win8  and already created system recovery disks. Now I bought an Office and installed it through Microsoft website (no disk). I would like to create an image for the case the hard drive is broken and not

  • Official documents on escaping characters in SQL Server query statements

    Hi, Are there any official documents on how to escaping special characters in SQL Server query statements? I find a lot of online resources discussing about this, but there are no definitive conclusions on: Which characters should be escaped? (Some o

  • What rubbish is this ?

    I have downloaded a JSF example login.war I m using tomcat5 that has come with JWSDP1.3 when i placed it in webapps folder and started tomcat the example is working fine Then i stoped tomcat and renamed login.war file to login2.war and started tomcat

  • Adding iPhone ringtone w/out losing all music/vids

    As usual, I've only done a cursory search, so if someone knows where the answer is hidden I'll be thrilled to follow where you lead I have tried dragging and dropping and can get some of my ringtones in my music on my iPhones, but not my ringtones. T