Two questions about defining class, pls help me

Hi, guys. I'm green hand and here are two questions puzzled me several days.
We know such example as below is a case of cyclic inheritance
class Base extends Base{     
But I can't figure out why below is a case of cyclic inheritance too
class Base{
class Derived extends Base{
class Base{
I can't find the clue of cyclic inheritance. It's quite different from the case that a class extends itself or its subclass.
Another question is why the inner class can't have the same name of outer?
class Base{
class Base{          
The compiler says Base is already defined in unnamed package. As it says, the inner class is defined in the
unnamed package, but we know below is correct.
class Base{
class Basic{          
class Derived {
class Basic{
We know it's correct. But as the compiler says above, the different two inner class Basic are both defined in the
unnamed package. Why it's valid and why above is invalid?

Hi,
Can you tell us which product (s) you are referring to ? Can you also tell us the nature of your business requirements so that we can offer some suggestions ?
Regards,
Sandeep

Similar Messages

  • Two questions about Risk Management 2.0

    hi experts,
    Please find below two questions about Risk Management:
    -In SPRO, Risk Management>Create top node: after completing information and executing I have this error:
    Error in the ABAP Application Program
    The current ABAP program "/ORM/ORM_CREATE_TOP_NODES" had to be terminated
    because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "/ORM/SAPLORM_API_SERVICES " in
    include "/ORM/LORM_API_SERVICESU10 " in
    line 97:
    "Bei PERFORM bzw. CALL FUNCTION "GET_ORGUNIT_THRESHOLDS" ist der Aktual"
    "parameter "I_ORGUNIT_ID" zum Formalparameter "IV_ORGUNIT_ID" inkompati"
    "bel."
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    The current ABAP program "/ORM/ORM_CREATE_TOP_NODES" had to be terminated
    because it has
    come across a statement that unfortunately cannot be executed.
    Do you know where it could come from?
    -On the Portal>Risk Management
    when I click in a link under the risk management menu(activities and risks, risk report, document risk,...) i alway have an internal server error:
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Do we have to set up some customizing points before accessing these links?
    Thank you !
    Regards,
    Julien

    Hi Julien ,
    I have the same error what u described as :-
    -On the Portal>Risk Management
    when I click in a link under the risk management menu(activities and risks, risk report, document risk,...) i alway have an internal server error:
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator. To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    Do we have to set up some customizing points before accessing these links?    "
    Are you able to solve this. Please let me know how to resolve this???
    Thanks
    Regards,
    Atul

  • Two Questions about Airport Express

    All, I am a recent convert to using a Mac so bear with me.
    I have two questions about the Airport Express.
    Question if I buy one in the USA, I will visiting this week on holiday,can I use it the UK with a UK adaptor/apple plug?
    Can the Express be used with my current wireless network, using a Netgear DG834G V4, I have read lots in the forums about putting a $ sign in front of the WPA password?
    Any help and advice gratefully received.

    Tesserax wrote:
    Hello andixbox. Welcome to the Apple Discussions!
    Question if I buy one in the USA, I will visiting this week on holiday,can I use it the UK with a UK adaptor/apple plug?
    Yes, but at least two things to consider:
    o The US version of the 802.11n AirPort Express Base Station (AXn) only supports radio channels 1-11 in the 802.11g radio mode. Channels 12-14, used in other countries outside the US will not be available.
    o The AXn supports both the 2.4 and 5 GHz radio bands for 802.11n. The 5 GHz band is restricted in certain countries (like the UK) so operating in this mode may get you unwanted attention.
    That should be okay then because the Netgear broadcasts on channels 1-11. I hadn't appreciated the 5 Ghz band, but having checked both US and UK Apple sites the techspecs both mention 2.4 Ghz and 5 Ghz.
    Can the Express be used with my current wireless network, using a Netgear DG834G V4, I have read lots in the forums about putting a $ sign in front of the WPA password?
    If your intent is to have the AXn join the Netgear as a wireless client, then yes it should work. The "$" requirement was for WEP. This shouldn't be necessary for WPA or WPA2.
    I intended to use the AXn as an range extender, but you mention wireless client, is that something different?

  • Two questions about SG300 DHCP server

    Hi,
    I have two questions about the DHCP server on the SG300:
    On the Address Binding page, what does the "Declined" state mean? I have a NAS device that won't pull an address, and I think that the entry with a state of "Declined" corresponds to this device. It was previously pulling an address from a RV180, so the only difference is that it is now connected to the SG300. I worked around this by manually setting the address on the NAS device, but this won't scale if I run into a lot of other devices that can't pull an address.
    I configured a static address binding for a WAP321 and found that instead of pulling the configured address that it pulled a dynamic address. I checked the Address Binding page and see that the dynamic entry that corresponds with the WAP321 has a Client Identifier rather than a MAC address. I changed the static entry for the WAP321 to use the client identifier displayed in the dynamic entry, and now the WAP321 pulls the configured static address. Is this expected behavior?
    Thanks,
    Bob

    With the SX300/500 it is required the client identifier, it doesn't automatically insert it. If static DHCP is made on the switch and you didn't need client identifier, that is more or less fortunate behavior for you
    So to answer this question, the expected behavior is to configure client identifier for static DHCP entry.
    -Tom
    Please mark answered for helpful posts
    http://blogs.cisco.com/smallbusiness/

  • A question about Object Class

    I got a question about Object class in AS3 recently.
    I typed some testing codes as following:
    var cls:Class = Object;
    var cst:* = Object.prototype.constructor;
    trace( cls === cst); // true
    so cls & cst are the same thing ( the Object ).
    var obj:Object = new Object();
    var cst2:* = obj.constructor.constructor;
    var cst3:* = obj.constructor.constructor.c.constructor;
    var cst5:* = Object.prototype.constructoronstructor;
    var cst4:* = Object.prototype.constructor.constructor.constructor;
    var cst6:* = cls.constructor;
    trace(cst2 === cst3 && cst3 === cst4 && cst4 === cst5 && cst5 === cst6); //true
    trace( cst == cst2) // false
    I debugged into these codes and found that cst & cst2 had the same content but not the same object,
    so why cst & cst2 don't point to the same object?
    Also, I can create an object by
    " var obj:Object = new cst();"
    but
    " var obj:Object = new cst2();"
    throws an exception said that cst2 is not a constructor.
    Anyone can help? many thanks!

    I used "describeType" and found that "cst2" is actually "Class" class.
    So,
    trace(cst2 === Class); // true
    That's what I want to know, Thank you.

  • Two Questions about Adobe CS6

    I've recently begun editing a film project and have two questions about Adobe Premiere Pro CS6 that I was hoping someone could answer.
    1. Is there any way to remove the lens edges in a video clip? (without comprimising the quality of it that much)
    2. Is there a way I can put a color filter over clips? (I'm looking for a kind of an old 70s gold-ish filter)
    Thanks

    1. Is there any way to remove the lens edges in a video clip? (without comprimising the quality of it that much)
    Yes.
    It will depend on the degree of lens edge intrusion into the frame,
    but an enlargement of 5-10% or so is not a big problem.
    2. Is there a way I can put a color filter over clips? (I'm looking for a kind of an old 70s gold-ish filter)
    Oh, yeah...  lots of options (including many 3rd party plugins).
    Premiere color correction
    FAQ: How do I learn Premiere Pro?
    http://forums.adobe.com/thread/878529?tstart=0
    Getting Started with Premiere Pro CS6
    http://www.video2brain.com/en/getting-started-with-premiere-pro
    Adobe Premiere Pro Help and tutorials
    http://helpx.adobe.com/premiere-pro/topics.html
    Premiere Pro CS5-CS6 Reference
    (.pdf 12 MB download)
    http://helpx.adobe.com/pdf/premiere_pro_reference.pdf

  • Two questions about the new iWeb

    Hi
    I've got two questions about the new iWeb.
    1. Is it possible to blog online now? Meaning adding a new blog entry without having to be on your own Mac? This is a feature I've been waiting for since iWeb first was released.
    2. Is it possible to choose the format of images? Earlier editions had the option to "optimize" images but that meant it changed it into .png meaning the site got a lot heavier than if .jpg was used. And since I have relatives who still only have an isdn connection I need to be able to have the website as light as possible.
    thanks

    Ah well... thanks for the quick answer
    Message was edited by: Guðlogi

  • Question about inner class - help please

    hi all
    i have a question about the inner class. i need to create some kind of object inside a process class. the reason for the creation of object is because i need to get some values from database and store them in an array:
    name, value, indexNum, flag
    i need to create an array of objects to hold those values and do some process in the process class. the object is only for the process class that contains it. i am not really certain how to create this inner class. i tried it with the following:
    public class process{
    class MyObject{}
    List l = new ArrayList();
    l.add(new MyObject(....));
    or should i create the object as static? what is the benifit of creating this way or static way? thanks for you help.

    for this case, i do need to create a new instance of
    this MyObject each time the process is running with a
    new message - xml. but i will be dealing with the case
    where i will need a static object to hold some
    property values for all the instances. so i suppose i
    will be using static inner class for that case.The two situations are not the same. You know the difference between instance variables and static variables, of course (although you make the usual sloppy error and call them static objects). But the meaning of "static" in the definition of an inner class is this: if you don't declare an inner class static, then an instance of that inner class must belong to an instance of its containing class. If you do declare the inner class static, then an instance of the inner class can exist on its own without any corresponding instance of the containing class. Obviously this has nothing to do with the meaning of "static" with respect to variables.

  • How do I reset my security questions? Normally people are saying something about a rescue email or a thing that will show where your password and security are for me it just shows my two questions  and that is it.- Help

    How do I reset my security questions? Normally people are saying something about a rescue email or a thing that will show where your password and security are for me it just shows my two questions  and that is it.… Help

    Go to Appleid.apple.com and choose Manage ID you can change them from there.
    You can add a rescue email if you don't have one there too.

  • Two questions about of usage of LDAP  in SAP XI-context

    Hello!
    I would like to know whether an LDAP adapter is existing for SAP XI or not?
    It is important for the answer of the following two questions:
    <b>a) Does the solution have Active Directory integration for accessing employee information?      (Yes/No) 
    b)Does the solution have Active Directory integration for accessing employee hierarchy? (Yes/No)      </b>
    Can someone help me by answering the questions above.
    Thank you!
    Regards

    I do not think that there is a LDAP Adapter for XI.
    However, SAP NW has its own LDAP database. There are tools available integrating this LDAP with an external LDAP databse. For example, program RSLDAPSYNC_USER enables synchronizing the User information with the LDAP server.
    Transaction LDAP allows you to define which specific user information is to be integrated.
    I am not sure if there is an option to integrate employee hierarchy. You can check with the transaction LDAP.
    Note that none of this has anything specific to XI. It is available with the NetWeaver itself.
    Good Luck,
    Bhanu

  • Two questions about AppleScript

    Hey,
    Just wondering:
    i) is there a way to make AppleScript wait for a certain amount of time?
    ii) is there a way to repeat the script over and over again?
    Cheers, Ricky.

    If you do just want a pause in the middle of a script, delay is the command you want:
    <pre class=command>delay 10</pre>
    However, I'm guessing your two questions are related - you want to run a piece of code periodically.
    In that case, the easiest way is to write an idle handler. This is called automatically, as often as you define:
    <pre class=command>on idle
    -- your code here
    return 60
    end idle</pre>
    If you save this as a 'Stay Open' script the code will run your code, then wait 60 seconds and run it again, and again, and again, until quit/cancelled.
    The return value indicates how long to wait before calling the idle handler again.

  • Two Questions About SSL

    When I try to stablish a secure connection (via
    https://localhost:7002/AdminMain) the console gives me this error (please
    see
    below), which is the same when I run . startWebLogic.sh to start it.
    Two questions:
    1.- What is this problem about?
    2.- Even with this error, I can see AdminMain in secure mode. Should I be
    worried about the
    error?
    I'm using Weblogic Server Manager 5.1.0 04/03/2000 17:13:23 #66825 (without
    any service pack) on a Red Hat Linux 6.2 Machine & jdk 1.2.2
    Thanks in advance
    Sergio Rios Mendoza
    Departamento de Sistemas
    Corporativo de Servicios Grupo Comercial Mexicana
    PS: this is the error:
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1287)
    at java.lang.Runtime.loadLibrary0(Runtime.java:469)
    at java.lang.System.loadLibrary(System.java:774)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at
    weblogic.security.SSL.ClientKeyExchange.input(ClientKeyExchange.java:132)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.serverInit2(SSLSocket.java:655)
    at weblogic.security.SSL.SSLSocket.serverInit(SSLSocket.java:529)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:219)
    at
    weblogic.security.SSL.SSLSocket.performAcceptHandshake(SSLSocket.java:192)
    at
    weblogic.security.SSL.SSLSocket.getInputStream(SSLSocket.java:1001)
    at weblogic.socket.ResettableSocket.<init>(ResettableSocket.java:30)
    at
    weblogic.socket.JVMSocketManager.accept(JVMSocketManager.java:377)
    at
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(ListenThread.java:50
    6)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1287)
    at java.lang.Runtime.loadLibrary0(Runtime.java:469)
    at java.lang.System.loadLibrary(System.java:774)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at
    weblogic.security.SSL.ClientKeyExchange.input(ClientKeyExchange.java:132)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.serverInit2(SSLSocket.java:655)
    at weblogic.security.SSL.SSLSocket.serverInit(SSLSocket.java:546)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:219)
    at
    weblogic.security.SSL.SSLSocket.performAcceptHandshake(SSLSocket.java:192)
    at
    weblogic.security.SSL.SSLSocket.getInputStream(SSLSocket.java:1001)
    at weblogic.socket.ResettableSocket.<init>(ResettableSocket.java:30)
    at
    weblogic.socket.JVMSocketManager.accept(JVMSocketManager.java:377)
    at
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(ListenThread.java:50
    6)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1287)
    at java.lang.Runtime.loadLibrary0(Runtime.java:469)
    at java.lang.System.loadLibrary(System.java:774)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at
    weblogic.security.SSL.ClientKeyExchange.input(ClientKeyExchange.java:132)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.serverInit2(SSLSocket.java:655)
    at weblogic.security.SSL.SSLSocket.serverInit(SSLSocket.java:546)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:219)
    at
    weblogic.security.SSL.SSLSocket.performAcceptHandshake(SSLSocket.java:192)
    at
    weblogic.security.SSL.SSLSocket.getInputStream(SSLSocket.java:1001)
    at weblogic.socket.ResettableSocket.<init>(ResettableSocket.java:30)
    at
    weblogic.socket.JVMSocketManager.accept(JVMSocketManager.java:377)
    at
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(ListenThread.java:50
    6)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Tue Nov 14 15:31:51 CST 2000:<I> <ServletContext-General> AdminMain: init
    Tue Nov 14 15:31:54 CST 2000:<I> <ServletContext-General> servletimages:
    init
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1287)
    at java.lang.Runtime.loadLibrary0(Runtime.java:469)
    at java.lang.System.loadLibrary(System.java:774)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at
    weblogic.security.SSL.ClientKeyExchange.input(ClientKeyExchange.java:132)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.serverInit2(SSLSocket.java:655)
    at weblogic.security.SSL.SSLSocket.serverInit(SSLSocket.java:546)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:219)
    at
    weblogic.security.SSL.SSLSocket.performAcceptHandshake(SSLSocket.java:192)
    at
    weblogic.security.SSL.SSLSocket.getInputStream(SSLSocket.java:1001)
    at weblogic.socket.ResettableSocket.<init>(ResettableSocket.java:30)
    at
    weblogic.socket.JVMSocketManager.accept(JVMSocketManager.java:377)
    at
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(ListenThread.java:50
    6)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    When I try to stablish a secure connection (via
    https://localhost:7002/AdminMain) the console gives me this error (please
    see
    below), which is the same when I run . startWebLogic.sh to start it.
    Two questions:
    1.- What is this problem about?
    2.- Even with this error, I can see AdminMain in secure mode. Should I be
    worried about the
    error?
    I'm using Weblogic Server Manager 5.1.0 04/03/2000 17:13:23 #66825 (without
    any service pack) on a Red Hat Linux 6.2 Machine & jdk 1.2.2
    Thanks in advance
    Sergio Rios Mendoza
    Departamento de Sistemas
    Corporativo de Servicios Grupo Comercial Mexicana
    PS: this is the error:
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1287)
    at java.lang.Runtime.loadLibrary0(Runtime.java:469)
    at java.lang.System.loadLibrary(System.java:774)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at
    weblogic.security.SSL.ClientKeyExchange.input(ClientKeyExchange.java:132)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.serverInit2(SSLSocket.java:655)
    at weblogic.security.SSL.SSLSocket.serverInit(SSLSocket.java:529)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:219)
    at
    weblogic.security.SSL.SSLSocket.performAcceptHandshake(SSLSocket.java:192)
    at
    weblogic.security.SSL.SSLSocket.getInputStream(SSLSocket.java:1001)
    at weblogic.socket.ResettableSocket.<init>(ResettableSocket.java:30)
    at
    weblogic.socket.JVMSocketManager.accept(JVMSocketManager.java:377)
    at
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(ListenThread.java:50
    6)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1287)
    at java.lang.Runtime.loadLibrary0(Runtime.java:469)
    at java.lang.System.loadLibrary(System.java:774)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at
    weblogic.security.SSL.ClientKeyExchange.input(ClientKeyExchange.java:132)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.serverInit2(SSLSocket.java:655)
    at weblogic.security.SSL.SSLSocket.serverInit(SSLSocket.java:546)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:219)
    at
    weblogic.security.SSL.SSLSocket.performAcceptHandshake(SSLSocket.java:192)
    at
    weblogic.security.SSL.SSLSocket.getInputStream(SSLSocket.java:1001)
    at weblogic.socket.ResettableSocket.<init>(ResettableSocket.java:30)
    at
    weblogic.socket.JVMSocketManager.accept(JVMSocketManager.java:377)
    at
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(ListenThread.java:50
    6)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1287)
    at java.lang.Runtime.loadLibrary0(Runtime.java:469)
    at java.lang.System.loadLibrary(System.java:774)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at
    weblogic.security.SSL.ClientKeyExchange.input(ClientKeyExchange.java:132)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.serverInit2(SSLSocket.java:655)
    at weblogic.security.SSL.SSLSocket.serverInit(SSLSocket.java:546)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:219)
    at
    weblogic.security.SSL.SSLSocket.performAcceptHandshake(SSLSocket.java:192)
    at
    weblogic.security.SSL.SSLSocket.getInputStream(SSLSocket.java:1001)
    at weblogic.socket.ResettableSocket.<init>(ResettableSocket.java:30)
    at
    weblogic.socket.JVMSocketManager.accept(JVMSocketManager.java:377)
    at
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(ListenThread.java:50
    6)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Tue Nov 14 15:31:51 CST 2000:<I> <ServletContext-General> AdminMain: init
    Tue Nov 14 15:31:54 CST 2000:<I> <ServletContext-General> servletimages:
    init
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1287)
    at java.lang.Runtime.loadLibrary0(Runtime.java:469)
    at java.lang.System.loadLibrary(System.java:774)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at
    weblogic.security.SSL.ClientKeyExchange.input(ClientKeyExchange.java:132)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.serverInit2(SSLSocket.java:655)
    at weblogic.security.SSL.SSLSocket.serverInit(SSLSocket.java:546)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:219)
    at
    weblogic.security.SSL.SSLSocket.performAcceptHandshake(SSLSocket.java:192)
    at
    weblogic.security.SSL.SSLSocket.getInputStream(SSLSocket.java:1001)
    at weblogic.socket.ResettableSocket.<init>(ResettableSocket.java:30)
    at
    weblogic.socket.JVMSocketManager.accept(JVMSocketManager.java:377)
    at
    weblogic.t3.srvr.ListenThread$RJVMListenRequest.execute(ListenThread.java:50
    6)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

  • Question about abstract classes and instances

    I have just read about abstract classes and have learned that they cannot be instantiated.
    I am doing some exercises and have done a class named "Person" and an abstract class named "Animal".
    I want to create a method in "Person" that makes it possible to set more animals to Person objects.
    So I wrote this method in class Person and compiled it and did not get any errors, but will this work later when I run the main-method?
    public void addAnimal(Animal newAnimal)
         animal.add(newAnimal);
    }Is newAnimal not an instance?

    Roxxor wrote:
    Ok, but why is it necessary with constructors in abstract classes if we don�t use them (because what I have understand, constructors are used to create objects)?Constructors don't create objects. The new operator creates objects. An object's c'tor is invoked after the object has already been created. The c'tors job is to initialize the newly-created object to a valid state. Whenever a child object is created, the parent's c'tor is run before the child's c'tor, so that by the time we're inside the child's c'tor, setting up the child's state, we know that the parent (or rather the "parent part" of the object we're initializing) is in a valid state.
    Constructor rules:
    1) Every class has at least one ctor.
    1.1) If you do not define an explicit constructor for your class, the compiler provides a implicit constructor that takes no args and simply calls super().
    1.2) If you do define one or more explicit constructors, regardless of whether they take args, then the compiler no longer provides the implicit no-arg ctor. In this case, you must explicitly define a public MyClass() {...} if you want one.
    1.3) Constructors are not inherited.
    2) The first statement in the body of any ctor is either a call to a superclass ctor super(...) or a call to another ctor of this class this(...) 2.1) If you do not explicitly put a call to super(...) or this(...) as the first statement in a ctor that you define, then the compiler implicitly inserts a call to super's no-arg ctor super() as the first call. The implicitly called ctor is always super's no-arg ctor, regardless of whether the currently running ctor takes args.
    2.2) There is always exactly one call to either super(...) or this(...) in each constructor, and it is always the first call. You can't put in more than one, and if you put one in, the compiler's implicitly provided one is removed.

  • Two questions about Preview

    In earlier OS versions, particularly on the MacWorld website, I was able to find a workaround so that PDFs do not automatically open in Safari - and that they are downloaded and pop-up immediately in Preview. Here are my two questions:
    1. Does anyone know of a new workaround for Lion - so that, when I engage a PDF link, it opens directly in Preview?
    2. Preview is now a far-less impressive software, without a "save as" command as well as a few other changes that make no sense. does anyone know a way to modify Preview to add back these functions?
    Thanks so much for any help. would love to share this on my blog once I get it answered.
    Will

    thanks CT.
    1. Couldn't find that menu item in preferences - I'm probably just dense.
    2. Figured. don't like some of the macro changes they made to the OS - perplexing to say the least. Preview is a dog now.

  • Two questions about WSSE

    Hi all,
    I came across the Web Service Security tutorial (Investigate.jws) that comes with WebLogic Workshop. Now I've two questions:
    - How can I test a web service that requires encryption in the request since the test client that Workshop generates doesn't seem to take care of the <encryptionRequired> tag I added to the <wsSecurityIn> element of the WSSE file?
    - How can I expose my WS to a changing set of customers without redeploying the service if I have to declare client aliases (at least) in the WSSE file?
    Can somebdy help solve these issues?
    Regards.
    Antonio.

    You can set usage limits from your my verizon page by purchasing Family Base for 5.00 a month. As for checking your my verizon usage, if your cycle date is really the 12th then it should track your usage from the 13th-12th of every month, like this month for example your my verizon should show you usage from 10/13/2013-11/12/2013.

Maybe you are looking for

  • MacBook Air taking long time to open folder

    Running Mountain Lion when opening folders though finder or saving a file to a folder though an application, seems to take a long time to view contents of a folder. It evetualy popualtes but sometimes takes five to fifteen seconds regardless of view

  • JQuery Ui draggable not working in iOS app

    Hey there, I have built an iOS mobile app using EA and PGB. I have an element which uses jQuery Ui's draggable function. It works perfectly in a web browser but in the final app I am unable to drag the element. I have tried loading the script with bo

  • Bootcamp, XP, MBP 13" and trackpad

    Is there any way to get the trackpad to work under Windows XP on a MBP 13 using bootcamp? I am working a cunning plan to get a devout PC user over to a Mac and a right-click capability is an absolute must on this trackpad. I use the magic trackpad an

  • XI certification - which one?

    Hi, We are an ISV in the area of Trim Optinization (used in the SAP Mill Products scenarios), a SAP partner, and have a product which is already certified on .Net Connector, but not as PBNW. We now want to go for PBNW certification, but are unsure wh

  • NID-00121 error

    Hi everyone, I am having a problem with Oracle 11g NID utility., BANNER Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production PL/SQL Release 11.2.0.2.0 - Production CORE 11.2.0.2.0 Production TNS for HPUX: Version 11.2.0.2.0 -