Need Help with Comprehensive Interview Questions  Weblogic server admin

Hi
I would like to thank everybody in advance
I am beginner with weblogic server administration and i would greatly appreciate if someone share the comprehensive interview Questions
PLEASE HELP ME
Regards
Schelako

Hi Schelako,
You will get many links regarding weblogic Interview questions on Google.
For basic Weblogic interview questions and answer you can follow the below links
http://www.coolinterview.com/type.asp?iType=469
https://sites.google.com/site/weblogicadminsite/weblogic-issues/weblogic-interview/wla-interview-questions
https://sites.google.com/site/weblogicadminsite/weblogic-issues/weblogic-interview/WLA-Interview-Questions--2
https://sites.google.com/site/weblogicadminsite/weblogic-issues/weblogic-interview/weblogic-administrator-interview-questions-3
As you said "I am beginner with weblogic server administration"
It would be better if you start Oracle doc's for Weblogic Administration
Regards
Fabian

Similar Messages

  • HT5699 The country I am living in is not on the Apple Contact Support list and I need help with my security questions.

    I am currently living in Tunisia but it's not on the Apple Contact Support list. I need help with my security questions which I cannot remember the answers. There is no link to send a reset email. What do I do?

    Click here and ask the iTunes Store staff for assistance.
    (114040)

  • Need help with getResource() problem under weblogic 6.1

    Hey all,
              I've got a serious problem that I can't figure out. This should be really
              simple - but it's alluding me. I have an ear file with a number of servlets
              inside it. This ear file also contains a resource that my servlets want to
              read from. This resource is located (within the ear file) at:
              "/content/structure/a.txt". The file contains raw ascii.
              To have my serlvet read from this file, I thought it would be as simple as:
              URL content =
              servlet.getServletContext().getResource("/content/structure/a.txt");
              // pw is an instance of PrintWriter
              pw.print(content.getContent());
              However, when I execute the above I get the following exception:
              java.lang.NullPointerException
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              at java.net.URLConnection.getContentHandler(URLConnection.java:979)
              at java.net.URLConnection.getContent(URLConnection.java:581)
              OK, so fine - I figure that I'm new to this. The documentation for the URL
              class tells me there is another way around this. It says that rather then
              calling getContent() directly, I can open a stream on the URL and read from
              that, like so:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              FileInputStream fis = content.openStream();
              but when I do this I get the following different exception:
              java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              Apparently this thing is trying to return a web-logic-specific stream (which
              is incompatible with an FileInputStream) - which I don't want to use or
              learn about since I want my stuff to work under other webservers.
              Can anyone tell me what I'm doing wrong? This should be simple.
              -john
              John Hilgedick
              WisdomTools, Inc.
              [email protected]
              

    Wenjin,
              I appreciate your response. I tried treating it as a normal InputStream -
              but it didn't make any difference. Here's what I did:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              InputStream is = (InputStream)content.getContent();
              And here's the exception:
              java.lang.NullPointerException^M
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)^M
              at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)^M
              at java.net.URLConnection.getContent(URLConnection.java:554)^M
              at java.net.URL.getContent(URL.java:807)^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              You can see that it is definitely breaking somewhere in getContent().
              If you have any other ideas, I'd appreciate hearing about them.
              -john
              ----- Original Message -----
              From: "Wenjin Zhang" <[email protected]>
              Newsgroups: weblogic.developer.interest.servlet
              Sent: Wednesday, November 20, 2002 5:03 PM
              Subject: Re: Need help with getResource() problem under weblogic 6.1
              >
              > The "/" in getServletContext().getResource("/content/structure/a.txt")
              means the
              > web (WAR) application root, not your EAR root.
              >
              > The ClassCastException is because that content.openStream() is not
              FileInputStream
              > and has nothing to do with Weblogic. You should treat it as normal
              InputStream.
              >
              >
              > "John Hilgedick" <[email protected]> wrote:
              > >Hey all,
              > >
              > >I've got a serious problem that I can't figure out. This should be
              really
              > >simple - but it's alluding me. I have an ear file with a number of
              servlets
              > >inside it. This ear file also contains a resource that my servlets want
              > >to
              > >read from. This resource is located (within the ear file) at:
              > >"/content/structure/a.txt". The file contains raw ascii.
              > >
              > >To have my serlvet read from this file, I thought it would be as simple
              > >as:
              > >
              > >URL content =
              > >servlet.getServletContext().getResource("/content/structure/a.txt");
              > >// pw is an instance of PrintWriter
              > >pw.print(content.getContent());
              > >
              > >However, when I execute the above I get the following exception:
              > >
              > >java.lang.NullPointerException
              > > at
              > >java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              > > at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)
              > > at java.net.URLConnection.getContent(URLConnection.java:581)
              > >
              > >OK, so fine - I figure that I'm new to this. The documentation for the
              > >URL
              > >class tells me there is another way around this. It says that rather
              > >then
              > >calling getContent() directly, I can open a stream on the URL and read
              > >from
              > >that, like so:
              > >
              > >URL content =
              >
              >servlet.getServletContext().getResource("/content/structure/scenario2resour
              c
              > >es.txt");
              > >FileInputStream fis = content.openStream();
              > >
              > >but when I do this I get the following different exception:
              > >
              > >java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              > > at Utility.writeFileToOutput(Utility.java:134)^M
              > >
              > >Apparently this thing is trying to return a web-logic-specific stream
              > >(which
              > >is incompatible with an FileInputStream) - which I don't want to use
              > >or
              > >learn about since I want my stuff to work under other webservers.
              > >
              > >Can anyone tell me what I'm doing wrong? This should be simple.
              > >
              > >-john
              > >
              > >
              > >--
              > >John Hilgedick
              > >WisdomTools, Inc.
              > >[email protected]
              > >
              > >
              >
              

  • HT5312 i need help with the security questions is there some way to get you to remind me what they were from e-mail or other wise

    I need help with the security Questions is there some way to get you to remember them by e-mail of other wise

    Read the HT5312 page that you posted from, it has instructions for how to reset them i.e. if you have a rescue email address set up on your account then steps 1 to 5 half-way down that page should give you a reset link.
    If you don't have a rescue email address then you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • Need help with how to reset bios and admin password to reformat hard drive in 8440p elitebook.......

    need help with how to reset bios and admin password to reformat hard drive in 8440p elitebook? removal of cmos, resetting laptop, using cccleaner, windows password recovery and hiren's was noneffective, any help is appreciated. thanks

    Hi,
    As your notebook is a business class machine, security is more stringent - the password is stored in non-volatile memory and there are no 'backdoor' passwords.  Your best option would be to contact HP regarding this.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • I need help with my security questions/answer?

    I forgot my security questions answer

    The Three Best Alternatives for Security Questions and Rescue Mail
        1. Use Apple's Express Lane.
              Go to https://expresslane.apple.com ; click 'See all products and services' at the
              bottom of the page. In the next page click 'More Products and Services, then
              'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
              ID security questions' and click 'Continue'. Please be patient waiting for the return
              phone call. It will come in time depending on how heavily the servers are being hit.
         2.  Call Apple Support in your country: Customer Service: Contacting Apple for support or
              Apple ID- Contacting Apple for help with Apple ID account security. Ask to speak to
              Account Security.
         3.  Rescue email address and how to reset Apple ID security questions.
    How to Manage your Apple ID: Manage My Apple ID

  • Need help with Apache on OS X Server 10.4.8

    I am unable to get mod_rewrite to work... Additionaly, bonjour is not working at all.
    I am wondering if there are any known issues (that I could not find) and/or helpful solutions. I was considering doing a recompile based on the instructions found at http://lists.apple.com/archives/macos-x-server/2005/Apr/msg01171.html
    I am not sure if these instructions are valide for the 10.4.8 environment... os if anyone knows fore-sure please do let me know.

    Sorry, I thought the goal was to get the RewriteRules working - recompiling Apache seemed like the harder approach to me (with no chance of it working if the flaw was in the RewriteRule statement itself )
    That said, the instructions you reference will probably work. As will downloading the source from apache.org and running their standard build. It won't be the same as the build as shipped by Apple, though.
    The issue is that everyone's instructions on how to build apache (including the one you reference) suits a particular individual's needs/expectations of what s/he wants. In this case they wanted SSL, but you might or might not want/need that. You might need other modules they didn't include, though, so there's no guarantee their build will work for you.
    In any case you're not going to get the custom Apple modules including 'apple_auth', 'apple_spotlight', 'hfs_apple' or 'spnego_apple'. These are developed by Apple and included in their build but are not part of the standard Apache distribution. You might find the source for them in the Darwin source but I've never looked.
    So, in summary, there are so many ways to build apache, with so many combinations of features and modules, it's impossible to say whether that'll work for you since everyone's situation is different.

  • Need help with the classic question: iMac or MacPro?

    HI all,
    I have been tossing this questions for a little while now, high end iMac or low end MacPro? So if I can request your patience, please allow me to rattle this lot off and see if you can help.
    My current spec is:
    • MacPro 1,1
    • 2 x 2.66 Dual Core Xeon
    • I have 2 screens, 24"
    • All 4 internal bays have HDs, 1 is designated for TimeMachine.
    • 2 external HDs, 1 for iTunes and misc, 1 for boot HD backup.
    The software I run are mostly the Adobe CS suites, some 3d, some audio, and soon some FCPX.
    I have had the computer for about 4 years now, and although it has served me very well it is getting tired etc. I am a long-term tower computer fan, but I can't ignore the question.
    So, I have been thinking of either:
    • Going for the high-end iMac, and consolidate much of my internal HDs into an external RAID system.
    or
    • Getting the low-end MacPro, with the 3.2ghz Nehalem chip upgrade, and basically keep the same 'style' of system I have now.
    The
    What would you recommend? My concern is of course related to price, and bang for the buck, but more than that - longevity for the upcoming years. Pretty much now is the time when I will be updating, and I expect to keep whatever system for the next few years.
    I don't see my uses for the Mac to be too much different from what is listed above. I have not installed anything other than additional HDs and RAM into my current Mac - so in that respect expandability isn't too much of an issue.
    The price is similar enough to be comparable.
    In case you wonder, the current MacPro has been earmarked for use in another task, which is likely to include usage of the screens... Hence in somerespects, this is a "starting from scratch" situation...
    Thoughts?
    Many thanks,
    Aaron

    Forgot to mention Aperture. Lot's of photos.

  • Need help with recomendations on licenses for Server 2012 Std R2

    I have a client who wants to purchase a server from me. I can buy the parts and assemble the system no problem. But I'm a newbie when it comes to user CALs or device CALs. The company will be having about 50 computers connecting to it. I'm assuming they'll
    just be using the standard user/password domain login.
    What else would I need to purchase in addition to the OS?
    What kind of features does the vanilla server OS give you? Can 50 computers connect to just the OS alone? I've seen places that have a 1 user CAL for $36. Do I need 50 of these? If I don't purchase them right away, could my client still connect their computers
    to the server?
    mr.t

    Hello,
    Licensing Windows Server 2012 comes in four different flavours foundation, essentials, standard and datacenter.
    Your client is wanting connect 50 users which really does rule out two of those flavours.
    Essentials is ruled out because it is an OEM operating system and only supports up to 15 users and has limited functionality
    Foundation is rules out because it only supports up to 25 users and has limited functionality
    This leaves us with two Windows Server 2012 flavours you can purchase Standard or Datacenter.  They both have exactly the same functionality; the difference is the virtualisation
    rights.  With standard one license covers two physical processors and supports two virtual machines, if you need more virtual machines then you would have to buy another standard license and giving the right to four virtual machines for example.  Then
    for datacenter license covers two physical processors and covers you for an unlimited amount of virtual operating systems.
    To make this hopefully easier:
    1 x standard license covers = 2 x physical processors – 2 x virtual operating systems environments
    1x datacenter license covers = 2 x physical processors – unlimited virtual operating environments 
    Both Standard and Datacenter come with Full functionality
    Meaning standard licensing is really for no or very limited virtual environments, then if you are looking in to a virtual environment Datacenter is the way to go.
    On regards to CALS are required for every user or device accessing the server.  They/you will need to decide whether or not you go for Device or user CALs.  User CAL
    is more expensive but it gives companies a lot more flexible if the users are running more than one device for example if they support a bring your own device strategy.  Although there are different types of CALS depending on what the customer will be
    looking to use and access. 
    Also can your user still connect to the server: technically speaking yes, CALS are not like license keys you cannot activate them it is effectively a piece of
    paper to say you have purchased X amount CALS and your compliant to allow your users to connect. So you can connect with out purchasing but you will not be compliant from a licensing standpoint.
    Hope this helps to some degree!
    Cheers,
    Harry

  • Need Help with VPN and 10.5 Server

    I am at my wits end trying to get my VPN set-up on my X-serve running 10.5 server. Here is what I have for a set-up.
    I have set-up my X-Serve as a Standard Server install.
    I have put "pinholes" in my router using the following port info:
    1701 UDP L2TP - Mac OS X Server VPN service
    1723 TCP PPTP - Mac OS X Server VPN service
    When I try to log-in remotely, it says it is connecting and then comes back with "The Connection has failed. Please verify your settings and try again." I know my my log-in and password is correct.
    Any help or direction at all would be VERY much appreciated. I am completely out of ideas after trying for a week. Thanks!

    hi,
    i've opened ports 47/all (called GRE), 50/all (called ESP), 1701/L2TP, 500/VPN and 4500/IKE-NAT when using L2TP for VPN. i'm not sure if 47 and 50 are related to VPN or IChat, but i guess it's VPN
    the other ports you mentioned might be related to PPTP for VPN which you actually don't need. try restrict them to the ports i listed when using L2TP, try and if it doesn't work, open 47 and 50. it is important that these two ports support both TCP and UDP because actually they are not TCP nor UDP because they use something similair like ICMP (used for ping).
    br,
    günther

  • Need Help with a Java Question Plz

    Hi
    Could someone help me out with this please?
    I need to know the difference between the two String methods equals and equalsIgnoreCase
    Thanks

    The former tests if the Strings are equal, the latter tests if they're equal, but ignores case...
    I.e. "A".equalsIgnoreCase("a") returns true, among other things...

  • I need help with my sercuity questions. I for got what they was. Can you help me?

    Can someone help me figured out what my sercuity question is?

    If you have a rescue email address (which is not the same thing as an alternate email address) set up on your account then go to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you should see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address (you won't be able to add one until you can answer 2 of your questions) then you won't get the reset option - you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • New user needs help with Email account questions

    Good day - I have been a 10-year user of Blackberrys (Curve, Bold, and earlier models). Just received a new Q10 for work. Enterprise Outlook synched up and I am getting all emails, calendar, and contact information as in the past. All good with this. Here are my questions I cannot find answers to anywhere:
    1) How can I insert a "signature" with emails I compose from Q10?
    2) How can I delete all emails on Q10, rather than one at a time?
    3) How do I set the Q10 to only delete from phone and not network. In other words I only want to delete emails from the Q10 device and not my PC.
    Appreciate any help. Thank you,
    Chris

    #3 is even easier
    Go to Hub settings, then display and actions and drag down, you'll see the option 'delete'.
    Regards.
    Blackberry! Here, now, forever!

  • HELP!! i need help with the security question reset

    i clicked send reset to ********@me.com but @me.com doesnt work anymore so how do i change my email for the security questions!?!?!

    Reset Security Questions
    Frequently asked questions about Apple ID
    Manage My Apple ID
    Or you can email iTunes Support at iTunes Store Support.
    If all else fails:
      1. Go to: Apple Express Lane;
      2. Under Product Categories choose iTunes;
      3. Then choose iTunes Store;
      4. Then choose Account Management;
      5. Now choose iTunes Store Security and answer the bullet questions, then click
          Continue;
      6. Sign in with your Apple ID and press Continue;
      7. Under Contact Options fill out the information and advise iTunes that you would
          like your security/challenge questions reset;
      8. Click Send/Continue.
    You should get a response within 24 hours by email.
    In the event you are unsuccessful then contact AppleCare - Contacting Apple for support and service.
    Another user had success doing the following:
    I got some help from an apple assistant on the phone. It is kind of round about way to get in.
    Here is what he said to do and it is working for me...
      a. on the device that is asking you for the security questions go to "settings", > "store" >
          tap the Apple ID and choose view"Apple ID" and sign in.
      b. Tap on payment information and add a credit/debit card of your preference then select
          "done", in the upper right corner
      c. sign out and back into iTunes on the device by going to "settings"> "store" > tap the
          Apple ID and choose "sign-out" > Tap "sign -in" > "use existing Apple ID" and you
          should be asked to verify your security code for the credit /debit card and NOT the
          security questions.
      d. At this time you can remove the card by going back in to edit the payment info and
          selecting "none" as the card type then saving the changes by selecting "done". You
          should now be able to use your iTunes store credit without answering the security
          questions.
    It's working for me ...I just have to put in my 3 digit security pin from the credit card I am using.
    Good Luck friends!

  • URL: newbie needs help with simple programming question!

    Hi everyone,
    Please direct me to a FAQ or other resource, or help me with this problem:
    I want to create a text field (or similar container) that contains both ordinary text AND a URL/hyperlink in it. For example, the following text might appear in the text field:
    "I have many _pictures_ from my vacation"
    where the word "pictures" is actually a hyperlink to a web site, and the other portions of the string are simple text.
    All advice and help is appreciated!
    -Dennis Reda
    [email protected]

    Well here is one way you code do it but if you do alittle research on them links above it will explain how this code works.Well it will explain how jeditorpane and hyperlinklistener work
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.event.*;
    import java.net.*;
    public class b extends javax.swing.JApplet implements HyperlinkListener  {
       JEditorPane field = new JEditorPane();
      public b() {
        Container pane = getContentPane();
        FlowLayout flo = new FlowLayout();
        pane.setLayout(flo);
        field.setPreferredSize(new Dimension(200, 25));
        field.setEditable(false);
        pane.add(field);
        setContentPane(pane);
         String gg1 = "<html><body>I have many_<a    href='http://www.home.com'>pictures</a>_from my vacation</body></html>";
         field.addHyperlinkListener(this);
         field.setContentType("text/html");
         field.setText(gg1);
      public void hyperlinkUpdate(HyperlinkEvent e) {
         if (e.getEventType() == HyperlinkEvent.EventType.ACTIVATED) {
          try{
            URL url = new URL("http://www.msn.com");
            getAppletContext().showDocument(url,"_self"); 
            }catch(Exception r) {};
      public void init()  {
         b c = new b();
    ps hope this helped                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • Target Display Mode: Lenovo T420 DisplayPort to iMac (2nd screen) does not work

    Configuration: - Laptop Lenovo T420, DisplayPort, Windows 8.1 - DisplayPort cable, Adapter to Mini DisplayPort - iMac (Intel, 27-inch, Mid 2011) as 2nd screen, connected via Mini DisplayPort Adapter, Mavericks OSX 10.9.1 Problem: - iMac does not star

  • How to change the font direction?

    There are many titlewindows in my application, so I have to lay out them in order. I wanna change the panel size, position, and the direction of panel title in order to display the title readability when the titlewindow is vertical. But I can't find

  • WD ABAP -OSA- LSO integration

    Hi All, We have implemented EHP4 - WD ABAP based appraisals , we have used free enhancement  -HRHAP00_ENHANCE_FR11 to get the courses from LSO ( integration) . Through this badi we are able to see and add all the courses under lso , we have a require

  • How to Install oracle workflow and why we need Oracle Application Server

    I want to install and configure Oracle Workflow using Oracle 10g Please help me and guide me with the process in deatial from scratch what should i need to install Oracle Database Oracle Application server middle tier Oracle Content Management SDK Al

  • Can't open bridge cs4 after installing Mac OS Yosemite

    Installed Yosemite on iMac a few days ago. Now, when I try to launch Bridge CS4, the screen goes black momentarily and Bridge doesn't open. I tried downloading PSE 9 and Organizer, but I don't like them. Can I replace Bridge CS4 with a later version?