Invoke 64 bit Telnet client via 32 bit JRE

Hi,
How do i invoke 64 bit Telnet client of a Win 7 OS via 32 bit JRE.
String command = "cmd /c start cmd.exe /K \"telnet <ip-address>\"";
Runtime.getRuntime().exec(command);
It works fine as expected if i use 64 bit JRE.
It throws "telnet' is not recognized as an internal or external command, operable program or batch file." while i execute via 32 bit JRE.
but my requirement is tightly coupled with 32 bit JRE.
is there anyway to overcome this issue?
or any possible work around ?
Expecting your responses.
Thanks
Vetri

found the solution by someway.:)
Copy the "telnet.exe" file from C:\Windows\System32 folder to C:\Windows\SysWOW64
Post this operation, telnet prompt got opened while it executed via 32 bit JRE even though telnet client is specific to operation system. i.e 64 bit.
String command = "cmd /c start cmd.exe /K \"telnet <ip-address> \"";
Runtime.getRuntime().exec(command);
Ref : http://en.wikipedia.org/wiki/WoW64

Similar Messages

  • Invoking Powershell modules on remote clients via package/command line

    Hello Everyone -
    I have two modules(functions) that i've written and tested successfully locally in my environment that give me Uninstall and Repair functionality on whatever the string contains. Both .psm1's are delivered via a SCCM pkg that lands both into folders
    in the Modules directory. My issue is I can't seem to invoke this in a deployment scenario...as i'd like to deliver the "Invoke-command" using SCCM's command line to simply say...
    Invoke-Command -scriptblock { Do-This "<string>" }
    The above command works fine locally when...(exePol is set to Bypass).
    1.)Modules have respective folders living in WindowsPowershell\Modules directory named xxxx.psm1
    2.)Import-Module -name <path\name of module>
    3.)Verify Modules are loaded(moduleType is script)
    But when fabricating the folders\files above with SCCM, and running the Invoke-Command(in many different ways remotely), i recieve the cmdlet, program doesn't exist and has no idea what i'm talking about. Folders\Files for .psm1's are present and do
    show when running Get-Module -Listavailable locally on targeted clients.
    Maybe this is related to the Import-Module command and the context i'm trying to delivery it in?
    I've tried multiple scenario's of...
    A.) Psexec that launches powershell, followed by the Import-Module -name <path\name of module>
    B.) .Bat file that launches powershell with the same Import-Module syntax
    C.) PS1 that includes the same Import-Module line.
    D.) Just straight from the command line of the Pkg/Program.
    Has anyone tried this? Is there a better method when trying to deliver invoke-command on a module/function to a client via SCCM? 
    TIA 

    [I see that the you are running the powershell.exe and then importing the module in the command line for the Program you created in SCCM, so just importing the module will do the repair action for you ??]
    Not sure how else i would run a Import-Module without calling upon powershell.exe. The reason for using Import-Module first is it only creates the abilty of whatever the module(function in this case) on the client. So if i can get the remote
    Import-Module to work, which would then allow me in the future to use an Invoke-Command -scriptblock { Do-This "string" } on the clients. In this case its both an Uninstall and Repair function with an assortment of switches and arguements that will aide me
    in the future in managing our apps. For me to use the Modules, i would need to Invoke-Command as that is how the functions are built.
    Okey so the module does get dumped to the end machine.
    Suppose you have a test machine TEST01 where the Test.psm1 file  (having Test-Function)is delivered through SCCM.
    Then try this and tell if it works:
    PS C:\> $session = New-PSSession -ComputerName TEST01
    PS C:\> Invoke-Command -Session $session -ScriptBlock {Import-Module Test.psm1 }
    PS C:\> Invoke-Command -Session $session -ScriptBlock {Test-Function #inside your Module}#Or Simply try below:
    PS C:\> Invoke-Command -ComputerName TEST01 -ScriptBlock {Import-Modules Test.psm1;Test-Function #inside your Module}
    I think what you are doing is below.....for the example am taking "webadministration" module:
    PS C:\> Invoke-Command -ComputerName Server01 -ScriptBlock {Import-Module web*}
    PS C:\> Invoke-Command -ComputerName Server01 -ScriptBlock {get-website}
    The term 'get-website' is not recognized as the name of a cmdlet, function, script file, or operable program. Check
    the spelling of the name, or if a path was included, verify that the path is correct and try again.
    + CategoryInfo : ObjectNotFound: (get-website:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
    + PSComputerName : sdwuweb017
    Point here is you need to import the module and work with it in an already opened session....If you specify a computername every time then PowerShell opens the Session does what you want it to do and tears down the session. To persist the importing of the
    module it must be done in a session which we make using New-PSSession and then run the commands against that session.
    I might have misunderstood the problem but this is what I have got so far.
    Hope this helps
    Knowledge is Power{Shell}.

  • CF9.0.1 - Updating 32-bit JRE on 64-bit Windows

    Hi all,
    Based on this security alert (http://kb2.adobe.com/cps/894/cpsid_89440.html), I am looking to upgrade my CF 9.0.1 install from the default JRE 1.6_17 to 1.6_24.
    On my Windows 7 64 / CF9.0.1 64 development system I simply downloaded the 64-bit JRE, installed and pointed CF at the newly installed JRE (via the CF admin). All worked flawlessly.
    My testing server (Windows Server 2008 Standard SP1 64-bit) is currently running CF 9.0.1 32-bit. I downloaded the 32-bit JRE (jre-6u24-windows-i586) and ran the installed it to C:\Java\jre6. Additionally, based on the note found here: http://www.oracle.com/technetwork/java/javase/install-windows-64-142952.html
    The public JRE installed with the 32-bit JRE is not registered. You must set the PATHenvironment variable to point to JAVA_HOME \bin to register the JRE.
    I added C:\Java\jre6\bin\ to my PATH via the control panel.
    Going to the command line (at c:\> ) and typing "java -version" provides:
    java version "1.6.0_24"
    Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
    Java HotSpot(TM) Client VM (build 19.1-b02, mixed mode, sharing)
    So now, I go to the CF Admin -> Java and JVM and reset the Java Virtual Machine Path to "C:/Java/jre6". It works and prompts me to restart my CF service.
    The server shuts down and then fails to restart. The Windows Application log shows: "The ColdFusion 9 Application Server service could not be started.  Check the server "coldfusion" log files for more information."
    If I revert back to the JVM in C:\Coldfusion9\runtime\jre the server restarts normally.
    Any ideas?

    Hi Billy,
    Download from Oracle Java developer kit (not runtime):
    http://www.oracle.com/technetwork/java/javase/downloads/index.html
    Install that via running EXE you downloaded - default install will be fine.
    Stop CF - SERVICES.msc stop "ColdFusion 9 Application Server".
    Take a copy of CF\runtime\bin\jvm.config - so you got a backup.
    Edit CF\runtime\bin\jvm.config find line "java.home=" and comment it out eg:
    #java.home=C:/ColdFusion9/runtime/jre
    Add new line like so and save jvm.config:
    java.home=C:/Program Files/Java/jdk1.6.0_24/jre
    Note  there the slashes and the location of the JRE (runtime) - you need to  point to the one in JDK because the other JRE in C:\Program  Files\Java\jre6 will be missing a DLL.
    Start CF via SERVICES.msc.
    HTH, Carl.

  • [SOLVED]: Arch64 with a 32-bit JRE

    Hey guys, I'll get right to the point.
    I need to run a 32 bit JVM for certain situations on this machine due to a bug with the 64 bit JRE on Linux (not Arch related).
    I have tried to install the "jre-6u16-linux-i586" binary file - which did not work ("failed to extract") until after I installed the bin32-jre package from the AUR - on the official Java website. After that originally didn't work I tried using the AUR to install bin32-jre but now whenever I try to use either one of the two I get the following exception:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /home/blake/abs/bin32-jre/pkg/opt/bin32-jre/jre/lib/i386/xawt/libmawt.so: libXi.so.6: wrong ELF class: ELFCLASS64
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1674)
        at java.lang.Runtime.load0(Runtime.java:770)
        at java.lang.System.load(System.java:1003)
        at java.lang.ClassLoader$NativeLibrary.load(Native Method)
        at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1695)
        at java.lang.Runtime.loadLibrary0(Runtime.java:823)
        at java.lang.System.loadLibrary(System.java:1028)
        at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
        at java.security.AccessController.doPrivileged(Native Method)
        at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
        at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
        at java.awt.Component.<clinit>(Component.java:560)
    Could not find the main class: client.  Program will exit.
    After that first happened with the bin32-jre, I tried to install the authentic Java package (again) and it extracted and installed properly (unlike the other times) but still gives me the exact same (same paths and everything) exception whenever I try to use it.
    I'm at my wits end trying to figure this out, so I'd really appreciate your help.
    Thanks guys,
    -Blake
    EDIT:
    As a last resort, I installed a bundled 32 bit system and installed JRE via pacman inside the system (I made sure to chroot inside of it). Pacman installed the 64 bit version of the JRE and now I'm getting an UnsatisfiedLinkError whenever I try to use java because it's looking for 32-bit binaries that aren't there (there's an amd64 folder instead of an i386 one that it's looking for).
    Here's the error I'm getting within the bundled 32 bit system:
    Exception in thread "main" java.lang.UnsatisfiedLinkError: /opt/java/jre/lib/i386/xawt/libmawt.so: libXi.so.6: cannot open shared object file: No such file or directory
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1674)
    at java.lang.Runtime.load0(Runtime.java:770)
    at java.lang.System.load(System.java:1003)
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1695)
    at java.lang.Runtime.loadLibrary0(Runtime.java:823)
    at java.lang.System.loadLibrary(System.java:1028)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:560)
    Could not find the main class: client. Program will exit.
    EDIT:
    Solved it by adding the 32 bit VM to my PATH inside the chroot. Much thanks to derrida and jelly12gen for the assistance via IRC.
    Execute this command as root inside the bundled 32 bit system chroot:
    export PATH="opt/java/bin:$PATH"
    I was unable to get it to work inside the 64 bit installation, but running it inside the chroot works just fine.
    Last edited by blakeman8192 (2009-10-16 08:34:16)

    The chroot has its own /etc/passwd and /etc/shadow, so yes, you need to recreate the user there. It would be kind of silly if the chroot used the same config files as the real /, wouldn't it
    And if you recreate that user, you'll probably want to copy over your real .bashrc and make a slight modification to the PS1 line.

  • Telnet client for Palm VIIx that uses IR port

    Hi folks
    I know the IRda port on my Windows XP-equipped IBM ThinkPad can support TCP/IP connections via PPP (I've gotten those up and running before between two laptops, even if the connection died seconds later for unknown reasons).
    I know there's telnet clients out there for older Palms like my nifty VIIx, but before I pony up the shareware fee I'd like to know which ones support IR connections, or whether they all need to go thru a modem.  (Or maybe directly via the Hotsync cradle into the DB9 port of the telnet host? But then why would you be telnetting into said host...)
    Post relates to: Palm VIIx

    No.
    Your IR port cannot be used for syncing. The closest thing is to go out and purchase an external one.
    Keep in mind that the IR connectivity can be painfully slow... you're really better off using the cable.

  • Error invoking Mac OS X Utilities via cmd-R

    I get an error-box asking for 'Mac OS reinstall' after trying to invoke Mac OS X Utilities via 'cmd-R' for startup.
    The MacBookPro has been working fine without visible issues on Lion after normal startup. What do?
    Thanks for advice!
    Below part of the the 'Installer LOG' - which might help the experts, not me unfortunately
    Aug 15 13:00:34 localhost Unknown[322]: Launching the Language Chooser for an OS Install
    Aug 15 13:00:40 localhost configd[111]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    Aug 15 13:00:40 localhost configd[111]: DHCP en1: INIT transmit failed
    Aug 15 13:00:41 localhost LCA[323]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4000): No such file or directory
    Aug 15 13:00:41 localhost LCA[323]: Bookmark failed to issue extension for item  (depth=4000): No such file or directory
    Aug 15 13:00:41 localhost LCA[323]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4001): No such file or directory
    Aug 15 13:00:43 localhost LCA[323]: Using keyboard layout 3
    Aug 15 13:00:43 localhost Unknown[324]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Aug 15 13:00:43 localhost Unknown[324]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Aug 15 13:00:43 localhost Unknown[324]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Aug 15 13:00:43 localhost Unknown[324]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Aug 15 13:00:43 localhost LCA[323]: Found primary language hint "en"
    Aug 15 13:00:44 localhost LCA[323]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4000): No such file or directory
    Aug 15 13:00:44 localhost LCA[323]: Using keyboard layout 3
    Aug 15 13:00:44 localhost LCA[323]: Found primary language hint "en"
    Aug 15 13:00:44 localhost LCA[323]: Launching the Installer using language code "English"
    Aug 15 13:00:44 localhost OSInstaller[339]: Bookmark failed to issue extension for item  (depth=4000): No such file or directory
    Aug 15 13:00:44 localhost OSInstaller[339]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4001): No such file or directory
    Aug 15 13:00:44 localhost OSInstaller[339]: Mac OS X Installer application started
    Aug 15 13:00:44 localhost OSInstaller[339]: 1 display(s) found.
    Aug 15 13:00:44 localhost OSInstaller[339]: Display[1] is NOT using OpenGL acceleration.
    Aug 15 13:00:44 localhost OSInstaller[339]: @(#)PROGRAM:Install  PROJECT:Install-684
    Aug 15 13:00:44 localhost OSInstaller[339]: @(#)PROGRAM:Mac OS X Installer  PROJECT:OSInstaller-346.1
    Aug 15 13:00:44 localhost OSInstaller[339]: Hardware: MacBookPro6,1 @ 2.80 GHz (x 4), 8192 MB RAM
    Aug 15 13:00:44 localhost OSInstaller[339]: Running OS Build: Mac OS X 10.7 (11A511)
    Aug 15 13:00:44 localhost OSInstaller[339]: Env: DYLD_NO_FIX_PREBINDING=1
    Aug 15 13:00:44 localhost OSInstaller[339]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Aug 15 13:00:44 localhost OSInstaller[339]: Env: PWD=/
    Aug 15 13:00:44 localhost OSInstaller[339]: Env: SHLVL=1
    Aug 15 13:00:44 localhost OSInstaller[339]: Env: __OSINSTALL_ENVIRONMENT=1
    Aug 15 13:00:44 localhost OSInstaller[339]: Env: CI_DEFAULT_OPENCL_USAGE=0
    Aug 15 13:00:44 localhost OSInstaller[339]: Env: OS_INSTALL=1
    Aug 15 13:00:44 localhost OSInstaller[339]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Aug 15 13:00:45 localhost OSInstaller[339]: Failed to locate volume with UUID 6055A01E-D629-3881-843A-C77469DBB35E
    Aug 15 13:00:45 localhost OSInstaller[339]: Couldn't find Mac OS X (Server) install data.
    Aug 15 13:00:48 localhost configd[111]: subnet_route_if_index: can't get interface name
    Aug 15 13:01:05 ludwig-nastanskys-macbook-pro-17 Unknown[324]: Keyboard Layouts: duplicate keyboard layout identifier -16899.
    Aug 15 13:01:05 ludwig-nastanskys-macbook-pro-17 Unknown[324]: Keyboard Layouts: keyboard layout identifier -16899 has been replaced with -28673.
    Aug 15 13:01:05 ludwig-nastanskys-macbook-pro-17 Unknown[324]: Keyboard Layouts: duplicate keyboard layout identifier -16900.
    Aug 15 13:01:05 ludwig-nastanskys-macbook-pro-17 Unknown[324]: Keyboard Layouts: keyboard layout identifier -16900 has been replaced with -28674.
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 Unknown[324]: 2011-08-15 13:02 Mac OS X Installer[339] (CarbonCore.framework) FSEventStreamStart: ERROR: FSEvents_connect() => Unknown service name (1102)
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.1 - Client: coreservicesd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.1 - ODNodeCreateWithName request, SessionID: 00000000-0000-0000-0000-000000000000, Name: /Local/Default
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.1 - loading configuration for '/Local' from '/System/Library/OpenDirectory/Configurations/Local.plist'
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: Loaded bundle at path '/System/Library/OpenDirectory/Modules/PlistFile.bundle'
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.1 - unable to find authentication module 'ConfigurationProfiles'
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.1 - unable to find service discovery callback for module 'PlistFile'
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: Registered subnode with name '/Local/Default'
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: Registering for network changes
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: failed to open local node for internal record copy
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: Registering for power changes
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: Registering for network power changes
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.1, Node: /Local/Default - node assigned UUID - E209D006-5BBE-40DE-A132-F3FF3C73610B
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.1, Node: /Local/Default - ODNodeCreateWithName completed
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.2 - Client: coreservicesd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.2 - ODQueryCreateWithNode request, NodeID: E209D006-5BBE-40DE-A132-F3FF3C73610B, RecordType(s): dsRecTypeNative:config, Attribute: dsAttrTypeStandard:RecordName, MatchType: EqualTo, Equality: CaseExact, Value(s): SharePoints, Requested Attributes: dsAttributesAll, Max Results: 1
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.2, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.2, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.2, Node: /Local/Default, Module: PlistFile - ODQueryCreateWithNode completed
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.3 - Client: coreservicesd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.3 - ODNodeCreateRecord request, NodeID: E209D006-5BBE-40DE-A132-F3FF3C73610B, RecordType: dsRecTypeNative:config, RecordName: SharePoints, Attributes: <none>
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.3, Node: /Local/Default, Module: PlistFile - client is using a native record type 'config' which is not portable
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.3, Node: /Local/Default, Module: PlistFile - ODNodeCreateRecord completed, delivered 1 result
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.4 - Client: coreservicesd, UID: 0, EUID: 0, GID: 0, EGID: 0
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.4 - ODQueryCreateWithNode request, NodeID: E209D006-5BBE-40DE-A132-F3FF3C73610B, RecordType(s): dsRecTypeNative:config/SharePoints, Attribute: dsAttrTypeStandard:RecordName, MatchType: Any, Equality: CaseExact, Value(s): dsRecordsAll, Requested Attributes: dsAttrTypeNative:ftp_guestaccess,dsAttrTypeNative:smb_name,dsAttrTypeNative:sha repoint_account_uuid,dsAttrTypeNative:smb_createmask,dsAttrTypeNative:sharepoint _version,dsAttrTypeStandard:AppleMetaNodeLocation,dsAttrTypeNative:afp_guestacce ss,dsAttrTypeNative:afp_shared,dsAttrTypeStandard:RecordType,dsAttrTypeNative:ft p_shared,dsAttrTypeNative:afp_name,dsAttrTypeNative:smb_oplocks,dsAttrTypeNative :afp_use_parent_owner,dsAttrTypeNative:smb_directorymask,dsAttrTypeStandard:Reco rdName,dsAttrTypeNative:afp_use_parent_privs,dsAttrTypeNative:smb_guestaccess,ds AttrTypeNative:smb_inherit_permissions,dsAttrTypeStandard:AppleMetaRecordName,ds AttrTypeNative:smb_shared,dsAttrTypeNative:directory_path,dsAttrTypeNative:smb_s trictlocking,dsAttrTypeNative:sharepoint_group_id,dsAttrTypeNative:ftp_name, Max Results: 2147483647
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.4, Node: /Local/Default, Module: PlistFile - client is using an old record type 'dsRecTypeNative:config/SharePoints' should be using kODRecordTypeSharePoints
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.4, Node: /Local/Default, Module: PlistFile - client is using an old record type 'dsRecTypeNative:config/SharePoints' should be using kODRecordTypeSharePoints
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.4, Node: /Local/Default, Module: PlistFile - flushing record '/private/var/db/dslocal/nodes/Default/config/SharePoints'
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: Module: PlistFile - ___index_record_block_invoke_1: sqlite3_prepare_v2: 21
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: Module: PlistFile - ___index_record_block_invoke_1: sqlite3_prepare_v2: 21
    Aug 15 13:02:20 ludwig-nastanskys-macbook-pro-17 opendirectoryd[100]: 325.4, Node: /Local/Default, Module: PlistFile - ODQueryCreateWithNode completed
    Aug 15 13:03:03 ludwig-nastanskys-macbook-pro-17 OSInstaller[339]: Bookmark failed to issue extension for item /com.apple.recovery.boot/BaseSystem.dmg (depth=4000): No such file or directory

    LWN wrote:
    My goal was to create a bootable USB-stick based on Lion.
    For this I rebooted with the 'cmd-R' Option without any external HD or DVD connected. Apparently this invokes what you call the 'Recovery HD' (partition). Then the error occurs.
    I have exactly the same problem. This happened because of an interrupt to the reinstallation process. After the interrupt, whenever I reboot my lion with the cmd-R option, it gives me the error message: 'There was a problem installing "Mac OS X" Try reinstalling.' in exactly the same screen. After I press ok, I am in the installer. But  I cannot figure out how to reinstall. The problem is definitely with the os in the recovery disk partition, not the full lion os in the regular disk partition.
    Some people have encountered the same error message. They contacted Apple and were asked to reset the PRAM. I looked through what it did. I believe that it is an overkill. There should be some easier way to fix it. Let me know if anyone knows the details of what happens when BaseSystem.dmg is run.

  • True IP address for ARD remote client via IPObserver [newbie]

    I have had success managing LAN clients via ARD, but now my situation is different.
    I want to still be able to provide ARD support via a network address specific to a workstation from outside the LAN, and the IP address I have tried does not connect. I am deriving the address from the IP Observer utility that I had my client launch on their system. [it is not the obvious 192.168.1.xxx address from DHCP]. I have confirmed that the Sharing attributes are correct on the client system, although it might be a 2.2 version [running 3.1 admin]. Based on a test, I believe the IP Observer address is the internet IP location of the router [not the actual router LAN IP], not the client.
    The IP address indicates that it is in the correct domain [Roadrunner, NYC], but the client-specific address is inaccurate. Is it because the client is setup through a DHCP router and switch? will they need a static IP? Can they somehow reveal their station-specific IP via an iChat connection log? should I try to address the client though a different port?
    I am new to this extension of ARD, so bear with the obviousness of the query to some of you.
    thx - steve

    Hi, here is what you asked me for:
    webvpn
    enable inside
    enable outside
    csd image disk0:/securedesktop-asa-3.2.1.103-k9.pkg
    svc image disk0:/anyconnect-win-2.2.0128-k9.pkg 3
    svc enable
    cache
    max-object-size 5000
    group-policy DfltGrpPolicy attributes
    dns-server value X.X.X.X
    dhcp-network-scope X.X.X.X
    vpn-tunnel-protocol IPSec l2tp-ipsec svc webvpn
    default-domain value XXXXXX
    intercept-dhcp 255.255.255.XXX enable
    nac-settings value DfltGrpPolicy-nac-framework-create
    webvpn
    url-list value Lan_Applications
    svc keepalive none
    svc dpd-interval client none
    svc dpd-interval gateway none
    svc ask enable default webvpn
    customization value DfltCustomization
    tunnel-group DefaultRAGroup general-attributes
    authentication-server-group (outside) LOCAL
    authorization-server-group LOCAL
    authorization-server-group (outside) LOCAL
    dhcp-server XXX.XXX.XXX.XXX
    tunnel-group DefaultWEBVPNGroup general-attributes
    authentication-server-group (outside) LOCAL
    authorization-server-group LOCAL
    authorization-server-group (outside) LOCAL
    dhcp-server XXX.XXX.XXX.XXX
    authorization-required
    Best Regards,
    Jeyriku

  • Having problems with a Java Telnet Client

    I'm trying to write a Telnet Client(for a mud). I've searched the forum but can't seem to find the answer to my problem. The mud sends the ANSI color codes, is there anyway to get java to interpret this, or will I have to make a parser and do all the work by hand?

    Try looking up RFC854 & RFC855. A Google Search will give several references. Other Searches include "Interpret As Command", and "Telnet IAC Options".
    The keys to telnet communications:
    1. Unless it is explicitly a command, it is data.
    2. All Commands start with the Interpret As Command (IAC) character, decimal 255 or hexidecimal ff.
    3. IAC DO/DONT/WILL/WONT Negotiations for a Telnet Option occurs before IAC SB/SE Subnegotiations. DON'T/WON'T is the default Telnet Network Virtual Terminal (NVT) setting for all options.
    4. All Negotiations complete before you get to the data phase.
    5. Be ready for Negotiations, at the start and during the middle of the Telnet Session....
    Here is an example of decoding Telnet
    The remote host may start with the following, shown in decimal:
    255, 253, 3, 255, 253, 24, etc...
    Viewed as UTF text, this appears to be some "y" characters with special accents above them.
    Cheat Sheet:
    255 == Interpret As Command (IAC)
    254 == DON'T, as is "I DON'T support xyz...."
    253 == DO, as in "I DO support xyz..."
    252 == WON'T, as in "You WON'T support abc..."
    251 == WILL, as in "You WILL support abc..."
    250 == SuBnegotiations Start (SB)
    240 == Subnegotiations End (SE)
    The above has 2 commands:
    - 255, 253, 3 == IAC DO Suppress Go Ahead
    - 255, 253, 24 == IAC DO Terminal Type
    Appropriate Responses could be:
    - 255, 251, 3, 255, 251, 24, etc....
    OR
    - 255, 252, 3, 255,252, 24, etc...
    OR
    - 255, 251, 3, 255, 252, 24, etc...
    OR
    - 255,252, 3, 255, 251,24, etc...
    Once you get the remotes questions answered, you can move on to the real work of passing data.
    Cheers,
    Joel.

  • Deploying Lync 2010 client via SCCM

    I am trying to distribute the new Lync client via SCCM (SCCM is not the problem here, this related to any software distribution product).
    I am getting frustrated at the way the new client has been packaged - LyncSetupEval.exe in particular. Why can't Microsoft provide a simple MSI file?
    I can run the LyncSetupEval.exe file with /Install /Silent, but this managed to crash OUTLOOK.exe when it runs. Also when it completes, it automatically starts communicator.exe in the SYSTEM context, meaning that unless you restart your machine, you
    cannot run the Lync client in the user context. 
    Is anyone else having the same frustrations? I've played around with the files in the OCSetup directory, but there are of no use.

    Hi Ryan,
    Happy to share. I do a simple messy batch file / VB Script combination like this:
    @echo off
    ECHO Set wshShell = CreateObject( "WScript.Shell" ) >> usermessages.vbs
    echo wshShell.Popup "The Microsoft Lync 2010 client is about to be installed.  Please close Microsoft Outlook and Internet Explorer before clicking OK to continue.", 300, "Microsoft Lync 2010 installation" >> usermessages.vbs
    ECHO WScript.Sleep(5000) >> usermessages.vbs
    WSCRIPT.EXE usermessages.vbs
    DEL usermessages.vbs /q
    ECHO Installing Microsoft Lync 2010...
    taskkill /F /IM communicator.exe
    taskkill /F /IM outlook.exe
    taskkill /F /IM iexplore.exe
    LyncSetup.exe /Install /Silent
    taskkill /F /IM communicator.exe
    msiexec.exe /p OUTLOOK.msp /qb-!
    office2007-kb936864-fullfile-x86-en-us.exe /passive /norestart
    msiexec.exe /update Lync.msp /qb-!
    ECHO Set wshShell = CreateObject( "WScript.Shell" ) >> usermessages.vbs
    echo wshShell.Popup "The Microsoft Lync 2010 client installation was successful and can now be run from the Start Menu.", 300, "Microsoft Lync 2010 installation" >> usermessages.vbs
    WSCRIPT.EXE usermessages.vbs
    DEL usermessages.vbs /q
    I'm sure it could be a lot nicer, there is no error passing or anything but it has served me well.
    blog.danovich.com.au

  • Invoke Siebel OnDemand Web Service via BPEL

    Hi,
    We are trying to invoke Siebel OnDemand Web Service via BPEL.
    We have followed the steps as mentioned in
    http://www.oracle.com/technetwork/topics/ofm-siebel-blog-postings-092216.html
    But still we are unable to get the Session Id.
    Do we need to opne any port to resolve this issue or do we have any other way to get the session ID.
    Please let me know if there is any solution to this...
    Thanks

    Thanks for the update..
    We are trying to invoke the CRM On Demand session ID using the BPEL. It seems the we are having some problem with the URL
    https://secure-ausomxapa.crmondemand.com/Services/Integration?command=login
    => `Integration?command=login
    we are trying to access the URL from our SOA server using wget and we are getting following result.
    [XXXXXXXXXXXXXXX ~]$ wget https://secure-ausomxapa.crmondemand.com/Services/Integration?command=login
    --07:32:19-- https://secure-ausomxapa.crmondemand.com/Services/Integration?command=login
    => `Integration?command=login'
    Resolving secure-ausomxapa.crmondemand.com... 141.146.149.68
    Connecting to secure-ausomxapa.crmondemand.com|141.146.149.68|:443...
    We are expecting that we are unable to access the URL using 443 port.

  • Sunpkcs11 in applet   force browser to use 32 bit jre

    I  am using sunpkcs11 in my applet for reading smartcard,sunpkcs11.jar is only available  in 32 bit jvm , so if a borwser has latest jdk and it has 64 bit version then my applet will fail  , please advice  are there any parameters in applet which will force borwser to download 32 bit version jre for running my applet?

    Thanks Andrew Thompson for your reply.
    The problem is, the end-user will have both 32-bit and 64-bit JREs. They need 32-bit JRE for other applications and our application has to use 64-bit JRE. The target of desktop shortcut (created during installation of application) points to “C:\Windows\SysWOW64\javaws.exe”. If this target is changed to “C:\Windows\System32\javaws.exe”, the application use 64-JRE . The target can be manually changed by right click desktop shortcut icon-> Properties->select Shortcut tab and change the target.
    Is there any way to change this target of desktop shortcut programmatically while installing the application?
    Regards,
    Kamal.

  • DirectoryContext.search with WildCard "*" Fails in 64 Bit JRE

    Hi all,
    I'm using DirectoryContext.search with wildcard "*" filter. it works fine in 32 Bit JRE, but throws the following exception when I run the same in Solaris 64 Bit JRE.
    Exception in thread "main" javax.naming.directory.InvalidSearchFilterException: invalid attribute description; remaining name 'ou=People,dc=mydomain,dc=com'
    at com.sun.jndi.ldap.Filter.encodeSimpleFilter(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeFilter(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeFilterList(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeComplexFilter(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeFilter(Unknown Source)
    at com.sun.jndi.ldap.Filter.encodeFilterString(Unknown Source)
    at com.sun.jndi.ldap.LdapClient.search(Unknown Source)
    at com.sun.jndi.ldap.LdapCtx.doSearch(Unknown Source)
    at com.sun.jndi.ldap.LdapCtx.searchAux(Unknown Source)
    at com.sun.jndi.ldap.LdapCtx.c_search(Unknown Source)
    at com.sun.jndi.toolkit.ctx.ComponentDirContext.p_search(Unknown Source)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(Unknown Source)
    at com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.search(Unknown Source)
    at javax.naming.directory.InitialDirContext.search(Unknown Source)
    Please help.
    Thanks in advance,
    Regards,
    Kaja

    When will Aobe Acrobat support Office 2010 64 bit and Windows 7 64 bit?

  • Telnet Client fails to detect Telnet Server reboot

    Hello All,
    I have written a telnet client that establishes a telnet session with the help of org.apache.commons.net.telnet.TelnetClient to the server and it monitors a particular file. It reads the latest contents written to that file using the tail -F command . The problem I am facing is that the blocking call inputStream.read(int) does not throw an exception even when the telnet server machine reboots, but When network cable is unplugged we are getting an IOException. Due to this behavior my program fails to receive the updates from the file after a machine reboot. Even the telnetClientObject.isConnected() returns true while the machine is rebooting.
    Can you please suggest ways to rectify this issue?
    Thanks,
    Naveen

    Set a socket read timeout.

  • Is there any way to specify the 32 bit jre rather than the 64 bit jre?

    We have multiple apps that read native libraries, some of which are not yet available as 32 bit dlls. This has become an issue with the rising popularity of 64 bit Windows 7.
    Is there any kind of workaround that will force a webstart to be run by the 32 bit jre if both the 32bit and 64 bit are loaded?

    Welcome to the forum. Please don't post in threads that are long dead and don't hijack other threads. When you have a question, start your own topic. Feel free to provide a link to an old post that may be relevant to your problem.
    The question doesn't make sense anyway, 32bit isn't available, but 64bit dlls are?
    I'm locking this thread now.

  • 32 bit JRE in 64 bit windows.

    Hello,
    I know its very much basic question... But i am not much clear about it.
    Can u plz anyone clear me....
    Rite now i am using my java application with jre 1.6.0_11 in 32 bit Windows architecture.
    And now we planned to support *64 bit Windows architecture like Windows 2008 Server R2,Windows 7 (64 bit) etc..*.
    Now my confusion is whether *32 bit jre will work properly with this 64 bit architectures*?
    Please guide me....
    Thank You !!!

    I think you will not be able to install a 32 bit application in 64 bit machine.
    In general installing a 32 bit application in 64 bit is no issue. You can do it.what i am saying is if the user is installing a 32 bit application into a 64 bit application then whether the application will work or not will depend on some factors. There is no straight answer "yes" or "No" for this. Depend on application to application. Also on the type os support provided by the 64 bit OS for running 32 bit application.
    please give me clear information that whether my 32 bit jre (which is used my java application) will work in 64 bit architecture?why don't you just install and check it whether it is working or not. I think you can do this while sitting in your chair.
    if i run my application with 32 bit jre in 64 bit architecture will i encounter any kind of performance or real time issue?I have given a link in my replies check it again.

Maybe you are looking for

  • How to call a variable in another class????

    if i have two classes in a package. From one class, how do i get the value of one of the variable in the other class. For example; Class A have a variable call totalNum which have a value initialise. Class B wan to get the value variable totalNum in

  • Adding a new view in Account Identification

    We have a requirement to add a new view beside Installed Base| Object. I maintained entries in Object Component and Ac Identification Profile. While navigating to the new view there is an exception. Cannot display view CRMCMP_BPIDENT/ObjectCompVs of

  • What's happening with BT Broadband Talk??

    When I joined BT some years ago I was advised to use BT Broadband Talk, as this was a VOIP service the calls made via BT Broadband Talk were cheaper than made via a landline (at least that was what they told me when they sold this to me). Recently I

  • I just bought a song and it's not showing up

    About five minutes ago I just bought a song in the ITunes Store and it took the money, but the song isn't under my "Purchased" list or my regular songs at all and neither is the band.

  • Is Communication user recommended to access Webdynpro ABAP?

    Hi, I don´t know if somebody knows if we can recomend the client to use a communication user type for accesing Webdynpros for ABAP, can this cause some licence problems? or communication users can be used by final users without a problem? Hope somebo