Client logging out not working

I am having two issues , the first happened quite recently but I don't know if I caused it. Users on client machines cannot fully log out. The computers stop the logging out process when they get to the desktop image, The second issue is that when some clients log out the show up as disabled/asleep in server administration. This prevents them from logging in later, without me manually disconnecting them at the server. I work in a school and we have set students with the restriction of not having mutiple log-in privileges. Thanks in advance for any suggestions.
iMac slot load clients 10.3.9 eMac 10.4.9 G4 server 10.4.9   Mac OS X (10.4.9)  

rlt6246 wrote:
Thanks to WorMzy for the link, and thanks to djraymondnm for the simple solution found in post [SOLVED] xfce-session-logout does not work as expected. For the record, let me post the solution here:
djraymondnm wrote:
Activate the "sessionstop_cmd" line in /etc/slim.conf as follows:
sessionstop_cmd    (killall --user $USER -TERM; systemctl restart slim)
from: https://bbs.archlinux.org/viewtopic.php?pid=1287549
Also:
goyim wrote:
as per PABLOKAL found solution to DM freezing after second logout...
sudo nano /etc/pam.d/slim
auth include system-local-login
-auth optional pam_gnome_keyring.so
account include system-local-login
session include system-local-login
-session optional pam_gnome_keyring.so auto_start
session required pam_systemd.so # Add this line which is missing
from: http://bbs.archbang.org/viewtopic.php?id=4495
Did the trick.
Last edited by loltill (2013-07-16 09:26:00)

Similar Messages

  • [SOLVED] JAZN log out not working

    Hi,
    I'm having a problem with JAZN security in an ADF Faces application, particularly with logging out. I'll minimize the set of pages involved in order to explain the problem, it is as follows:
    The application has HTML form authentication managed by a JAZN XML file. The pages involved are
    - Login.jspx (login page)
    - Main.jspx (secured page with a "log out" button)
    When the log out button is clicked the session is terminated and the user is redirected to the login page. After this, when I try to log in again nothing happens so I can't log in again.
    Here is the code:
    << Login.jspx >>
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces"
              xmlns:afh="http://xmlns.oracle.com/adf/faces/html">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML" doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
        <html>
          <head>
            <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
            <title>login</title>
          </head>
          <body><form action="j_security_check" method="post">
              <table cellspacing="3" cellpadding="2" border="0" width="100%">
                <tr>
                  <td width="120">
                    <b style="whitespace:nowrap">User</b>
                  </td>
                  <td>
                    <input type="text" name="j_username"/>
                  </td>
                </tr>
                <tr>
                  <td width="120">
                    <b>Password</b>
                  </td>
                  <td>
                    <input type="password" name="j_password"/>
                  </td>
                </tr>
                <tr>
                  <td><jsp:text><![CDATA[ ]]></jsp:text></td>
                  <td>
                    <input type="submit" name="logon" value="Sign On"/>
                  </td>
                </tr>           
              </table>
            </form></body>
        </html>
    </jsp:root><< Main.jspx >>
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:h="http://java.sun.com/jsf/html"
              xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces"
              xmlns:afh="http://xmlns.oracle.com/adf/faces/html" xmlns:cust="http://xmlns.oracle.com/adf/faces/customizable">
      <jsp:output omit-xml-declaration="true" doctype-root-element="HTML" doctype-system="http://www.w3.org/TR/html4/loose.dtd"
                  doctype-public="-//W3C//DTD HTML 4.01 Transitional//EN"/>
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <afh:html>
          <afh:head title="Main">
            <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"/>
          </afh:head>
          <afh:body>
            <h:form>
              <af:commandButton text="Logout" action="#{login.logout}"/>
            </h:form>
          </afh:body>
        </afh:html>
      </f:view>
    </jsp:root><< jazn-data.xml >>
    <?xml version = '1.0' encoding = 'windows-1252' standalone = 'yes'?>
    <jazn-data xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/jazn-data-10_0.xsd" filepath="" OC4J_INSTANCE_ID="">
        <jazn-realm>
            <realm>
                <name>jazn.com</name>
                <users>
                    <user>
                        <name>user</name>
                        <credentials>{903}dn3x1m8PHXf4z1+aLjhNH3+9HIVSWd3l</credentials>
                    </user>
                    <user>
                        <name>anotherUser</name>
                        <credentials>{903}nhz/q14H8m4cmZ2KRBDBSDzCgFn4EQ3nA/b788Egorg=</credentials>
                    </user>
                </users>
                <roles>
                    <role>
                        <name>authenticatedUsers</name>
                        <members>
                            <member>
                                <type>user</type>
                                <name>user</name>
                            </member>
                            <member>
                                <type>user</type>
                                <name>anotherUser</name>
                            </member>
                        </members>
                    </role>
                </roles>
            </realm>
        </jazn-realm>
        <jazn-policy/>
    </jazn-data><< web.xml >>
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"
             xmlns="http://java.sun.com/xml/ns/j2ee">
        <description>web.xml file for Web Application</description>
        <filter>
            <filter-name>adfFaces</filter-name>
            <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>REQUEST</dispatcher>
        </filter-mapping>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet>
            <servlet-name>adfAuthentication</servlet-name>
            <servlet-class>oracle.adf.share.security.authentication.AuthenticationServlet</servlet-class>
            <init-param>
                <param-name>success_url</param-name>
                <param-value>faces/Main.jspx</param-value>
            </init-param>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet>
            <servlet-name>resources</servlet-name>
            <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>adfAuthentication</servlet-name>
            <url-pattern>/adfAuthentication/*</url-pattern>
        </servlet-mapping>
        <servlet-mapping>
            <servlet-name>resources</servlet-name>
            <url-pattern>/adf/*</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>35</session-timeout>
        </session-config>
        <mime-mapping>
            <extension>html</extension>
            <mime-type>text/html</mime-type>
        </mime-mapping>
        <mime-mapping>
            <extension>txt</extension>
            <mime-type>text/plain</mime-type>
        </mime-mapping>
        <jsp-config/>
        <security-constraint>
            <web-resource-collection>
                <web-resource-name>adfAuthentication</web-resource-name>
                <url-pattern>/adfAuthentication</url-pattern>
            </web-resource-collection>
            <auth-constraint>
                <role-name>oc4j-administrators</role-name>
            </auth-constraint>
        </security-constraint>
        <security-constraint>
            <web-resource-collection>
                <web-resource-name>Secure Zone</web-resource-name>
                <url-pattern>/faces/*</url-pattern>
            </web-resource-collection>
            <auth-constraint>
                <role-name>authenticatedUsers</role-name>
            </auth-constraint>
        </security-constraint>
        <login-config>
            <auth-method>FORM</auth-method>
            <form-login-config>
                <form-login-page>login.jspx</form-login-page>
                <form-error-page>error.html</form-error-page>
            </form-login-config>
        </login-config>
        <security-role>
            <role-name>authenticatedUsers</role-name>
        </security-role>
    </web-app><< orion-application.xml >>
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <orion-application xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/orion-application-10_0.xsd">
      <jazn provider="XML" location="./jazn-data.xml" default-realm="jazn.com" jaas-mode="doAsPrivileged"/>
    </orion-application><< faces-config.xml >>
    <?xml version="1.0" encoding="windows-1252"?>
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
      <application>
        <default-render-kit-id>oracle.adf.core</default-render-kit-id>
      </application>
      <managed-bean>
        <managed-bean-name>login</managed-bean-name>
        <managed-bean-class>view.LoginBean</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
      </managed-bean>
    </faces-config><< LoginBean.java >>
    package view;
    import java.io.IOException;
    import javax.faces.context.ExternalContext;
    import javax.faces.context.FacesContext;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    public class LoginBean {
        public LoginBean() {
        public String logout() throws IOException {
             FacesContext ctx = FacesContext.getCurrentInstance();
             ExternalContext ectx = ctx.getExternalContext();
             HttpServletResponse response = (HttpServletResponse)ectx.getResponse();
             HttpSession session = (HttpSession)ectx.getSession(false);
             session.invalidate();
             response.sendRedirect("Login.jspx");
             ctx.responseComplete();
             return null;
    }Is there anything wrong or missing?
    Thanks,
    Yoel

    Hi,
    in BASIC authentication the browser autenticates the user (browser sso). A new session is created - wich means that all session information of the previous application run are deleted. To avoid browser sso you need to close the browser process. The BASIC authentication issue is not caused by JAZN but the way this authentication is speced by teh W3C
    Frank

  • Logging buffered not working

    Hello:
    In an ACE  module multicontext environment the buffered logging is not working on the last context I created.
    The same config though works well for another context.
    The maximum size and the buffer size is showing 0 in the "show logging" below:
    Thanks for helping
    logging enable
    logging standby
    logging timestamp
    logging trap 5
    logging history 4
    logging buffered 5
    logging facility 16
    logging queue 200
    logging device-id context-name
    logging host 10.10.10.1 udp/514
    logging host 10.10.10.2 udp/514
    logging rate-limit 42 60 level 0
    logging rate-limit 42 60 level 1
    logging rate-limit 42 60 level 2
    logging rate-limit 42 60 level 3
    logging rate-limit 42 60 level 4
    logging rate-limit 42 60 level 5
    logging rate-limit 42 60 level 6
    logging rate-limit 42 60 level 7
    show logging`
    Syslog logging:                 enabled
    Facility:                       16
    History logging:                enabled (level- warnings)
    Supervisor logging:             disabled
    Trap logging:                   enabled (level - notifications)
    Timestamp logging:              enabled
    Fastpath logging:               disabled
    Persist logging:                disabled
    Standby logging:                enabled
    Rate-limit logging:             (min - 10000 max 100000 msgs/sec)
                    42 messages 60 seconds level 0
                    42 messages 60 seconds level 1
                    42 messages 60 seconds level 2
                    42 messages 60 seconds level 3
                    42 messages 60 seconds level 4
                    42 messages 60 seconds level 5
                    42 messages 60 seconds level 6
                    42 messages 60 seconds level 7
    Console logging:                disabled
    Monitor logging:                disabled
            Logging to 10.10.10.1 udp/514 
            Logging to 10.10.10.2 udp/514 
    Device ID:                      context name "CTC_PROD7"
    Message logging:                none
    Buffered logging:               enabled (level - notifications) maximum size 0--------------------------->>>>>>
    Buffer info: current size - 0 global pool - 4194304 used pool - 4194304
                    min - 418816 max - 0
                    cur ptr = 0 wrapped - yes

    Hi,
    This is because your global pool is full. Go to one of your other contexts clear logg , and will work.
    Buffer info: current size - 0 global pool - 4194304 used pool - 4194304
    Dan

  • Soundblaster X-Fi Titanium Optical Out not working???

    Hey friends,
    I purchased a Sound Blaster X-Fi Titanium PCIe yesterday to run on Windows 7 64bit to trigger VSTi instruments. I can hear the VSTi play fine when I have headphones plugged into the soundcard but I want to send the audio sound OUT via the Optical Out into my Steinberg MR86x firewire audio card. ?
    I can see the light on the optical cable but no sound seems to be being sent from the sound blaster into the steinberg card.
    ?Now before people start saying you cant do that, I have have been doing this for the last 3 years and it has been great apart from my RME Audio card is not compatible with Windows 7 64bit hence why I purchased the soundblaster.
    I really am at a loss as to what I can try next, I have been through this forum and tried a few recommended tweaks but nothing? Am I missing something obvious here?
    I am using the following drivers
    Driver: v2.7.008 Windows 7 64bit
    DTS Connect: for Windows 7 64bit
    Also in the Audio Control Panel / SPDIF I/O all options are greyed out apart from the Digital Output tickbox, I only want to use this card for Audio as in creating music or specifically for triggering VST synths.
    I would really appreciate any advice
    Thanks in advance
    KiloHurtz

    Re: Soundblaster X-Fi Titanium Optical Out not working?I have same card, same?OS?and lots of problems.
    Analog outputs(control panel->sound->speakers) disappears when boot or reboot, sometimes it works week, sometimes a hours. When it works, it's works ok, but suddenly during boot,?all sounds is lost, when trying launch for example Creative Audio Control Panel this message appears: There are no supported audio device available. You need to close the application. Click OK to close the application now.
    And when analog outputs disappears, no any sound via SPDIF, even it shows in notification area and control panel->sound and in device manager.
    I have owned card about two months, once change card in warranty, and?several uninstall, cleaning traces, reinstall and card works for while?and?out of blue, when boot computer, no sounds at all and only way to get sounds back is driver uninstall, cleaning and reinstall.
    Creative Customer Support seems to be clueless, but make Technical Support Request if problems continue. And all other too, if problems like that appears, contact to Creative, maybe they really try?to do?something abuot it and not just send instructions how to uninstall and reinstall drivers.

  • Social Client & Nokia blogs not working

    from last week social client & nokia blogs not working. Facebook / Twitter / Conversations / Blog etc... are not opening. Get a blank white screen with only option to exit. Surprisingly the social widget is getting updated with posts from both Facebook & Twitter! But if i click to open then its the same issue...

    Thanks Adrian,
    Am from India and using N8.
    First thing i checked is for updates on suite but no luck with that... Not sure if there are updates released which are not made available for users here.
    Any idea on where to check if updates are available here? Or when it would be made available here?
    Appreciate ur help.
    Merry Christmas...
    Cheers
    Staty

  • Tv out not working on ios 8? please tell me what is problem?

    When i update my iPhone 4s to iOS 8.1 tv out not working .     Help mee plzz

    If those numers are ordered correctly it sounds like you are using a faulty charger with your iPhone.  It should charge faster with the charger than a USB port as the charger supplies a higher current.  Different batteries are going to charge differently based in part on differences in the ways they have been used.
    Try using your friends charger with your iPhone and see how long it takes to charge compared with your charger.

  • MI Client 7.0 not working

    Hello,
    I have performed the following steps for the installation of MI client 7.0,but still the MI client is not working.
    1.  I have gone to the service market place http://service.sap.com/swdc, under 'Downloads' Navigate to
    'SAP Software Distribution Center-> Support Packages and Patches->
    Support Packages and Patches - Entry by Application Group->SAP NetWeaver and complementary products-> SAP NETWEAVER-> SAP NETWEAVER 7.0-> Entry by Component-> MI Client -> MI CLIENT 7.00-> OS Independent
    2.Extracted the NWM_AWT_WIN32_uncomp.sda file and ran the setup.exe
    3.Then i ran the MobileENgine,but i get a popup saying page cannot be displayed
    Should i make some server setting if so where,Please help me in resolving this issue
    regards
    kaushik

    Hi
    Please check the trace file in /MI/log folder.
    You can find the exact error in the trace file.
    Regards

  • Clients log out randomly

    We are running an AD authentication, OD homedirs (golden triangle) environment and are experiencing automatic random logouts in one lab (iMac) in our district.  These are not set to shut down, sleep, etc. in Energy Saver system pref, and it occurs when students are logged in and actively working, so a File Vault log out due to inactivity doesn't seem to match the scenario.   I'm wondering if anyone has any ideas why this would occur.
    Thank you.

    Thanks Paul, here's the latest one I'm trying to fix. Panic log:
    Thu Oct 2 21:31:11 2008
    Unresolved kernel trap(cpu 1): 0x300 - Data access DAR=0x0000000000000000 PC=0x000000000032DA58
    Latest crash info for cpu 1:
    Exception state (sv=0x354a6c80)
    PC=0x0032DA58; MSR=0x00009030; DAR=0x00000000; DSISR=0x40000000; LR=0x000E1240; R1=0x3EECF300; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x361C1870 0x000E1398 0x00241A44 0x00243A3C 0x00244A20 0x0024E204
    0x00108928 0x000E9DA0 0x000EAB10 0x000F97D8 0x000F9B50 0x000F9BEC 0x0030ABDC 0x000B2CC8
    0x00000000
    backtrace terminated - frame not mapped or invalid: 0xBFFFED90
    Proceeding back via exception chain:
    Exception state (sv=0x354a6c80)
    previously dumped as "Latest" state. skipping...
    Exception state (sv=0x35529500)
    PC=0x91301DE4; MSR=0x0200F030; DAR=0xE002F000; DSISR=0x42000000; LR=0x00002EAC; R1=0xBFFFED90; XCP=0x00000030 (0xC00 - System call)
    BSD process name corresponding to current thread: launchctl
    Mac OS version:
    9F33
    Kernel version:
    Darwin Kernel Version 9.5.0: Wed Sep 3 11:31:44 PDT 2008; root:xnu-1228.7.58~1/RELEASE_PPC
    System model name: PowerMac7,2
    panic(cpu 1 caller 0xFFFF0003): 0x300 - Data access
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x0009B518 0x0009BEBC 0x00029DD8 0x000AF290 0x000B2AF8
    Proceeding back via exception chain:
    Exception state (sv=0x354a6c80)
    PC=0x0032DA58; MSR=0x00009030; DAR=0x00000000; DSISR=0x40000000; LR=0x000E1240; R1=0x3EECF300; XCP=0x0000000C (0x300 - Data access)
    Backtrace:
    0x361C1870 0x000E1398 0x00241A44 0x00243A3C 0x00244A20 0x0024E204
    0x00108928 0x000E9DA0 0x000EAB10 0x000F97D8 0x000F9B50 0x000F9BEC 0x0030ABDC 0x000B2CC8
    0x00000000
    backtrace terminated - frame not mapped or invalid: 0xBFFFED90
    Exception state (sv=0x35529500)
    PC=0x91301DE4; MSR=0x0200F030; DAR=0xE002F000; DSISR=0x42000000; LR=0x00002EAC; R1=0xBFFFED90; XCP=0x00000030 (0xC00 - System call)
    BSD process name corresponding to current thread: launchctl

  • MacBook video out not working

    Hi there
    I bought the mini-dvi to s-video/composite output to connect my MacBook up to a TV while away from home (to watch TV and movies) but it doesn't work. First I suspected the old TV, but works OK with the Wii connected. Then I thought it was the cable, but I tried a new cable and the sound works fine, so that's not it. Then I suspected the adapter, but when I got home I connected it to my wife's MacBook and it worked fine.
    So, looks like I have dodgy graphics card hardware?
    The MacBook detects that the adapter is connected, so some of the pins are working OK. I just can't get a signal from my MacBook to the TV and the auto detect does not work.
    Anyone got any ideas? The computer is no longer under warranty and I don't have time to take it to the dealer (it takes them three weeks to turn around a fault!) so I'm guessing that I'll have to open up the device myself and check for some bad connections?
    Any advice is appreciated!
    Regards... Jonny.

    Video out under 10.5.2 works fine for me and for a colleague of mine with a more recent MacBook Pro. I'd wager it's a problem with your Leopard install, not a universal one.
    Also, FYI, Apple doesn't read these forums; they're just for user-to-user help. If you want to leave MacBook Pro feedback for Apple, do so here:
    http://www.apple.com/feedback/macbookpro.html
    But again, I do not believe yours is a universal issue. We'll be happy to help troubleshoot though. What do you mean the image is "unstable"? Could you take a digital photograph of the external monitor's screen and upload it somewhere?

  • Digital video out not working

    For some reason on my 2011 Mac Book Pro the digital video out does not work?  It works just fine using the minii adapter for analog video out, but not for digital?
    Any advice much appreciated!
    Thx
    Mark

    It is working exactly as it is supposed to. You didn't read the description properly before buying.
    Video mirroring is available on the iPhone 4S, not the iPhone 4.
    Video out needs to be supported by the app you are using.

  • Client.ole2 is not working

    Hi i'm migrating to from fomrs 4.5 to 10g as DDE package are not supported in the
    10g. i'm using client.ole2
    I have written following code to open a stored excel sheet(which is a template for entering the data). this is not working not giving any error.
    please tell me where is the error
    declare
    application client_ole2.obj_type;
    workbooks client_OLE2.OBJ_TYPE;
    workbook client_OLE2.OBJ_TYPE;
    worksheets client_OLE2.OBJ_TYPE;
    worksheet client_OLE2.OBJ_TYPE;
    worksheet2 client_OLE2.OBJ_TYPE;
    worksheet3 client_OLE2.OBJ_TYPE;
    args1 client_ole2.list_type;
    L_PATH VARCHAR2(100);
    COMMAND1 VARCHAR2(5000);
    BEGIN
         l_PATH := SFN_GET_DIRECTORY_PATH('DIR0003');
    COMMAND1 := L_PATH||'\Formats\EMP_NEW_UPLOAD.xls';
    application := Client_OLE2.create_obj('Excel.Application');
    workbooks := Client_OLE2.Get_Obj_Property(application, 'Workbooks');
    args1 := Client_Ole2.create_arglist;
    Client_Ole2.add_arg(args1, 'c:\emp.xls');
    workbook := Client_Ole2.invoke_obj(workbooks, 'Open', args1);
    worksheets := Client_Ole2.get_obj_property(workbook, 'worksheets');
    CLIENT_OLE2.destroy_arglist(args1);
    CLIENT_OLE2.SET_PROPERTY(application,'Visible',1);
    CLIENT_OLE2.SET_PROPERTY(application,'DisplayAlerts',0);
    end;

    As Gerald Krieger suggests, it sounds as if you have not installed the Jacob library correctly. Most WebUtil functions, like CLIENT_GET_FILE_NAME, are included in the base 10g install -- OLE functionality, however, is not. This is because the Jacob library, which is required for OLE support, is not an Oracle product and, as such, could not legally be distributed by Oracle.
    Jacob can be downloaded from http://sourceforge.net/projects/jacob-project
    Configuring the OC4J for developing/testing OLE-enabled forms involves these steps:
    1. Download the Jacob library and extract two files -- jacob.jar & jacob.dll
    2. Place a signed copy of jacob.jar in ...\forms\java
    3. Place a copy of jacob.dll in ...\forms\webutil
    4. If you are not using Jacob 1.8, but are instead using a different version, you must edit ...\forms\server\webutil.cfg by locating the line which contains install.syslib.0.7.1=jacob.dll|94208|1.0|true and replacing 94208 with the size (in bytes) of your particular version of jacob.dll
    If these instructions are unclear, please accept my apologies and refer to the WebUtil documentation for details.
    Finally, be aware that your forms will not deploy correctly unless ...\forms\webutil.pll has been compiled. You must be connected to a WebUtil-ready database in order for webutil.pll to compile successfully.
    Hope this helps,
    Eric Adamson
    Lansing, Michigan

  • System.out not working on eclipse

    Greetings...
    I am no longer a newbie on Java, but I have been facing an issue lately that I have been unable to resolve myself, even though it seems to be something so silly.
    I have been using eclipse for development, and by developing a simple "Just to practice" code I have found myself unable to use System class or any of its methods at a certain point. See the code below:
    package one;
    import java.util.Scanner;
    public ClassOne {
    public static void main (String args[]){
    Scanner reader = new Scanner(System.in); /*Works just fine here*/
    int x = 0;
    System.out.println("Type in the number of objects expected"); /*Does not work at all, like if System was something I could not use at all. Not an identifier */
    Scanner readertwo = new Scanner(System.in); /*System does not work here either*/
    }Even if I rewrite the code after that, by erasing the import statement and all other System references in the code, System does not work again.
    If anybody has ever faced the same issue and knows what I am doing wrong and what I can do to fix it, I'd really be grateful.
    Thanks to all, and happy 2009.
    Santana T

    Santana_Thiago wrote:
    It works on NetBeans.
    On eclipse I get the following error:
    ERROR: JDWP Unable to get JNI 1.2 Environment, jvm->GetEnv() return code = -2+
    *JDWP exit error AGENT_ERROR_NO_JNI_ENV(183): [../../../src/share/back/util.c:820]*+
    The funniest thing is that if copy and paste the code from somewhere else into eclipse it works. What a drag!!!!
    Thank you.
    Santana TNever seen that error but it sounds to me that your Eclipse installation is screwed up!

  • Event log is not working in Multiform server

    Hi ,
    We are trying to implement event logging in our application. We have created separate event source for our application. When we testing this our local dev machine it is working without any problem. when I try to test the same in higher environment (QA, Pre-prod)
    it is not working. The QA environment is a multi form server. We are able to see the event source in the event viewer, but the logging is not happening. We have tried restarting IIS, restarting the services. 
    Any suggestion or guidance will be highly appreciated.
    Thanks in Advance

    Hi GHPMS,
    >>We are trying to implement event logging in our application
    Do you mean this code as below?
    string sSource;
    string sLog;
    string sEvent;
    sSource = "dotNET Sample App";
    sLog = "Application";
    sEvent = "Sample Event";
    if (!EventLog.SourceExists(sSource))
    EventLog.CreateEventSource(sSource, sLog);
    EventLog.WriteEntry(sSource, sEvent);
    EventLog.WriteEntry(sSource, sEvent,
    EventLogEntryType.Warning, 234);
    Like in following screenshot
    >>We are able to see the event source in the event viewer, but the logging is not happening.
    Maybe, you also need to check if the
    eventlog exist method before you try to crate it new.
    You might need check on what account the service is running under, which may make a difference on multi form server and up since they are more stringent on account rights on those environment.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Iphone for VGA Video Out not working

    We have the Iphone/iPad VGA to Monitor connector. We tested it with 3 different iPhone 4 phones... It worked on 2 of them, but the 3rd woudn't work. What possible reason would it not work? The 3 phones had software of 4.3 and higher...

    Dr. L,
    The previous iPod's did not support component video out for newer televisions that support it. The box for the older Video out cables do not say they support the iPhone.
    The current video out cables are available in either component or composite video out. They also say they support the iPhone on the box.
    In addition when shopping the Apple Store online for iPod or iPhone accessories there is a compatibility guide which shows icons of the iPod models or iPhone that are supported.
    Overall my personal experience is that this, and other Apple specific ones, are much smaller compatibility, and downtime driver for IT than many of them I have run across supporting a variety of computer and networking platforms over the last 23 years.
    Hope this helps,
    Nathan C.

  • Video Out not working on Ipod Classic 80gb

    I can't get video out to work on anything. I have a relatively new Onkyo home theater with an iPod dock that has video out cables, and I can't get a picture to show up on the TV. Also, my gym has StarTrac cardio equipment which has video connectivity through a built-in iPod dock. Video is supposed to show up on the TV monitor attached to the cardio machines, but all I get is "no signal".
    Since I can't get either of them to work, is something wrong with my iPod?
    Thanks!

    When you want to show the video on your TV, have you selected TV out in the video settings options?
    If that's not the problem, check this page, http://support.apple.com/kb/HT1454 to ensure you have the correct cable for your iPod, although you need to ensure you have identified your iPod model correctly. Check http://support.apple.com/kb/HT1353 if you're not sure because there is a crucial difference between the Classic and the 5th generation video models. (On the *iPod and iPhone: TV out support* page - http://support.apple.com/kb/HT1454 - look at the third table down, headed *Apple Component AV Cable with iPod Universal Dock or Apple Universal Dock* .) Notice that the Apple Universal Dock and Component cable combination works for an iPod Classic, but not for the 5th gen iPod. My point being; if the STarTrac device you mention has a built-in dock, perhaps it's designed for the iPod Classic, but if you have the 5th gen, it won't work.
    ... and no, I don't know why one dock is called the Apple Universal Dock, while the other is called iPod Universal Dock! Such a similar naming convention only leads to confusion. I know, I had to examine each box in my local store to find the iPod dock among all the Apple docks they had since they thought both docks were identical.

Maybe you are looking for

  • OLE to MS Word

    Hi everyone. can anyone please tell me how to merge two coloumns of a table which is being printed in a Word Document using OLE Automation.

  • Eclipse JSF support?

    Hi, How can I get a JSF autocomplete support on JSP when using Eclipse without the non-free plugins like MyEclipse, JSF Studio, etc? Is there a way? Thanks.

  • HT4437 AirPlay speakers on one source

    I can't seem to find a definitive answer on this. How many AirPlay speakers can run simultaneously from one iPad 3?  My goal would be to have AirPlay speakers throughout the house all running off one iPad on a wi-fi network. Any advice would be appre

  • Need to install photoshop elements 12 on new Mac - previously on a PC - original download by way of internet - so what to do???

    How do I get the Photoshop Elements 12 from Adobe to reinstall on a Mac vs my previous PC computer. 

  • Initial setup of SAP B-1

    We are in process of setting up SAP B-1 and would like to do it right the first time.  We are a USA based fishing lure manufacturer that has most of the assembly work done overseas.  (Haiti, Mexico, Philippines, China)  Consequently we are subject to