WebLogic problem with Eclipse

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

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

Similar Messages

  • Want to integrate weblogic server with eclipse

    Hi,
    I am trying to integrate weblogic with eclipse. so that i can start the weblogic server from my eclipse. can you please give me a point to a location from where i can download the plugin.
    And also i want my eclipse to support the j2ee development. what can i do for this. I want my jsps and servelets should work like eclipse default behavior, that is listing the api methods and highlighting the java code.
    Please help me by providing a point. I searched with google for considerable time, as i couldn't find out, requesting your help
    Thanks

    Seems Eclipse Galileo doesn't have support for WebLogic 10.3 rather it supports only up to 10.0 of WebLogic Server. Thanks.

  • Compilation's problems with eclipse

    hello
    in working for my thesis with eclipse I have see that the modify to source code have not effect in runt-time
    In effect I have an file .class, I modify the source file .java, I compile and i go this in run with the Eclipse command <<run>> but the behavior not change.
    I don't lie because i appnd a
    system.out
    to main of a class and in run-time the print is'nt.
    What's appened?
    I not remober about modify about Eclipse's configuration ????
    What do you think??
    thank for every feed-back
    Alessandro Puzielli

    Ehm...
    I use Eclipse over Linux.. I have runned Eclipse as
    "root" a few of day ago and Eclipse's behaviort was
    ok. After I have lanched Eclipse as normal user and
    in effect I try to overwriter the *class of root and
    it's impossible!it's normal 'cause you don't have the permissions on the project files
    I have take a few of day for the understand the
    problem with a
    $ stat name_of_file_.classThanks for the responses!so if your project is a small project, start Eclipse as normal user and rewrite your project ! otherwise, log u as root and give you all the permission on the project and it may work (chmod 777 -R project_path)
    peace
    fred

  • Comparable problem with eclipse

    I want to use "Comparable" in eclipse, but always has a problem with a steatment that " The type Comparable is not generic; it cannot be parameterized with arguments <Node>".
    program is here:
    public class Node implements Comparable<Node>
         public int value;
         public boolean LeftchildSent; //used for checking if leftchild sent the value to the node at last round
         public boolean RightchildSent; //...
         public boolean ParentSent; //...
         //constructor
         public Node(int value, boolean LeftchildSent, boolean RightchildSent, boolean ParentSent, Node left, Node right)
              this.value = value;
              this.LeftchildSent = false;
              this.RightchildSent = false;
              this.ParentSent = false;
         //implements comparable
         public int ComparableTo(Node n)
              if(value < n.value) return -1;
              if(value == n.value) return 0;
              if(value > n.value) return 1;
    }anybody help, thanks very much

    Be sure to:
    1- Use a JRE System Library 5.0+ for your project.
    (Properties / Java Build Path / Libraries)
    2- Use a compiler compliance level 5.0+ for your project.
    (Properties / Java Compiler / Compiler Compliance Level)
    3- Change your last method to:    public int compareTo(Node n) // *** bad name used
            if(value < n.value) return -1;
            if(value > n.value) return 1;
            return 0; // *** be sure to have a return statement
        }or better:     public int compareTo(Node n)
            return value - n.value;
        }

  • Problem with Eclipse  -- pls help

    hi
    When i execute the application in debug mode with one break point :
    These are the errors i get and the compiler is not stopping at the break point .
    Pls help :
    Thread [main] (Suspended (exception ClassNotFoundException))     
         ClassLoader.findBootstrapClass(String) line: not available [native method]     
         Launcher$ExtClassLoader(ClassLoader).findBootstrapClass0(String) line: not available     
         Launcher$ExtClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader.loadClass(String, boolean) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available     
         Launcher$AppClassLoader(ClassLoader).loadClassInternal(String) line: not available

    If the compiler is not stopping at your breakpoint, then it probably means that the java code you're looking at and the compiled class file are out of synch. If you're getting a classnotfound, then your classfile most likely is either not there or is not where expected.
    Check the output folder in project's properties (which may or may not be the default), and see if your classfiles are actually there. Perhaps there is some error that is preventing your classfile from being generated (Eclipse sometimes won't even be able to compile), so check the problems dialog.
    Try refreshing your project, and if all else fails, restart Eclipse/delete & create the project again. That sometimes magically fixes things. Otherwise, welcome to the quirkiness of dealing with Eclipse!

  • Problem with Eclipse 3 and Lomboz 213

    Hi, I am pretty new in working with Eclipse, and i?ve been trying to create a small j2ee aplication just to try, but I?m having problems when trying to create an EJB, everything goes fine (I created a component with a method, then I added this module but when generating the interfaces.....) until I have to genrate the EJB classes. When I click in "generate EJB Classes" for my component, I get this error:
    "Error generating EJB Reason: J2EEAction.internal "
    I have no idea what it might be, if somebody knows or has any suggestion of any kind please e-mail me to [email protected]
    I don?t know if its a bug of the lomboz, if it is, please tell me what to do.
    Thanks.

    I don?t know if its a bug of the lomboz, if it is,
    please tell me what to do.It is a bug in Lomboz. It has a forum here: http://forge.objectweb.org/forum/forum.php?forum_id=360.

  • Problem with Eclipse - CVS

    I am using CVS with Eclipse. I have small problem here. If I just open any file under source control & even if I don't change anything its showing as changed [the dirty > tag comes].
    What could be the reason/setting needed ?
    Thnks.

    This is not the right forum for this question. You might have better luck at one of the Eclipse newsgroups:
    http://www.eclipse.org/newsgroups/index_all.php

  • J2ME/Eclipse Pulsar/Polish UI - problem with Eclipse integration of JPolish

    Hi guys,
    I have J2ME SDK 3.0 here with Eclipse Pulsar (with mobile tools for java) and I want to use the J2ME Polish libraries.
    I install J2ME Polish 2.1.2 and set the eclipse home directory and the "Integrate mepose with eclipse" tick or something like that.
    Anyway, when I restart everything after the installation I can't see the plugin view in my eclipse.
    I also can't manage to manually download the plugin from Help>Install new Software>add url : ww.j2mepolish.org/mepose
    Any ideas ? I'm new to J2ME at all.
    Thank you in advance

    Likewize .. the Polish UI dont show in prefs. Tried with both win/mac but same result.
    Its seems like j2mepolish-2.1.2 and pulsar dont want to play ,(
    Why?
    cheers/k.

  • Problems with Eclipse 3/JMechanic profile

    Hi
    Anybody has tryed to use JMechanic profiling tool with Eclipse???? I have not succedded at all!!!
    I am using Eclipse 3.0, JMechanics 0.5.5 an SDK 1.4.2.
    I am trying to run "JMechanics" to do profiling on a simple program with two classes.
    In Eclipse, I use the Debug to start the JMechanics on my main class. The program executes all right however I get a lof of error messages from JMechanics.
    Does anybody have any ideas why JMechanics/profiling is failling???
    Output from jMechanics:
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR : got a NULL trace in class_load
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to resolve a method id
    HPROF ERROR: got NULL trace in obj_alloc
    HPROF ERROR: unable to map JVMPI obj ID to hprof obj ID in globalref_alloc
    HPROF ERROR: unable to map JVMPI obj ID to hprof obj ID in globalref_alloc
    HPROF ERROR: class ID already in use
    Dumping Java heap ... allocation sites ... CPU usage by sampling running threads ... done.

    You might try J2SE/SDK 1.5.0, the hprof in it is new. But I have no idea if Eclipse works with 1.5.0.

  • Starting Weblogic server with eclipse.

    Hi,
    I am trying to start the web logic server through Hudson build.I have specified the goals in pom.xml and i am using cargo plugin (maven). When i build using Hudson. It builds the war file and copies to folder so when the weblogic starts it uses that war file. But in my case the the war file is copied to correct location where the server expects it when it starts but when it tries to deploy it takes from the Hudson location where it was created can anyone help me with this? i need some help with this so that when i deploy it picks the correct war file.
    I have the pom.xml that i was using.
    Thanks in advance.
    <plugin>
    <groupId>org.codehaus.cargo</groupId>
    <artifactId>cargo-maven2-plugin</artifactId>
    <version>1.0</version>
    <configuration>
    <wait>false</wait>
    <container>
    <containerId>${container.name}</containerId>
    <home>${container.home}</home>
    <log>${container.server.home}/servers/${container.server.name}/logs/${container.server.name}.log</log>
    <output>${container.server.home}/servers/${container.server.name}/logs/${container.server.name}.out</output>
    <timeout>600000</timeout>
    </container>
    </configuration>
    <executions>
    <execution>
    <id>start-container</id>
    <phase>pre-integration-test</phase>
    <goals>
    <goal>start</goal>
    <goal>deploy</goal>
    </goals>
    <configuration>
    <home>${container.server.home}</home>
    <type>existing</type>
    <properties>
    <cargo.java.home>${container.java.home}</cargo.java.home>
    <cargo.servlet.port>${container.port}</cargo.servlet.port>
    <cargo.jboss.configuration>default</cargo.jboss.configuration>
    <cargo.rmi.port>1099</cargo.rmi.port>

    Hope your pom.xml file is not suitable to WebLogic. it is for Jboss.
    Let me point you to right link here: https://docs.sonatype.org/display/M2ECLIPSE/Using+Maven+with+application+servers#UsingMavenwithapplicationservers-Weblogic
    Change your pom.xml file accordingly and let us know what is the situation for your eclipse.
    Edited by: PavanBhavanishekhar on Nov 2, 2010 12:52 PM

  • Integrate EP iVew with weblogic, problem with IE7

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

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

  • Redarding WebLogic integration with Eclipse

    hi users,
    This is babu.
    My query is can we integrate WebLogic 8.1 Server
    and Eclipse 5x with the support of Java 1.5.0

    weblogic 8.1 is certified for jdk 1.4 by bea.
    use weblogic 9.2 - that's up to jdk 1.5
    as far as eclipse goes, you're on your own.
    %

  • Jboss Server starting problem with eclipse

    {color:#000080}+i am using eclipse 3.4.2 and jboss.When i start jboss serve the following error is getting!!!!+{color}
    {color:#993300}DEPLOYMENTS IN ERROR:
    Deployment "TransactionManager" is in error due to the following reason(s): **ERROR**, java.lang.ExceptionInInitializerError: java.net.MalformedURLException: unknown protocol: e
    Deployment "jboss.jca:service=WorkManager" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.jca:service=WorkManager' **
    Deployment "jboss:service=invoker,type=unified" is in error due to the following reason(s): Configured
    Deployment "<UNKNOWN DefaultUserTransactionprovider>" is in error due to the following reason(s): ** UNRESOLVED Demands 'TransactionManager' **
    Deployment "jboss:service=TransactionManager" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss:service=TransactionManager' **
    Deployment "jboss.jca:service=CachedConnectionManager" is in error due to the following reason(s): ** NOT FOUND Depends on 'jboss.jca:service=CachedConnectionManager' **
    Deployment "jboss.web:service=WebServer" is in error due to the following reason(s): Configured{color}
    Its URGENT
    Thanks in advance_+                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Problems like this don't cease to amaze me.
    We are in the year of 2009 and this problem is most probably caused because jboss is started from a path which contains one or more space.
    Try move your jboss installation or eclipse installation (i am not familiar how jboss in installed inside eclipse) to a folder with no spaces and the problem should go away.
    It is sad that nice software like jboss has stupid bugs like this. Oh and it migh not be jboss but the JVM. It is silly in any case...

  • [SOLVED] Android Development Problem with Eclipse

    Hello,
    Although in the past I had managed to play around with Android in Eclipse, after my clean install of Arch Linux I... cannot.
    To be more specific I have installed everything ArchWiki suggests (as I have done in the past) but when I open Eclipse to add /opt/android-sdk to the path of Eclipse, it turns out that there is no Android section on the Preferences menu. I have unistalled and reinstalled everything 2 times but no luck.
    What am I missing?
    Thanks in advance.
    Last edited by Aventinus (2011-08-01 20:15:00)

    Thank God! Answers! :-P
    @jdarnold According to the ArchWiki about Android,  I have to add /opt/android-sdk to the prefences. But that's not the point. The point is that Eclipse does not recognize Android SDK. It's like I haven't installed it. I unistalled Eclipse 3.7.1 and downgraded to 3.6.1 to check if that's the problem but still no luck.
    As I reinstalled android-sdk-platform-tools I got this message:
    warning: directory permissions differ on opt/android-sdk/
    filesystem: 755 package: 775
    Any ideas what does that means? I think that's the problem. I don't remember something like that in the past.
    EDIT: After leaving a comment to the maintaner of the package android-sdk-platform-tools (http://aur.archlinux.org/packages.php?ID=45904) it was fixed!
    Thank you all for your responses!
    Last edited by Aventinus (2011-08-01 20:14:39)

  • Strange problem with Eclipse, JAXB and JBoss

    Hello,
    I've been confronted to a very strange problem for the last week, and I still can't manage to fix it. I'm working on a J2EE application, using JBOSS. One of its functionality require the use of XML parsing. For this task, I've used JAXB since everyone in my company use this library. So I've written a small test class, that read my XML file, unmarshal it to java beans, and then write it back to another file (just for testing purpose only, I'm not trying to make the worst "copy" implementation ever done :) .)
    jaxbContext = JAXBContext.newInstance(ObjectFactory.class.getPackage().getName());
    Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
    //Unmarshal from XML to Bean
    XMLResult result = (XMLResult)unmarshaller.unmarshal(new File("path/to/file/myTestFile.xml"));
    //[Test] marshal back to XML
    Marshaller marshaller = jaxbContext.createMarshaller();
    marshaller.marshal(result, new File("path/to/file/output.xml"));When I run this file, I first get an error about namespaces...
    unexpected element (uri:"http://myNamespace.com", local:"XMLResult"). Expected elements are <{http://myNamespace.com/}Patient>,<{}Episode>, ..... <{}XMLResult>, etc...
    (Result is the root, patient and episode are sub elements)
    I have absolutely no idea why my root (XMLResult) should have no namespace, but some other elements should, and some shouldn't... but that's not the real problem. I've tried to fix this for days, changing namespaces, removing them.. but it didn't work. And then, I once chose to clean my project in Eclipse, and re-run my test. and it worked... !
    After some changes to the XSD, I re-run XJC, then recompile my project, and re-deploy it to JBOSS. I ran my test once more and... same error as before. Then, again, I clean the project.. and the test worked.
    So when I use the basic compiler for eclipse, everything works, but if I choose to use ant to build and deploy, it won't... even if they are supposed to be the same (run configuration / jre / use same as workspace). Here is an example of XML file I'm trying to read, and the related XSD :
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
    elementFormDefault="qualified"
    targetNamespace="http://myNamespace.com"
    xmlns:ar="http://myNamespace.com">
    <xs:element name="XMLResult">
         <xs:complexType>
              <xs:sequence>               
                   <xs:element ref="ar:Patient"/>
                   <xs:element ref="ar:Episode"/>
              </xs:sequence>          
         </xs:complexType>
    </xs:element>
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <XMLResult xmlns="http://myNamespace.com">
      <Patient >
      </Patient>
      <Episode >
      </Episode>
    </XMLResult>Any idea of what I'm doing wrong? I think I've tried everything.... and looked everywhere, but had no success :/ I still don't know why it work with the basic compilation, or why my namespaces are wrong... (if they are).

    I don?t know if its a bug of the lomboz, if it is,
    please tell me what to do.It is a bug in Lomboz. It has a forum here: http://forge.objectweb.org/forum/forum.php?forum_id=360.

Maybe you are looking for

  • String index out of range 12348

    hI, While creating external datasource i am getting error string index out of range 12348 thanks

  • Error in PO using  BAPI

    Hi,    Hi i created upload prog for PO using BAPI_PO_CREATE1.I got the below error.so what will be problem whether the error is in the code are in the template.pls solve my issue. the error is as below. Creation of PO using Enjoy BAPI unsuccessful Th

  • Installing OS X on a NEW hard drive

    I just installed a new hard drive on the macbook pro. however, when i run the installation disk it never actually installes os x instead it trys to install the applications, but cant find the drive. How do I install OS X on a new hard drive? Thanks.

  • How BlazeDS & Flex Talk? Very Urgent

    Thank you for reading this post, I am new to BlazeDS - and Status: i)   Installed Flex 3 ii) JDK is installed. iii)  Downloaded BlazeDS Turnkey, and done the JAVA_HOME setups, started the tomcat server Issue Navigation : Click on Flex> File> New> Fle

  • "Incompatible files" No install disk. Now what?

    I have an old iMac -350 MHz G3 running OS 9.1- that I only use with my workhorse of a scanner. I've tried to network via Ethernet and a router with my newer iMac -1.8 GHz G5 running OS 10.3.9- with intermittent success. Sometimes an icon comes up on