BUG? - Unable to configure custom viewhandler

Hi.
I'm experiencing difficulties with my attempt to configure a custom viewhandler, i.e. by sub-classing the ViewHandlerImp class.
My plan was to use the viewhandler to switch render kit IDs, based on the URL mapping.
It is possible to do this when using MyFaces but it seems that with ADF Faces there is no ViewHandler that can be subclassed, i.e. ADF faces has it's own ViewHandler implementation.
I attempted to subclass the org.apache.myfaces.application.jsp.JspViewHandlerImpl class, overriding the CalculateRenderKitId() method to return "oracle.adf.core" as the kit id.
This is all that is needed with MyFaces, i.e. returning "HTML_BASIC" when loading a MyFaces jsp page, with the correct mappings, works OK.
There then should be no need to specify the default kit id, i.e. via:
<default-render-kit-id>
oracle.adf.core
</default-render-kit-id>
in the faces-config.xml file, i.e. you can then switch render kits at will in order to plug in rendering for different output formats based on the file extension mapping *.jspx, *.jspw, to switch, for example between HTML, WML, SVG output formats.
I also tried to subclass the oracle.adfinternal.view.faces.application.ViewHandlerImpl class but this doesn't seem possible since it doesn't have a parameterless base constructor and there is no documentation.
Is there any way of doing this or is there a fix for this in the pipeline?
I am using Apache MyFaces with EA19.
Thnks..

I got different setting advise from verizon store, verizon online and from charter.  all said something different.  I eventually got it to work using the regular pop.charter.net for incoming and smtp.charterinternet.com for outgoing.  No secure connection...  no verification certificate...  and the port is 25.  I have a droidX also.

Similar Messages

  • Configuring custom output

    Hi All,
    I want to configure a custom output for Idoc messaging/ printing purpose. So I have used NACE to create a new output type then unable to configure the access sequence fully. I am getting error "Corresponding entry in "Accesses" missing" while trying to config via transaction V/50.
    Can you please tell me what the steps in details are?

    Hi
    The language to be used is in parameter CONTROL_PARAMETERS, and it can't change it as it's an IMPORT parameter.
    Then the language is transferred to the global data %HEADER-LANGU and %LANGUAGES-LANGU1, u can't try to change them.
    also refer the link
    how to change the language in smartform?
    Regards,
    Dhina..
    Edited by: Dhina DMD on Aug 2, 2011 9:26 AM

  • JET install: ERROR: Unable to configure network interface Exiting to shell

    Using SUNWjet v4.4.4 I'm trying to build a server using update 5 x86 which seems
    to work with one notable exception. The JET server and the build server do not
    reside on the same subnet. In order to get around not being able use PXE boot
    to boot the build server I'm booting from DVD after making the following modifications
    to the grub menu entry:
    kernel /I86PC.Solaris_10-1/multiboot kernel/unix - install nowin -B
    install_config=x.x.x.x:/opt/SUNWjet,
    sysid_config=x.x.x.x:/opt/SUNWjet/Clients/testclient,
    install_media=x.x.x.x:/export/install/media/s10u5-x86,
    install_boot=x.x.x.x:/export/install/media/s10u5-x86/boot
    This seems to kick off the installer however it fails to bring up the network interface:
    SunOS release
    Configuring devices
    Solaris Interactive Text ( Console Session )
    ERROR: Unable to configure network interface Exiting to shell
    # ifconfig bge0 x.x.x.x up netmask 255.255.255.0
    # route add default x.x.x.1
    # exit
    Using RPC
    Installation continues without any errors
    It seems that I'm forced to bring up the interface manually each time.
    This is what the template looks like:
    base_config_ClientArch=i86pc
    base_config_ClientEther=XX:XX:XX:XX:XX:XX
    base_config_ClientOS=s10u5-x86
    base_config_client_allocation="grub"
    base_config_products="custom eiscd sds"
    base_config_sysidcfg_nameservice=NONE
    base_config_sysidcfg_network_interface=PRIMARY
    base_config_sysidcfg_ip_address=x.x.x.x
    base_config_sysidcfg_netmask=255.255.255.0
    base_config_sysidcfg_root_password="XXXXXXXXXXXX"
    base_config_sysidcfg_system_locale="en_CA.UTF-8"
    base_config_sysidcfg_timeserver=
    base_config_sysidcfg_timezone="Canada/Eastern"
    base_config_sysidcfg_terminal=vt100
    base_config_sysidcfg_security_policy=NONE
    base_config_sysidcfg_protocol_ipv6=no
    base_config_sysidcfg_default_route=x.x.x.1
    I've also tried setting the following:
    base_config_sysidcfg_network_interface=PRIMARY
    vs
    base_config_sysidcfg_network_interface=bge0
    I don't mind doing this manually but of course I would much rather have it work automatically.

    Try giving more network interface settings in the sysidcfg settings:
    network_interface=value {primary hostname=host_name
                              default_route=ip_address or NONE
                              ip_address=ip_address
                              netmask=netmask
                              protocol_ipv6=yes_or_no}
    See http://docs.sun.com/app/docs/doc/817-5504/6mkv4nh2r?a=view

  • Custom ViewHandler

    is this enough and right way to create custom ViewHandler -
    public class CustomLocaleViewHandler extends ViewHandlerWrapper {
    protected ViewHandler getWrapped() {
    return new CustomLocaleViewHandler();
    i don't get any compilation error.
    however it gives stack over flow error at run time -
    java.lang.StackOverflowError
         at javax.faces.application.ViewHandler.(ViewHandler.java:70)
         at javax.faces.application.ViewHandlerWrapper.(ViewHandlerWrapper.java:62)
         at com.lr.bos.lifecycle.CustomLocaleViewHandler.(CustomLocaleViewHandler.java:17)
         at com.lr.bos.lifecycle.CustomLocaleViewHandler.getWrapped(CustomLocaleViewHandler.java:20)
         at javax.faces.application.ViewHandlerWrapper.calculateRenderKitId(ViewHandlerWrapper.java:117)
         at javax.faces.application.ViewHandlerWrapper.calculateRenderKitId(ViewHandlerWrapper.java:117)
         at javax.faces.application.ViewHandlerWrapper.calculateRenderKitId(ViewHandlerWrapper.java:117)
    what other methods i should override?
    thanks.

    To extend WebCenter Portal View Handler you have to:
    1) Create a class extending oracle.webcenter.portalframework.sitestructure.handler.CustomViewHandler
    public class ApplicationViewHandler extends CustomViewHandler {
         * Constructor
         * @param viewHandler
        public ApplicationViewHandler(ViewHandler viewHandler) {
            super(viewHandler);
    }2) Register it in faces-config as follow:
    <application>
        <default-render-kit-id>oracle.adf.rich</default-render-kit-id>
        <view-handler>com.merchan.portal.util.ApplicationViewHandler</view-handler>
    </application>3) You can override all the methods that you want: Sample:
        * Extend to address issue with bug 11076967 involving login
        @Override
        public String getActionURL(FacesContext fctx, String viewId) {
            String urlStr = viewId;
            if (Beans.isDesignTime()) {
                return this.m_baseHandler.getActionURL(fctx, urlStr);
            // Only perform the pretty url lookup if the request was from our
            // navigation processAction
            if (isRequestDrivenByNavigation(fctx)) {
                SiteStructure model =
                    SiteStructureContext.getInstance().getCurrentModel();
                if (model != null) {
                    SiteStructureResource resource = model.getCurrentSelection();
                    if (resource != null) {
                        String resourceViewId = findTargetViewId(fctx, resource);
                        if (resourceViewId != null &&
                            resourceViewId.equals(viewId))
                            urlStr = "/" + SiteStructureUtils.encodeUrl(resource.getPrettyUrl());
            String ret = this.m_baseHandler.getActionURL(fctx, urlStr);
            return ret;
        }Regards.

  • Unable to configure Outlook with ASA firewall and IWSVA

    Dear Sir,
    We are unable to configure MS outlook in our network  which is having IWSVA proxy and cisco ASA 5510 firewall.
    snapshot of outlook error details are attached for your reference.
    In our network L3 is behind IWSVA which is behind cisco ASA 5510.
    when we change following NAt rule and ACL incoming rule it works fine
    nat (inside,outside) source static any interface unidirectional
    nat (inside,outside) source static obj_Proxy interface unidirectional
    access-list 100 extended permit ip any any
    access-list inside_access_in extended permit ip object-group Proxy_Server any
    all required ports are allowed in IWSVA also please tell me if we have to make any changes in IWSVA like mapping ports etc.
    Thanks in advance
    Regards:
    Anand Singh Dhouni

    Hello Anand,
    I already replied to you on the other post, Please mark this as answered so we can focus on one ticket and avoid duplicates.
    For more information about Core and Security Networking follow my website at http://laguiadelnetworking.com
    Any question contact me at [email protected]
    Cheers,
    Julio Carvajal Segura

  • Unable to configure reporting services on Web(sharepoint) server where DB(SQL )server is insatlled on another machine.

    Hi Team,
    We have reporting services and sharepoint 2010 installed on one server and DB(Sql server2008 R2 )server installed on another machine. But we are unable to configure reporting(SSRS) on the web(sharepoint)server. Is there any similar configuration
    done on any of your environments and can you please suggest us the workround/resolution.
    Regards,
    Sobha Muyida

    Hi ,
    Iam unable to insert the image/error screenshot here as I have created the account yesterday which throws me email verification error. Though , I have given the error details above. Please suggest accordingly. PFB the details again :
    while building OLAP cube, we are facing below errors with build failure. And DB server is running fine.
    ===== Initiating OLAP database build process =====
    [6/10/2014 12:03 PM] Cube build request message has been added to the Project Server queue
    ===== Verifying and running pre-build server event handler =====
    [6/10/2014 12:04 PM] Verifying and running pre-build server event handler
    ===== Determining database and OLAP database structure =====
    [6/10/2014 12:04 PM] Cube build initialization started
    [6/10/2014 12:04 PM] OLAP database and cube structure was determined successfully
    ===== Building database and cubes =====
    [6/10/2014 12:04 PM] Cube build session started
    ===== Process Completed =====
    [6/10/2014 12:04 PM] Failed to build the OLAP cubes. Error: Failed to connect to the Analysis Services server ServerName. Error: A connection cannot be made. Ensure that the server is running.
    Regards,
    Sobha

  • Adobe plugin for Outlook in 2013 unable to configure to load at startup

    Windows 7 Pro, Office 2013 Home and Business
    I don't see a registry key for the plugin, there's no properties in Outlook for the plugin
    Manually loads properly and functions properly, however unable to configure it to load when Outlook starts.
    Any ideas?

    Hi jeremyh77032804,
    Please open Outlook and go to 'Tools > Options > Add-Ins' and select 'COM Add-ins' option under Manage label and click Go.
    From the new dialog box that appears, select Acrobat PDFMaker Office COM Addin and click OK.
    Also, please confirm the location of PDFMaker add-in is under "C:\Program Files (x86)\Adobe\Acrobat 11.0\PDFMaker\Mail\Outlook"
    Do you have the administrative privileges to this location specified above?
    Please let me know.
    Regards,
    Anubha

  • UNABLE TO CONFIGURE ODSM(oracle directorey service manager_

    Hi ,
    I am unable to configure ODSM with weblogic and getting the following error
    "ERROR while deploying the application ODSM
    cause:
    An internal operation has failed :weblogic.management.DeploymentException:[J2EE:160149]Error while processing library refrences ,unresolved application library refrences defined in weblogic-application.xml:[Extension adf.oracledomain.com)
    Thanks
    Giridhar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Giri,
    Install the Java Required Files (JRF) in the Managed Server where you want to deploy your
    application to.
    NB: Java Required Files (JRF) consists of those components not included in the Oracle WebLogic
    Server installation and that provide common functionality for Oracle business applications and
    application frameworks. They include the ADF Runtime Libraries.
    Regards,
    Kal

  • How to configure custom error page in WebServer 6.1 if instance is down

    Hi ,
    I have deployed an application on port 82.
    If the instance is down, want to configure custom error page in Sun One Webserver 6.1 so that the it displays a customised message rather than browser displaying its custom DNS error page.
    In web.xml, configured the 404/500 error messages, but if the instance is down, my web application does not receive the request. So it should be defined at the root level.Where to configure the same?
    Thanks for the help in advance.

    You can use Error function "send-error" http://docs.sun.com/source/817-1834-10/crobjsaf.html#wp20007
    It has an example
    Error fn=send-error code=401 path=/sun/server61/docs/errors/401.html

  • Am getting this message when i try to play music " unable to configure network stream"

    am getting this message when i try to play music " unable to configure network stream"

    Hold on... advice to someone downloading from 1337x !!!
    Until I saw your comment and googled the term, I had no idea that this was a "downloaded" file. I assumed the "1337x" reference was to dimensions/resolution and Noir referred to genre. (I.e., I use similar notations the differentiate files compressed for TV playback comparisons.) In any case, the advice is the same irrespective of the source.
    er, isn't it illegal to download movies ?
    Not necessarily. Thousands of movies are probably downloaded daily as legal purchases from such vendors as iTunes. Thousands more are available for free in the public domain, open source/community videos listings, and under Creative Commons Licensing. In short, there are many legal sources of downloadable content and you should not automatically jump to the conclusion that everyone is a crook.

  • Unable to create Customer master in ECC 6

    Hii Gurus
    I am unable to create customer master in ECC 6 version as system says that sales area defined even though it is defined. if i am going to XD01 when i click on All sales area Button it is showing only sales organisaiton and rest distribution channel and division is not appearing. is there any activation required for distribution channels or at divisions so that i can appear in avalible sales area.
    i have tried to enter it manually but it is not accepting. when i check at enterprise structure it is defined and assinged
    can any body help me oout?
    thanks in advance
    sur

    Hello,
    This is an issue by non-assigning on common distribution channel and common division.
    Go to SPRO --> Sales & Distribution --> Masterdata --> Define Common Distribution channel (Txn : VOR1).
    Give you distribution channel to the fields Reference distribution channle for conditions and Reference DC for customer and material masters
    Go to SPRO --> Sales & Distribution --> Masterdata --> Define Common Division (Txn : VOR2)
    Maintian Common division 00 agaist your sales org as well as the fields Reference Division for conditions and Reference Division for customer and material masters
    Prase

  • Unable to create custom phone labels for new contacts since the upgrade

    I have a AT&T iphone 4 version 4.3.1 and since the last couple of recent upgrades I have been unable to create custom phone labels for any new contacts because the lower label options are gone. This is only a problem with new contacts. My existing contacts with custom labels are still there and if I edit those contacts the table that has create custom labels is also still there, but not for new contacts. Has anyone else noticed this problem.

    If you read the error above about the hash and manifest, you will se this is a RB Setup error and not a CM12 error. You would be better to post your question in the SQL forum or better yet to use BIDS instead.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • [svn] 1543: Bug: BLZ-152-lcds custom Date serialization issue - need to add java.io. Externalizable as the first type tested in AMF writeObject() functions

    Revision: 1543
    Author: [email protected]
    Date: 2008-05-02 15:32:59 -0700 (Fri, 02 May 2008)
    Log Message:
    Bug: BLZ-152-lcds custom Date serialization issue - need to add java.io.Externalizable as the first type tested in AMF writeObject() functions
    QA: Yes - please check that the fix is working with AMF3 and AMFX and you can turn on/off the fix with the config option.
    Doc: No
    Checkintests: Pass
    Details: The problem in this case was that MyDate.as was serialized to MyDate.java on the server but on the way back, MyDate.java was serialized back to Date.as. As the bug suggests, added an Externalizable check in AMF writeObject functions. However, I didn't do this for AMF0Output as AMF0 does not support Externalizable. To be on the safe side, I also added legacy-externalizable option which is false by default but when it's true, it restores the current behavior.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-152
    Modified Paths:
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/endpoints/AbstractEndpoint.ja va
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/SerializationContext.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/amf/Amf3Output.java
    blazeds/branches/3.0.x/modules/core/src/java/flex/messaging/io/amfx/AmfxOutput.java
    blazeds/branches/3.0.x/resources/config/services-config.xml

  • BUG: unable to handle kernel NULL pointer dereference at 0000000000000

    5月 18 18:18:55 thinkman kernel: [<ffffffff81077683>] do_exit+0x3b3/0xbb0
    5月 18 18:18:55 thinkman systemd[1]: Stopping Create Volatile Files and Directories...
    5月 18 18:18:55 thinkman systemd[1]: Stopped target Local File Systems.
    5月 18 18:18:55 thinkman systemd[1]: Stopping Local File Systems.
    5月 18 18:18:55 thinkman systemd[1]: Unmounting Temporary Directory...
    5月 18 18:18:55 thinkman systemd[1]: Unmounting /boot...
    5月 18 18:18:55 thinkman kernel: BUG: unable to handle kernel NULL pointer dereference at 0000000000000418
    5月 18 18:18:55 thinkman kernel: IP: [<ffffffffa04d293f>] pppoe_release+0x15f/0x1d0 [pppoe]
    5月 18 18:18:55 thinkman kernel: PGD 0
    5月 18 18:18:55 thinkman kernel: Oops: 0000 [#1] PREEMPT SMP
    5月 18 18:18:55 thinkman kernel: Modules linked in: veth xt_addrtype xt_conntrack ipt_MASQUERADE nf_nat_masquerade_ipv4 iptable_nat nf_conntrack_ipv4 n月 18 18:18:55 thinkman kernel: rtl_pci rtlwifi crct10dif_pclmul crc32_pclmul mac80211 crc32c_intel ghash_clmulni_intel aesni_intel i915 aes_x86_64 l月 18 18:18:55 thinkman kernel: CPU: 0 PID: 637 Comm: pppd Tainted: G O 4.0.2-1-ARCH #1
    5月 18 18:18:55 thinkman kernel: Hardware name: LENOVO 20EH0001CD/20EH0001CD, BIOS J5ET42WW (1.13 ) 01/22/2015
    5月 18 18:18:55 thinkman kernel: task: ffff8800ab4d1440 ti: ffff8800a7a00000 task.ti: ffff8800a7a00000
    5月 18 18:18:55 thinkman kernel: RIP: 0010:[<ffffffffa04d293f>] [<ffffffffa04d293f>] pppoe_release+0x15f/0x1d0 [pppoe]
    5月 18 18:18:55 thinkman kernel: RSP: 0018:ffff8800a7a03be8 EFLAGS: 00010202
    5月 18 18:18:55 thinkman kernel: RAX: 0000000000000000 RBX: ffff8802404a9000 RCX: 000000000000002c
    5月 18 18:18:55 thinkman kernel: RDX: ffff880244e67810 RSI: 0000000000000200 RDI: ffffffff8145ce02
    5月 18 18:18:55 thinkman kernel: RBP: ffff8800a7a03c28 R08: 0000000000000000 R09: 0000000000000000
    5月 18 18:18:55 thinkman kernel: R10: ffff880244e67810 R11: 0000000000000001 R12: ffffffffa04d4280
    5月 18 18:18:55 thinkman kernel: R13: ffff8800a7e50000 R14: ffff88024596a920 R15: ffff88024215ce40
    5月 18 18:18:55 thinkman kernel: FS: 0000000000000000(0000) GS:ffff88024f200000(0000) knlGS:0000000000000000
    5月 18 18:18:55 thinkman kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033
    5月 18 18:18:55 thinkman kernel: CR2: 0000000000000418 CR3: 000000000180b000 CR4: 00000000001407f0
    5月 18 18:18:55 thinkman kernel: Stack:
    5月 18 18:18:55 thinkman kernel: ffff8800a7e50030 0000000000000008 ffff88024596a920 ffff8800a7e50000
    5月 18 18:18:55 thinkman kernel: ffffffffa04d4280 ffff8800a7e50030 ffff88024596a920 ffff88024215ce40
    5月 18 18:18:55 thinkman kernel: ffff8800a7a03c48 ffffffff81458c6f ffff880244e67800 0000000000000008
    5月 18 18:18:55 thinkman kernel: Call Trace:
    5月 18 18:18:55 thinkman kernel: [<ffffffff81458c6f>] sock_release+0x1f/0x90
    5月 18 18:18:55 thinkman kernel: [<ffffffff81458cf2>] sock_close+0x12/0x20
    5月 18 18:18:55 thinkman kernel: [<ffffffff811da04f>] __fput+0x9f/0x200
    5月 18 18:18:55 thinkman kernel: [<ffffffff811da1fe>] ____fput+0xe/0x10
    5月 18 18:18:55 thinkman kernel: [<ffffffff810917b4>] task_work_run+0xd4/0xf0
    5月 18 18:18:55 thinkman kernel: [<ffffffff81077683>] do_exit+0x3b3/0xbb0
    5月 18 18:18:55 thinkman kernel: [<ffffffff81077f0b>] do_group_exit+0x3b/0xb0
    5月 18 18:18:55 thinkman kernel: [<ffffffff81083966>] get_signal+0x246/0x670
    5月 18 18:18:55 thinkman kernel: [<ffffffff812c1c65>] ? kobject_put+0xc5/0x210
    5月 18 18:18:55 thinkman kernel: [<ffffffff810155a7>] do_signal+0x37/0x750
    5月 18 18:18:55 thinkman kernel: [<ffffffff811f9110>] ? mntput_no_expire+0x30/0x1d0
    5月 18 18:18:55 thinkman kernel: [<ffffffff811f92d4>] ? mntput+0x24/0x40
    5月 18 18:18:55 thinkman kernel: [<ffffffff811da0ed>] ? __fput+0x13d/0x200
    5月 18 18:18:55 thinkman kernel: [<ffffffff81015d20>] do_notify_resume+0x60/0x80
    5月 18 18:18:55 thinkman kernel: [<ffffffff81577763>] int_signal+0x12/0x17
    5月 18 18:18:55 thinkman kernel: Code: 89 df e8 15 ab f8 e0 f0 ff 4b 6c 74 3f 31 c0 48 83 c4 18 5b 41 5c 41 5d 41 5e 41 5f 5d c3 66 0f 1f 44 00 00 48 8
    5月 18 18:18:55 thinkman kernel: RIP [<ffffffffa04d293f>] pppoe_release+0x15f/0x1d0 [pppoe]
    5月 18 18:18:55 thinkman kernel: RSP <ffff8800a7a03be8>
    5月 18 18:18:55 thinkman kernel: CR2: 0000000000000418
    5月 18 18:18:55 thinkman kernel: ---[ end trace d82e11cf3d48de5d ]---
    5月 18 18:18:55 thinkman kernel: Fixing recursive fault but reboot is needed!
    5月 18 18:18:55 thinkman systemd[1]: Unmounted Temporary Directory.
    5月 18 18:18:55 thinkman systemd[1]: Unmounted /boot.
    5月 18 18:18:55 thinkman systemd[1]: Reached target Unmount All Filesystems.
    5月 18 18:18:55 thinkman systemd[1]: Starting Unmount All Filesystems.
    5月 18 18:18:55 thinkman systemd[1]: Stopped target Local File Systems (Pre).
    5月 18 18:18:55 thinkman systemd[1]: Stopping Local File Systems (Pre).
    5月 18 18:18:55 thinkman systemd[1]: Stopped Create Static Device Nodes in /dev.
    5月 18 18:18:55 thinkman systemd[1]: Stopping Create Static Device Nodes in /dev...
    5月 18 18:18:55 thinkman systemd[1]: Stopped Remount Root and Kernel File Systems.
    5月 18 18:18:55 thinkman systemd[1]: Stopping Remount Root and Kernel File Systems...
    5月 18 18:18:55 thinkman systemd[1]: Reached target Shutdown.
    5月 18 18:18:55 thinkman systemd[1]: Starting Shutdown.
    5月 18 18:18:55 thinkman systemd[1]: Reached target Final Step.
    5月 18 18:18:55 thinkman systemd[1]: Starting Final Step.
    5月 18 18:18:55 thinkman systemd[1]: Starting Power-Off...
    5月 18 18:18:55 thinkman systemd[1]: Shutting down.
    5月 18 18:18:55 thinkman systemd-shutdown[1]: Sending SIGTERM to remaining processes...
    5月 18 18:18:55 thinkman systemd-journal[138]: Journal stopped

    Head_on_a_Stick wrote:
    https://bbs.archlinux.org/viewtopic.php?id=189808 (different error though)
    Could be a memory error -- run a memtest.
    cxh116 wrote:5月 18 18:18:55 thinkman kernel: Fixing recursive fault but reboot is needed!
    Does it reboot successfully?
    Also, you really need to read this:
    http://www.catb.org/esr/faqs/smart-questions.html
    reboot is success.
    use pppoe,switch to wifi, has this issue.
    hardware: thnkpad e450c 20EH0001CD
    $lspci -nn
    00:00.0 Host bridge [0600]: Intel Corporation Haswell-ULT DRAM Controller [8086:0a04] (rev 0b)
    00:02.0 VGA compatible controller [0300]: Intel Corporation Haswell-ULT Integrated Graphics Controller [8086:0a16] (rev 0b)
    00:03.0 Audio device [0403]: Intel Corporation Haswell-ULT HD Audio Controller [8086:0a0c] (rev 0b)
    00:14.0 USB controller [0c03]: Intel Corporation 8 Series USB xHCI HC [8086:9c31] (rev 04)
    00:16.0 Communication controller [0780]: Intel Corporation 8 Series HECI #0 [8086:9c3a] (rev 04)
    00:19.0 Ethernet controller [0200]: Intel Corporation Ethernet Connection I218-V [8086:1559] (rev 04)
    00:1b.0 Audio device [0403]: Intel Corporation 8 Series HD Audio Controller [8086:9c20] (rev 04)
    00:1c.0 PCI bridge [0604]: Intel Corporation 8 Series PCI Express Root Port 1 [8086:9c10] (rev e4)
    00:1c.2 PCI bridge [0604]: Intel Corporation 8 Series PCI Express Root Port 3 [8086:9c14] (rev e4)
    00:1c.4 PCI bridge [0604]: Intel Corporation 8 Series PCI Express Root Port 5 [8086:9c18] (rev e4)
    00:1c.5 PCI bridge [0604]: Intel Corporation 8 Series PCI Express Root Port 6 [8086:9c1a] (rev e4)
    00:1d.0 USB controller [0c03]: Intel Corporation 8 Series USB EHCI #1 [8086:9c26] (rev 04)
    00:1f.0 ISA bridge [0601]: Intel Corporation 8 Series LPC Controller [8086:9c43] (rev 04)
    00:1f.2 SATA controller [0106]: Intel Corporation 8 Series SATA Controller 1 [AHCI mode] [8086:9c03] (rev 04)
    00:1f.3 SMBus [0c05]: Intel Corporation 8 Series SMBus Controller [8086:9c22] (rev 04)
    00:1f.6 Signal processing controller [1180]: Intel Corporation 8 Series Thermal [8086:9c24] (rev 04)
    04:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8723BE PCIe Wireless Network Adapter [10ec:b723]
    05:00.0 Display controller [0380]: Advanced Micro Devices, Inc. [AMD/ATI] Topaz XT [Radeon R7 M260/M265] [1002:6900]
    06:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS5227 PCI Express Card Reader [10ec:5227] (rev 01)

  • Unable to create custom analytic in dashboard builder

    Hi Gurus
    i am currently working on businessobjects edge standard but i am unable to create custom analytic in dashboard builder.it gives me the error like there is no xcelsius template available consult xcelsius
    i would really appreciate your help
    regards and thanks
    Abid paul
    Edited by: Abid Husssain Paul on Aug 24, 2009 7:45 AM

    Hi Abid,
    I would suggest you open the entry on the forum of BO Edge / Businessobjects Enterprise. this forum is about the SAP Integration Kit.
    Ingo

Maybe you are looking for

  • How to find total count of records in a cursor

    Aassume below is the cursor i defined cursor c1 is select * from emp; now, i want to find the total count of records in this cursor using an existing function etc., using one line statement. FYI: c1%rowcount is always giving 0, so i cant rely on this

  • Why do I have trouble printing when using Firefox, I have to change over to IE and the printing is OK

    When I try to print a page while using Firefox the printer does not work. A message stays on the screen 'preparing' and the searching circle keeps turning. I switch over to Internet Explorer and the page prints straight away. I recently tried to prin

  • Making a form secure

    I am pretty new at this and I am making some forms that need to be secure. I was wanting to know how to go about it.

  • Hprof heap dump not being written to specified file

    I am running with the following -Xrunhprof:heap=all,format=b,file=/tmp/englog.txt (java 1.2.2_10) When I start the appserver, the file /tmp/englog1.txt gets created, but when I do a kill -3 pid on the .kjs process, nothing else is being written to /t

  • Unable to View logs in SM21

    Hello, We are trying to display logs in SM21 and unable to view the logs. There are no entries displayed in SM21. On checking i found that proper read permissions are set for SLOG files. Can anyone please help here. thank you.