Differences in ejbc with weblgoic 5.1 and weblogic 6.0.

Differences in ejbc with weblgoic 5.1 and weblogic 6.0.
In wls 5.1 I could use ejbc to compile my beans. I am using the same
scripts to try this using 6.0 but I am getting an error when doing the
ejbc compile. The error is :
<Error> <EJB> <EJB Deployment: com.rawjava.wireless.app.ejb.main.Name
has a class com.rawjava.wireless.app.ejb.main.NameBean which is in the
classpath. This class should only be located in the ejb-jar file.>
This error does not come up when I am using wls 5.1, could you explain
why this is now happening, ie what change in wls 6.0 causes this to
occur. Also what are my options to fixing this.
Thanks,
Eddie

Thanks Michael.
"Michael Girdley" <----> wrote:
I'm sorry to say that you have been given incorrect information. Version
6.0 is the highest quality release ever produced for BEA WebLogic Server.I
would recommend it as your starting point for learning our product.
There is a bunch of new stuff in version 6.0 which I will not enumerate
here. But, I suggest checking out our documentation for the release, which
includes a bunch of information on what we have done. Good luck!
Thanks,
Michael
Michael Girdley
BEA Systems
Learning WebLogic? http://learnweblogic.com
"Drew Bittenbender" <[email protected]> wrote in message
news:3a706018$[email protected]..
We are in the process of eveluating WebLogic 6.0. We have 5.1 installed,but do not have anything in
production yet. We have developed and tested a few applications that donot really hit WebLogic
that hard. We figured that now is the time to upgrade since we don't haveanything in production yet and
since there are some major setup & administrative differences. Throughthe grapevine in our company
someone apparently spoke to our BEA rep who suggested that we stick with5.1 for a while since 6.0 is
apparently very buggy. I looked through the bug reports, and there reallyisn't anything too significant (at least
that relates to our current implementation). Is there any truth to this?Would you not recommend an upgrade
given our situation?
Also, we are planning to attend the WL 6.0 admin training. If we didn'tupgrade to 6.0, would the training be
a waste of time, or could we apply that knowledge to 5.1?
Thank you,
Drew

Similar Messages

  • Difference between Req with insufficient lead time and lead time const

    Hi ,
    1) Can anyone explain the difference between Requirement with insufficient lead time and Requirement lead time constraint exception messages. Both seems to be similar for me with the compressed time.Also at what situations these exceptions are generated.
    2) what is minimum lead time required ,actual lead time and its calculation.
    Thanks...

    Check out
    http://help.sap.com/saphelp_scm50/helpdata/en/99/ed3a981d0f11d5b3fc0050dadf0791/content.htm
    particularly the section "Which functions of the operations relevant to scheduling are supported?"
    It will give you a flavour of what can lead to difference in planning.

  • Problems with Cocoon 2.03 and Weblogic 6.1 SP3

    I am having problems with Cocoon 2.03 and Weblogic 6.1 SP3, when I try to deploy
    the cocoon.war.
    Cocoon works fine when I unpack the cocoon.war into ...\mydomain\applications
    (after I changed cocoon.xconf to use the following transformer factory: org.apache.xalan.processor.TransformerFactoryImpl).
    However, when I deploy the cocoon.war through the weblogic console and try to
    invoke cocoon (http://localhost:7001/cocoon/) I get the following error:
    ERROR (2002-09-26) 11:28.40:859 [sitemap] (/cocoon/) ExecuteThread: '7' for
    queue: 'default'/Handler: Error compiling sitemap
    java.util.zip.ZipException: The system cannot find the file specified
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:110)
         at java.util.zip.ZipFile.<init>(ZipFile.java:125)
         at weblogic.utils.zip.ZipURLConnection.getInputStream(Handler.java:49)
         at org.apache.cocoon.components.source.URLSource.getInputStream(URLSource.java:151)
         at org.apache.cocoon.components.source.URLSource.getInputSource(URLSource.java:223)
         at org.apache.cocoon.components.language.generator.ProgramGeneratorImpl.generateResource(ProgramGeneratorImpl.java:318)
         at org.apache.cocoon.components.language.generator.ProgramGeneratorImpl.createResource(ProgramGeneratorImpl.java:282)
         at org.apache.cocoon.components.language.generator.ProgramGeneratorImpl.load(ProgramGeneratorImpl.java:196)
         at org.apache.cocoon.sitemap.Handler.run(Handler.java:228)
         at java.lang.Thread.run(Thread.java:484)
    I understood that there were problems when the cocoon.war file that did occur
    when you unpacked the war, but I believed that these problems did not occur with
    WLS6.1 SP3.
    Has anyone else encountered this problem and solved it? Any help would be greatly
    appreciated.
    Thanks in advance.
    Paul

    This how I got Cocoon 2.04 up and running on WLS 6.1.4
    Download the Cocoon source from http://xml.apache.org/cocoon/dist/
    Remove all but the following JARs from lib/optional:
    commons-jxpath-1.0.jar
    jing-20020724.jar
    resolver-20020130.jar
    servlet_2_2.jar
    commons-logging-1.0.jar
    jtidy-04aug2000r7-dev.jar
    rhino-1.5r3.jar
    xt-19991105.jar
    Update lib/jars.xml to reflect these changes
    Issue build commands:
    ./build.sh clean (Note: Always clean first!)
    ./build.sh -Dinclude.webapp.libs=yes -Dexclude.webapp.samples=yes -Dexclude.webapp.documenation=yes
    -Dexclude.webapp.javadocs=yes webapp
    Copy the following JARs to your WLS instance’s lib directory:
    xercesImpl-2.0.0.jar
    xml-apis.jar
    xalan-2.3.1.jar
    xt-19991105.jar
    java/lib/tools.jar
    Sample of config/SERVER_NAME.setenv
    LIB=/path/to/lib
    JARS=$LIB/xercesImpl-2.0.0.jar:$LIB/xml-apis.jar:$LIB/xalan-2.3.1.jar:$LIB/xt-19991105.jar:/opt/java1.3/lib/tools.jar
    JAVACLASSPATH=$JARS:.:$JAVACLASSPATH
    JAVA_HOME=/opt/java1.3
    Deploy the resluting cocoon.war and you should have a Cocoon up and running that
    can do the XML->HTML Hello World sample. The status page works fine too.
    My advice is to launch this stripped configuration first and if needed add more
    features later by adding the JARs of your choice to the class path (or add the
    to your webapp-build if you are confident that WLS are capable of handling their
    manifests).
    Good luck
    /Peter
    "Paul Petley" <[email protected]> wrote:
    >
    >
    I am having problems with Cocoon 2.03 and Weblogic 6.1 SP3, when I try
    to deploy
    the cocoon.war.
    Cocoon works fine when I unpack the cocoon.war into ...\mydomain\applications
    (after I changed cocoon.xconf to use the following transformer factory:
    org.apache.xalan.processor.TransformerFactoryImpl).
    However, when I deploy the cocoon.war through the weblogic console and
    try to
    invoke cocoon (http://localhost:7001/cocoon/) I get the following error:
    ERROR (2002-09-26) 11:28.40:859 [sitemap] (/cocoon/) ExecuteThread:
    '7' for
    queue: 'default'/Handler: Error compiling sitemap
    java.util.zip.ZipException: The system cannot find the file specified
         at java.util.zip.ZipFile.open(Native Method)
         at java.util.zip.ZipFile.<init>(ZipFile.java:110)
         at java.util.zip.ZipFile.<init>(ZipFile.java:125)
         at weblogic.utils.zip.ZipURLConnection.getInputStream(Handler.java:49)
         at org.apache.cocoon.components.source.URLSource.getInputStream(URLSource.java:151)
         at org.apache.cocoon.components.source.URLSource.getInputSource(URLSource.java:223)
         at org.apache.cocoon.components.language.generator.ProgramGeneratorImpl.generateResource(ProgramGeneratorImpl.java:318)
         at org.apache.cocoon.components.language.generator.ProgramGeneratorImpl.createResource(ProgramGeneratorImpl.java:282)
         at org.apache.cocoon.components.language.generator.ProgramGeneratorImpl.load(ProgramGeneratorImpl.java:196)
         at org.apache.cocoon.sitemap.Handler.run(Handler.java:228)
         at java.lang.Thread.run(Thread.java:484)
    I understood that there were problems when the cocoon.war file that did
    occur
    when you unpacked the war, but I believed that these problems did not
    occur with
    WLS6.1 SP3.
    Has anyone else encountered this problem and solved it? Any help would
    be greatly
    appreciated.
    Thanks in advance.
    Paul

  • IPC with JSR 168 portlets and WebLogic Portal 9.2.3

    I have seen examples in this forum indicating that you can implement IPC in JSR 168 portlets by doing the following:
    1. Fire a custom event in the processAction() method of one portlet.
    2. Handle the custom event in another portlet that is listening for the event.
    3. The listening portlet should contain a method such as
    processMyCustomEvent(ActionRequest req, ActionResponse resp, Event event)4. The method is mapped as a handler for the custom event in the listening portlet's +.portlet+ file:
    <netuix:javaPortlet definitionLabel="jsr168EventPortlet" title="JSR168 event portlet">
       <netuix:handleCustomEvent event="myCustomEvent" eventLabel="customEventOne" filterable="true" description="custom event handler">
          <netuix:invokeJavaPortletMethod  method="processMyCustomEvent" />
       </netuix:handleCustomEvent>
    </netuix:javaPortlet>However, the examples I've found in this forum seem to pertain only to installations of WebLogic Portal 10.x or higher.
    Does this JSR 168 IPC approach work for WebLogic Portal 9.2.3?
    (The example provided in the WL Portal 9.2.3 documentation uses a Backing File to handle the event instead of invoking a method in the portlet class itself.)
    Any clarification that can be provided would be much appreciated. Thanks.
    Edited by: user13297286 on Jun 15, 2010 2:02 PM

    Hello,
    Yes, JSR168 portlet IPC is supported in WLP 9.2, and you can use the "invokeJavaPortletMethod" (recommended) or the invokeBackingFileMethod in the .portlet file to configure your portlet to receive events.
    Kevin

  • OutOfMemory issue with Axis 1.3 and Weblogic 10.3.6

    Hi All,
    We are facing OutofMemory issue (permGen memory) when we do hot deployment of a web application to Weblogic 10.3.6. We have hosted some webservices in this application using Axis 1.3. When i remove Axis configuration from application the issue is gone. Heap dump analysis is showing some weblogic ThreadLocale classes which are holding references to Axis generated classes. Did any one face this issue?. Or any patch provided by Oracle.
    Thanks,
    Arif.

    GlassFish V3 reports the following for the same issue - note: Illegal character ((CTRL-CHAR, code 31)):
    SEVERE: Couldn't create SOAP message due to exception: XML reader error: com.ctc.wstx.exc.WstxUnexpectedCharException: Illegal character ((CTRL-CHAR, code 31))
    at [row,col {unknown-source}]: [1,1]
    com.sun.xml.ws.protocol.soap.MessageCreationException: Couldn't create SOAP message due to exception: XML reader error: com.ctc.wstx.exc.WstxUnexpectedCharException: Illegal character ((CTRL-CHAR, code 31))
    at [row,col {unknown-source}]: [1,1]
            at com.sun.xml.ws.encoding.SOAPBindingCodec.decode(SOAPBindingCodec.java:292)
            at com.sun.xml.ws.transport.http.HttpAdapter.decodePacket(HttpAdapter.java:276)
            at com.sun.xml.ws.transport.http.HttpAdapter.access$500(HttpAdapter.java:93)

  • Visualage and weblogic !!!

    Hi ,
    I was wondering if there is someone who has used these two products
    namely Visualage and Weblogic together.
    Regards
    Suchak Jani

    We integrate with the Professional version of VAge which doesn't support JSPs.
    Their Enterprise version does, but is tightly coupled to WebSphere and an
    earlier release of the JSP spec.
    You can do debugging of JSPs in VAge but you'll need to convert them to java
    servlets first (use weblogic.jspc, see the JSP documentation.
    -dana
    suchak wrote:
    >
    Dana ,
    Please could you tell us about JSP's within the integration of VAge 2.0 and
    WebLogic 4.5.1.
    Regards
    Suchak Jani
    "suchak" <[email protected]> wrote in message
    news:8f6fug$baa$[email protected]..
    Hi Dana ,
    Thank you for your reply !
    I have a question though ...
    BEA currently provides a integration with VAge 2.0 and WebLogic 4.5.1.This Integration , does it incude JSP's ??
    Regards
    Suchak Jani
    "Dana Jeffries" <[email protected]> wrote in message
    news:[email protected]..
    BEA currently provides a integration with VAge 2.0 and WebLogic 4.5.1.
    We're getting ready to beta the VAge 3.02 Integration Kit for WebLogic5.1.0.
    The beta should be available around the middle of the month. Check out
    weblogic.beta.tools.visualage for a notice of the release.
    Dana Jeffries
    BEA WebLogic Engineering
    suchak wrote:
    Hi ,
    I was wondering if there is someone who has used these two products
    namely Visualage and Weblogic together.
    Regards
    Suchak Jani

  • HT1338 can i replace my mac with a newest model and pay a difference

    can i replace my mac with the newest model and pay a difference>>>

    Sorry. No.
    Apple does not have a trade-in policy.
    Best.

  • What's the difference between the iPad wifi and iPad wifi   3g? Okay, so I'm planning to buy an iPad and would like to know more of the details. I know that ipad wifi   3g would offer me with internet usage anywhere and anytime.

    What's the difference between the iPad wifi and iPad wifi   3g? Okay, so I'm planning to buy an iPad and would like to know more of the details. I know that ipad wifi   3g would offer me with internet usage anywhere and anytime.

    Welcome to the Support Communities. The differences are spelled out here:
    http://www.apple.com/ipad/specs/
    ...For example, note that the Wi-Fi + Cellular model has assisted GPS for more accurate pinpointing of your geographic location.

  • DIFFERENCE BETWEEN EXTENDED WITH HOLDING AND CLASSIC WITHHOLDING TAX

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. >
    HI
    What is the difference between classic with holding tax and extended with holding tax ...
    teja.k

    Check this site.......
    http://help.sap.com/saphelp_erp2004/helpdata/en/2d/936b3ae886616ae10000000a114084/content.htm

  • What is the Difference with FMLE 3.1 and 3.2? having problems with my stream

    What is the difference with FMLE 3.1 and 3.2?
    I am having major problems with my live stream, i am currently using FMLE 3.1 and using a Imac computer.
    The stream seems to be delayed by 20mins and keeps on crashing
    I have a 2MB upload speed and frame rate 25.00 and bit rate 800 kbps fromat VP6
    Can anyone help me with getting the settings right and what is the best computer to use to allow FMLE not to crash and stream to run smooth?
    Please Help
    Thank you

    Hello!
    I would be interested in helping you with your question. You are going to need to provide a little more information about your current configuration in order for me to better understand your issue. Until then, I'll do my best to answer your quesitons.
    There are subtle changes from 3.1 to 3.2. Both are stable releases. With your setup, you should be using 3.2.
    Issues with FMLE typically deal with your capture card. The issues you are having sound like a streaming server issue. Stream delayed 20min? This isn't typical behavior. What streaming media server are you usign? FMS or Wowza? Define 'crashing'. Anything in the output log in FMLE or is your server 'crashing'.
    Thank you,
    Stephen Apple
    Independent Broadcast

  • I want to know if there is any possibility to replace my old macbook with a new one and pay a price difference ?

    i want to know if there is any possibility to replace my old macbook with a new one and pay a price difference ? I have a 2008 Macbook that is slowly failing on me and i wanted to know if there is any possibility to bring it to an apple store and swap it with a newer one and pay a small amount of money? If not does anyone have another suggestion how not to pay that much money to buy a new one and/ or maybe seling my old one for some money ?
    Thank you would appreciate any help !

    RockayaAbdel wrote:
    I have a 2008 Macbook that is slowly failing on me and i wanted to know if there is any possibility to bring it to an apple store and swap it with a newer one and pay a small amount of money?
    No.  but you can sell it privately and use the proceeds towards a newer used model.

  • Is there a difference between the Lightning to USB included with an iPhone 5 and the one sold separately?

    I recently purchased 2 iPhone 5's and two Lightning to USB cables in addition to the ones that came with the phones.  We tried to use the first L to USB with the power adapter and it wouldn't work.  Then today I tried to use the second L to USB in my macbook pro and it came up with the USB too much power error, so I tried to use it with the power adapter and it wouldn't charge.  So I got the L to USB that came in the phone box and it works with my laptop and the power adapter?  It just seems weird that 2 out of 2 cables wouldn't work.
    Items used:
    MacBook Pro 17" Mid 2010
    iPhone 5 (2 different ones)
    Lightning to USB Cable (sold separate) (2 different ones)
    Lightning to USB Cable (included in phone box)
    iMac
    5V USB Power adapter (2 different ones)

    You need a pair of good cables, period. When I got my i5 and seeing what a battery hog it is, immediately got a second Lightning cable from an Apple Dealer. Both that and the one in the box have worked flawlessly.
    So yeah, you've got excellent arguments for demanding a good working set. The fact that one gives the dread "too much power" issue is indicative of an internal short or damage.

  • Difference between using app server connection pooling and using the driver

    Hi all,
    How to get connection pooling with out application server and tomcat also?
    What is the difference between using app server connection pooling and using the driver supported connection pooling?
    Regards,
    Murali

    maybe the performance of App server pool is better than the JDBC pool,
    for you don't know wether the implementation of the JDBC interface is good or bad.

  • Difference between the design of clusters PCLx and others like RFBLG etc .

    There are a few nagging questions which I was not able to find in the forum hence i have to post a new question.
    I am a little confused about the difference between the different clusters .
    If i start with RFBLG i.e. the cluster for BSEG BSEC etc ,I can see that the tables which are part of this cluster
    can be viewed through different methods like
    1) whr usd list for RFBLG
    2) dd02l table and give the required parameters there
    now when I compare this with another so-called cluster PCL1 if find that PCL1 is not recognized as  a cluster
    and also I am not able to see the same in dd02l table when i give PCL1 and the tabtype as cluster which I was able to see
    for the RFBLG ,there are other tables similar to RFBLG .
    1) SO what is the difference between the RFBLG type of clusters and the PCLx type of cluster
    2) are pclx and rfblg..type of clusters same ?
    3) why does PCL1 shows that it is a transparent table ? where as rfblg shows in a diff way in se11
    4) i know we access data from PCL1 using import and export stmts ,DO OR CAN WE DO THE SAME FOR RFBLG
    5) I found that each and evry cluster table had diff fields ,this was kinda surprising for me as I had been thinking
    that all cluster tables need to follow a certain rule ,SO WHO DECIDES THE FIELDS OF A TABLE CLUSTER ?
    6) PCL1 has the index button enabled ,which again I think is not according to the cluster table rules?how?
    7) I understand that we can save data in form of internal tables in the PCL1 cluster ,can we do the same in RFBLG ?
    8) Can I think on lines that PCL1 and RFBLG type of cluster are two totally different types of data dictionary objects
    and the usage and implementation of both of them is different and that the design and the BASE of both of such objects
    is different .
    I know this is a long list but I am sure that answers to these questions would really require some one who has really really work hard and invested a lot of time in understanding the dictionary system.I am awaiting a few answers ,few hints and a healthy discussion till we get them .
    Thanks ...
    a

    Hello,
    1/
    BSEG is a typical Cluster Table.
    This means that the physical table BSEG does NOT exist in the database, physical data for BSEG is stored in the database (table) cluster RFBLG.
    In ABAP however you can perform selects on BSEG (with all fields from the SAP repository structure, see SE11 on BSEG), during execution the SAP database layer will translate these statements to physical selects in the RFBLG database table, so in ABAP this is transparant.
    More info :
    [http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f083446011d189700000e8322d00/content.htm|http://help.sap.com/saphelp_nw04/helpdata/en/cf/21f083446011d189700000e8322d00/content.htm]
    2/
    PCL1, PCL2, ... are normal SAP transparent tables, however in HR they are often called HR cluster table.
    Transparent tables are SAP objects where there is also a database table with the same name that contains the physical data.
    However the PCL tables are somewhat different from normal transparent tables (data is compressed, external programs can not interpret the data, ...).
    This means that in ABAP you can not use simple SQL statements to access data in PCL tables (because of compressed format).
    In stead statements like EXPORT TO DATABASE and IMPORT FROM DATABASE need to be used.
    More info :
    [http://fuller.mit.edu/hr/cluster_tables.html|http://fuller.mit.edu/hr/cluster_tables.html]
    Wim

  • Initial Print jobs 'communication error with device'. Pause and restart job

    So, I have an odd variant of the Leopard print problem; on 3 separate systems.
    When I print to an HP Photosmart C7180, which setup fine, which I can scan to fine, the print job throws an error :error communicating with device, switch on and off' and so forth. It does that from any app, and consistently. I am printing via bonjour, the printer is networked, but on a static IP.
    To fix this EVERY-TIME I PAUSE printer, then start printer again. It immediately starts working, consistently until I sleep, log out, or don't print for a while.
    This seems to be some timeout issue or such. I tried IP printing, but no difference.
    Resetting the print system also did not help.
    It's not catastrophic but sooo annoying. Any input appreciated!
    Thx,
    Dan

    Hello SunnygirlQ. Welcome to the Apple Discussions!
    Unfortunately, not all USB printers are compatible with AirPort base stations. In addition, the AirPort's USB port does not support the "advanced" printer functions, like scanning, copying or faxing, of multi-function printers.
    To see if your printer is compatible, take a look at this iFelix Unofficial AirPort Printer Compatibility link.
    If your printer isn't listed, it doesn't necessarily mean it won't work, but simply that it has not been verified. iFelix also provides the following workaround for printers not on the list that would certainly be worth a try.
    Also you can try this Apple Tech Support article to see if it will help:
    o Printer troubleshooting for AirPort Extreme and AirPort Express
    I assume that this printer works just fine when it is connected directly to your Mac ... correct? If so, has it worked when connected to the AX in the past ... or has it always had this problem? If it did work correctly before, did you do any updates, especially to the AX, recently?

Maybe you are looking for

  • Custom list templates not deployed

    Hi everyone, Today I came across a wierd issue while creating some lists in SP 2010 programmatically. I created a few lists schema, list templates and list instances declaratively. I deployed my package and everything seems to work as expected so far

  • Down payment through cash journal

    hi, i have a requairment i.e travel advance to employees, we treated every employee as a vendor, how can do this travel advance to employees thanks and regards venkat ravi

  • IOS 7 on iPhone 4S: my photos are partially synched in iCloud!

    I noted that from iOS7 my iPhone4S has a strange behaviour with "myphotos" section. Not all the photos are synched in iCloud. How to force it? Any suggestion?

  • Help cannot reset apple id

    Cannot reset my apple id as I entered the wrong date of birth at the start and now cannot remember that date of birth. Help what can I do?

  • Zenwsreg returned the following error code: 404

    L.S. I'm having problems importing workstations. I've already configured a number of networks, and only on this one I'm having problems. The problem in short: Workstations don't get imported. On the prompt I get: Zenwsreg returned the following error