64 bit client SDK

Hi All
My team is deploying the client SDK on a 64 bit solaris environment and we are getting errors from it.
any ideas what we should do for the client SDk to work on 64 bit OS that is different than a 32 bit OS.
I don't believe there is a special SDK for 64 bit OS
Thanks

Dear njmog1,
thank you for your suggestion.
The application was compiled as "AnyCPU".
I recompiled it as "x86" and now I can also start it on a Win7 64 bit SAP B1 client.
Regards
   Emanuele

Similar Messages

  • Character encoding problems when using javascript client-sdk for remoting

    Hi,
    I have recently downloaded LCDS to try.  I was interested in using Javascript for remoting.  I have a Java-based web application on the server side, and use HTML + Javascript (dataservices-client.js) to send/receive messages asynchronously in AMF format.
    I can both send and receive data (not only simple types, but objects with several attributes), however when I receive data from the server side that contains special chars (e.g. á, ï), I get some gibberish in my javascript objects. This is not same when I send content to the server: All special characters are received (printed) correctly in Java (server side).
    I inspired my coding with the simple example shown in https://blogs.adobe.com/LiveCycleHelp/2012/07/creating-web-applications-using-html5javascr ipt-remoting-client-sdk-with-livecycle-data-services.html
    Is there any bug on the serialization?
    My software version is Adobe LiveCycle es_data_services_JEE_4_7_all_win
    Java container is WebLogic 11g.
    Thanks
    =======
    Edited Apr 11 2014
    In my attempts, I tried using AMFX serialization so that I could see the message in a more comprehensible format inside my browser (eg using firebug).  After configuring an HTTP channel and destination in the server side, and adjusting accordingly in the client side code, the Javascript API still sends binary!
    Sadly, I concluded that client-SDK isn't mature enough...
    By the way, if you send an String like "&aacute" from the server, in the client you get "á"... instead of the raw "&aacute" ... they forgot escaping.

    hey,
    I had a similar experience. I was interfacing between 4.6 (RFC), PI and ECC 6.0 (ABAP Proxy). When data was passed from ECC to 4.6, RFC received them incorrectly. So i had to send trimmed strings from ECC and receive them as strings in RFC (esp for CURR and QUAN fields). Also the receiver communication channel in PI (between PI and  RFC) had to be set as Non unicode. This helped a bit. But still I am getting 2 issues, truncation of values and some additional digits !! But the above changes resolved unwanted characters problem like "<" and "#". You can find a related post in my id. Hope this info helps..

  • Access denied report App\Client SDK

    Server crashed, therefore I reinstalled Crystal Reports 9 & Crystal Enterprise 9 and attempting to rebuild the ASP pages which pass report parameters. The error received is:
    Technical Information (for support personnel)
    Error Type:
    webReporting.dll (0x80004005)
    Access denied. Please check directory setting for files you can access.
    /HTMLViewers/reportgenerator.asp, line 31
    Browser Type:
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727)
    Page:
    GET /HTMLViewers/reportgenerator.asp
    Line 31 on the page reads:
    .processHttpRequest Request, Response, Session
    Running the registry moniter I receive an access Denied for hklm\software\Crystal Decisions\9.0\report App\client SDK
    This is my first time on the forum, hope I explained myself properly.

    Thanks Shaun, I appreciate your link for the process monitor application. This replaces my older seperate reg mon & file mon apps.
    I have now been able to determine that my application is getting to where it is calling  the cachemanager.dll and it is experiencing the problem. I tried manually registering this dll and receive the error Loadlibrary("cachemanager.dll")failed. GetLastError Returns 0x00000007e.
    If I change the ASP pages to a very simple process, it will run the demo report, and my report. Once I attempt to use the ASP page with the login requesst, and parameter call I receive this error.
    Error Type:
    webReporting.dll (0x80004005)
    The system cannot find the path specified.
    /HTMLViewers/reportgenerator.asp, line 31
    Browser Type:
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 2.0.50727)
    Page:
    GET /HTMLViewers/reportgenerator.asp
    The reportgenerator ASP page which is causing this error is:
    trace.write(category,message)
    trace.warn(category,message)
    <%@ Language="VBScript"%>
    <%
    'Declare variables for the report viewer and the ObjectFactory objects, and create the ObjectFactory object.
    Dim ObjectFactory, userName, password
    dim clientid
    dim reportid
    clientid = request.querystring("Clientid")
    session("Clientid") = clientid
    reportid = request.querystring("reportid")
    ' open a report
    ' copy this report to "Report Directory" in RAS Configuration Manager
    Session("ReportName") = "C:\Program Files\Crystal Decisions\Report Application Server 9\Reports\logonparm\" & reportid
    userName = "SYSDBA"
    password = "masterkey"
    'Create the ObjectFactory for use in creating other Crystal Objects
    Set ObjectFactory=CreateObject("CrystalReports.ObjectFactory.2")
    'Instantiate the Server Control object which allows us to collect information about the required
    'inputs to run the report
    Set ServerControl = ObjectFactory.CreateObject("CrystalReports.CrystalReportServerControl")
    With ServerControl
       .ReportSource = Session("ReportName")
       .EnableLogonPrompt = False     ' Set this to false so that we can override the controls prompting for logon
       .processHttpRequest Request, Response, Session
    End With
    Set Session("ReportParameters") = ServerControl.ParameterFields
    ' Set Login info for all connections
    ' ***************** Added to logon using Viewer SDK *****************************
    Set connectionInfos = serverControl.databaseLogonInfos
    For x=0 To connectionInfos.count - 1
         Set connInfo = connectionInfos.Item(x)
        connInfo.UserName = CStr(username)
         connInfo.Password = CStr(password)
    Next
    For each parameter in Session("ReportParameters")
              Set parameterField = parameter
              paramName = parameterField.Name     
              if paramName = "INTERFACE ID" then
                   Dim paramValue
                   Set paramValue = ObjectFactory.CreateObject("CrystalReports.ParameterFieldDiscreteValue")
                   paramValue.Value = session("Clientid")
                   parameterField.CurrentValues.RemoveAll
                   ' Add this value to current value list
                   parameterField.CurrentValues.Add paramValue 
              end if
    Next
    Set clientDoc = CreateObject("CrystalClientDoc.ReportClientDocument")
    clientDoc.Open session("ReportName")
    set session("oclientdoc")=clientdoc
    Session("pathReport") = pathReport
    Set Session("connectionInfos") = connectionInfos
    Response.Redirect "Viewer.asp"
    %>
    My appologies if I do not explain my problem well. I am not an ASP programmer, and am desperatly looking for assistance to resolve this problem. If anyone can refer a contract programmer that would be interested and capable of assisting me, that would be appreciated. I believe I am close to resolving this problem. I purchased a support session only to find out that this version is no longer supported.

  • Oracle 11g install for WinXP 64-bit - is 32-bit client needed?

    I just saw that the WinXP 64-bit version of 11g is now available.
    Does anyone know if it is necessary to install both the 64-bit Database and 32-bit Client on the same machine for a development server. This was the procedure for 10gR2 as the 64-bit ODBC drivers would not work with 32-bit ODBC apps.
    Thanks!

    I submitted a TAR/SR on MetaLink...
    Yes... you need both.

  • Error: OUI.exe Stopped Working 11g R2 32-bit Client on Win 7 64-bit

    I am receiving an error "oui.exe stopped working" when running setup.exe to install Oracle 11g R2 (win32_11gR2_client.zip for Win 32-bit) client on Windows 7 Enterprise 64-bit. I never even get as far as the Oracle installation dialog box. I am trying to install 11g R2 32-bit because it is my understanding the 64-bit version of Oracle client is not compatible with Toad for Oracle.
    I have read numerous posts on the subject and have tried just about everything I can think of to get around the error. When I run the setup.exe -debug I can see that teh files are unzipped and the installer seems to fail when it hit the section where it tries executing java.exe. Once the dialog box appears with the error message, I am not able to get back to the command window to extract the debug results. I can only see it partially in the background behind the dialog box. When I hit cancel to close the error dialog, the debug window also closes, so no way to get the details of the debug results
    I am logged into Win 7 as a member of the Adminstrators group and have verified that the Windows User Access Control (UAC) is turned off. I get the erorr message whether I run as Administrator or not. I have unzipped all the files and folders under the \client directory from the zip file to a folder c:\temp\. So the setup.exe and all folders below it are in the c:\temp directory. I did this because one post suggested an issue with long path names or path names with spaces when executing setup.exe.
    Seems like it should not be this difficult. I never had issues in the past installing Oracle client on Windows XP Pro. This is my first attempt at installing under Win 7.
    Any help or direction would be much appreciated.
    Edited by: user10421280 on Nov 21, 2011 1:27 PM

    orafad and PavanG,
    First let me thank you both for your multiple attempts to help me. I finally figured out what was causing the issue with the Oracle Installer, oui.exe not running properly. Last night I was looking around into the Windows Event Viewer and found an Error entry for oui.exe that pointed to a program directory and .dll in the \\program files\appsense\ directory path. It seems that in addition to the McAfee virus scan, host intrusion, unwanted programs, group policy manager, etc., there is another application installed on the machine that governs what programs can and cannot run. I don't know much about it other than when the program was temporarily suspended, the setup.exe and oui.exe install kicked off fine without the "oui.exe stopped working" error message. It proceeded happily to the Oracle Client installation dialog. All along our IT desktop support was trying to help me with the install and they repeatedly disabled the McAfee programs to no avail, but not the other utilities. It was almost like even they were unaware of this other application running in the background since they never suggested disabling it.
    Either way, I'm happy to say that I am now able to successfully launch the Oracle Client installer without issue. I've also learned a little about getting the Oracle 11g Instant client to work with Toad while I worked through the issue with the installer. I could almost get by completely with just using the Instant Client if I didn't have to use SQL*Loader (sqlldr.exe) and tnsping.exe. Any suggestions for getting these two functions to work with the Instant Client would be appreciated. I tried copying the binaries and the message files into the appropriate instant client directories, but windows kept complaining about missing .dll's when I tried executing the commands.
    If there is no workaround for getting these functions to work with the Instant Client, and I have to do an Oracle Client install, at least now I can. Do you know if I would need to do the full "Administrator" install to get these functions, or can I do just the "Run Time" install to get sqlldr and tnsping?
    Thanks again for your help

  • 64-bit server, 32-bit client: Addon Development

    Hello,
    First time posting so bear with me
    Given how Business One handles distributing addon installations between the client and the server, what is the recommended strategy for running 32-bit client versions of Business One while the server operates under 64-bit?
    We have compiled 64-bit versions of the addon for the server, but it attempts to distribute them to the client, and visa versa, thus throwing errors.  Any tips would be greatly appreciated.
    Thanks!
    Chris

    Hello again,
    Just thought I'd bump this topic.  We're still working on this issue and any experience you all have had with it is greatly appreciated.
    Thank you

  • Cannot reinstall SAP Business One 32 Bit Client program

    Hi Everyone,
    I started with a computer which had SAP Business One Clients (32 & 64 Bit versions) installed, along with the DTW (Data Transfer Workbench). I have since uninstalled both Business One clients, and am now wanting to reinstall the 32 Bit Client (only).
    When I double click on the Setup.exe file I am presented with the message below -
    I don't understand why I am presented with this message given that I have uninstalled the software.
    In addition to uninstalling the software through the Windows (7) Control Panel, I have also manually deleted all files and folders related to Business One (using a Windows Search), with the exception of those files related to the DTW, and finally deleted all TEMP files.
    If I click on Cancel the setup stops, but if I click on OK I see the following -
    When I click on OK, above, I see the following -
    What can I do now to fully remove all traces of the previous Client installations so that I can reinstall the 32 Bit Client?
    Any advice will be greatly appreciated.
    Kind Regards,
    David

    Hi Everyone,
    Firstly I now have an 'S-User ID', so I have access to SAP Resources.
    Secondly, thank you Sridharan for posting the information to this thread, it is a great help (particularly given that I wasn't sure how long it would take my provider to organise an S-User ID).
    Thirdly; these are the actions I have taken - none have helped!
    Attempted installation in the 'hidden' Windows Administrator account
    http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-windows-vista/
    THE FOLLOWING COME FROM THE OFFICIAL SAP 'FIX' (as shown above in Sridharan's post)
    1). Tried both points, a), and b), in the InstallShield link -
    http://consumerdocs.installshield.com/selfservice/viewContent.do?externalId=Q108474&sliceId=1
    However I could not proceed with point 3), because by my reckoning the SAP Business One Client that I am using relies upon Installshield 17 (and there is no link available for this version!).
    If I am incorrect about the above can somebody please let me know which version of Installshield was used, and I will then return to point c) of the Installshield 'Q108474' link.
    2). Microsoft C++ 2005 is not installed on the computer.
    3). Registry entries did not exist, and I am going to assume where removed when I performed a registry clean with Registry Mechanic (before posting this thread).
    I have downloaded a trial version of Installshield Enterprise, and I am hopeful that it will contain a version 17 driver file, in which case I will return to 'Q108474'.
    In the meantime however if anybody has any further suggestions can you please post?
    I really don't want to reinstall Windows just because one program will not load.
    Kind Regards,
    David

  • SAP Business One 32 Bit Client freezing when printing?

    Hi Everyone,
    I am experiencing an issue with printing on a SAP Business One 32 Bit Client. The client is installed onto a Windows 7 (x64) Professional computer, and the business I work for uses the version of Business One shown below -
    The issue that is being experienced is as follows - assuming that an appropriate (printable) document is loaded, e.g.: a Delivery Note, then selecting File (menu) > Print:
    20 second delay to 'load' the printer selection dialog, then after clicking on OK (to print)
    30 second delay until 'paper is printed', during which time the SAP Business One User Interface freezes!
    I have identified that this issue only occurs with SAP, e.g.: printing of Word documents, PDFs, emails, etc responds in the expected amount of time (and none of the a fore mentioned programs experiences any freezing with their User Interfaces).
    In order to remedy this I first downloaded and installed the newest printer driver for the printer, however when no improvement was noticed I made the decision to uninstall and then re-install Business One. In doing so I followed the method outlined below -
    Even after performing all of the above I have seen no improvement in printing or program responsiveness. If you have experienced this issue, and you know a fix can you please contribute to this forum thread?
    Any help will be greatly appreciated.
    Kind Regards,
    David

    Hi,
    It is an application error. Refer SAP note 1955101 - CR_Printing Crystal reports and layouts is slow
    Thanks & Regards,
    Nagarajan

  • Cannot Install 11g 64 bit client on Windows 7 Professional 64 bit OS

    I am trying to install Oracle 11g 64 bit client on Windows 7 64 Bit Professional. I'm running setup as administrator and all prerequisites fail with Actual Value not Found Expected value not found. I select ignore and press next and the application just silently shuts down. Log is too big so here is an abbreviated log.
    Here is the installation log
    Thanks in advance!
    Using paramFile: C:\temp\win64_11gR2_client\client\install\oraparam.ini
    Checking monitor: must be configured to display at least 256 colors. Actual 4294967296 Passed
    INFO: Initial values of Setup Properties :
    PROPERTY VALUE
    COLLECTOR_IGNORE_CONFIGURATION false
    COLLECTOR_IGNORE_FAILURES false
    COLLECTOR_RESPONSE_FILE
    DECLINE_SECURITY_UPDATES false
    FROM_LOCATION C:\temp\win64_11gR2_client\client\install\../stage/produc
    ts.xml
    INSTALL_TYPE InstantClient
    MYORACLESUPPORT_PASSWORD Protected value, not to be logged
    MYORACLESUPPORT_USERNAME
    ORACLE_BASE
    ORACLE_HOME
    ORACLE_HOSTNAME xxx-xxxxxxx-xxx.xxx.xxxxxxx.xxx
    PROXY_HOST
    PROXY_PORT
    PROXY_PWD Protected value, not to be logged
    PROXY_USER
    SECURITY_UPDATES_VIA_MYORACLESUPPORT true
    SELECTED_LANGUAGES {"en"}
    oracle_install_LaunchNetCA false
    oracle_install_NoMigration true
    oracle_install_RACInstall false
    oracle_install_WindowsSystemDirectory
    oracle_install_client_OraMTSPortNumber 2030
    oracle_install_db_ConfigurationType
    oracle_install_db_InstallEdition EE
    oracle_install_db_InstallType
    INFO: Launching Oracle Client Installer
    INFO: Started executing the flow in INTERACTIVE mode
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state init
    INFO: Waiting for completion all forked tasks at state init
    INFO: All forked task are completed at state init
    INFO: Completed background operations
    INFO: Executing action at state init
    INFO: Completed executing action at state <init>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <init>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <init>
    INFO: Completed validating view at state <init>
    INFO: Validating state <init>
    WARNING: Validation disabled for the state init
    INFO: Completed validating state <init>
    INFO: Verifying route success
    INFO: Get view named [InstallTypesUI]
    INFO: size estimation for InstantClientinstall is 199.0705451965332
    INFO: size estimation for Administratorinstall is 1068.0003070831299
    INFO: size estimation for Runtimeinstall is 751.6538038253784
    INFO: View for [InstallTypesUI] is oracle.install.ivw.client.view.InstallTypesGUI@94b318
    INFO: Initializing view <InstallTypesUI> at state <clientInstallType>
    INFO: InstallTypesPane installType is: InstantClient
    INFO: Completed initializing view <InstallTypesUI> at state <clientInstallType>
    INFO: Displaying view <InstallTypesUI> at state <clientInstallType>
    INFO: Completed displaying view <InstallTypesUI> at state <clientInstallType>
    INFO: Loading view <InstallTypesUI> at state <clientInstallType>
    INFO: Completed loading view <InstallTypesUI> at state <clientInstallType>
    INFO: Localizing view <InstallTypesUI> at state <clientInstallType>
    INFO: size estimation for InstantClientinstall is 199.0705451965332
    INFO: size estimation for Administratorinstall is 1068.0003070831299
    INFO: size estimation for Runtimeinstall is 751.6538038253784
    INFO: Completed localizing view <InstallTypesUI> at state <clientInstallType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state clientInstallType
    INFO: Completed executing action at state <clientInstallType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <clientInstallType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Client Install Type set in InstallTypeUI is : Administrator
    INFO: Validating view at state <clientInstallType>
    INFO: Completed validating view at state <clientInstallType>
    INFO: Validating state <clientInstallType>
    WARNING: Validation disabled for the state clientInstallType
    INFO: Completed validating state <clientInstallType>
    INFO: In Transition of InstallTypesAction:
    INFO: Verifying route ic_no
    INFO: Get view named [ProductLanguageUI]
    INFO: View for [ProductLanguageUI] is oracle.install.ivw.common.view.ProductLanguageGUI@74d175ff
    INFO: Initializing view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed initializing view <ProductLanguageUI> at state <productLanguage>
    INFO: Displaying view <ProductLanguageUI> at state <productLanguage>
    INFO: Fetching Available Languages...
    INFO: Completed displaying view <ProductLanguageUI> at state <productLanguage>
    INFO: Loading view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed loading view <ProductLanguageUI> at state <productLanguage>
    INFO: Localizing view <ProductLanguageUI> at state <productLanguage>
    INFO: Completed localizing view <ProductLanguageUI> at state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state productLanguage
    INFO: Waiting for completion all forked tasks at state productLanguage
    INFO: All forked task are completed at state productLanguage
    INFO: Completed background operations
    INFO: Executing action at state productLanguage
    INFO: Completed executing action at state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <productLanguage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: The languages in which the product will be installed are [en]
    INFO: Validating view at state <productLanguage>
    INFO: Completed validating view at state <productLanguage>
    INFO: Validating state <productLanguage>
    INFO: Using default Validator configured in the Action class oracle.install.ivw.common.action.ProductLanguageAction
    INFO: Completed validating state <productLanguage>
    INFO: Verifying route productlanguage_yes
    INFO: Get view named [InstallLocationUI]
    WARNING: Active Help Content for InstallLocationPane.cbxOracleBases do not exist. Error :Can't find resource for bundle oracle.install.ivw.client.resource.ContextualHelpResource, key InstallLocationPane.cbxOracleBases.conciseHelpText
    WARNING: Active Help Content for InstallLocationPane.cbxSoftwareLoc do not exist. Error :Can't find resource for bundle oracle.install.ivw.client.resource.ContextualHelpResource, key InstallLocationPane.cbxSoftwareLoc.conciseHelpText
    INFO: View for [InstallLocationUI] is oracle.install.ivw.client.view.InstallLocationGUI@3850620f
    INFO: Initializing view <InstallLocationUI> at state <getOracleHome>
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: Completed initializing view <InstallLocationUI> at state <getOracleHome>
    INFO: Displaying view <InstallLocationUI> at state <getOracleHome>
    INFO: Completed displaying view <InstallLocationUI> at state <getOracleHome>
    INFO: Loading view <InstallLocationUI> at state <getOracleHome>
    INFO: Completed loading view <InstallLocationUI> at state <getOracleHome>
    INFO: Localizing view <InstallLocationUI> at state <getOracleHome>
    INFO: Completed localizing view <InstallLocationUI> at state <getOracleHome>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state getOracleHome
    INFO: Completed executing action at state <getOracleHome>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <getOracleHome>
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <getOracleHome>
    INFO: Completed validating view at state <getOracleHome>
    INFO: Validating state <getOracleHome>
    INFO: custom prereq file name: oracle.client_Administrator.xml
    INFO: refDataFile: C:\temp\win64_11gR2_client\client\stage\cvu\oracle.client_Administrator.xml
    INFO: isCustomRefDataFilePresent: false
    INFO: InstallAreaControl exists: false
    INFO: Checking:NEW_HOME
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:COMP
    INFO: Checking:ORCA_HOME
    INFO: Reading shiphome metadata from C:\temp\win64_11gR2_client\client\install\..\stage\shiphomeproperties.xml
    INFO: Loading beanstore from file:/C:/temp/win64_11gR2_client/client/install/../stage/shiphomeproperties.xml
    INFO: Translating external format into raw format
    INFO: Restoring class oracle.install.driver.oui.ShiphomeMetadata from file:/C:/temp/win64_11gR2_client/client/install/../stage/shiphomeproperties.xml
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: inventory location isC:\Program Files\Oracle\Inventory
    INFO: size estimation for Administratorinstall is 1068.0003070831299
    INFO: PATH has :==>C:\Users\xxxxxxxx\AppData\Local\Temp\OraInstall2012-04-17_11-11-24AM\jdk\jre\bin;.;C:\windows\system32;C:\windows;C:\app\xxxxxxxx\Oracle\product\11.2.0\client_win32\bin;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\DLLShared\;C:\Program Files (x86)\Common Files\Roxio Shared\OEM\12.0\DLLShared\;C:\Program Files (x86)\Roxio\OEM\AudioCore\;C:\Program Files\TortoiseSVN\bin;C:\Program Files (x86)\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\;c:\Program Files\Microsoft SQL Server\90\DTS\Binn\
    INFO: Completed validating state <getOracleHome>
    INFO: InstallLocationAction to INVENTORY_NO
    INFO: Verifying route INVENTORY_NO
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state prereqExecutionDecider
    INFO: Completed executing action at state <prereqExecutionDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <prereqExecutionDecider>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <prereqExecutionDecider>
    INFO: Completed validating view at state <prereqExecutionDecider>
    INFO: Validating state <prereqExecutionDecider>
    WARNING: Validation disabled for the state prereqExecutionDecider
    INFO: Completed validating state <prereqExecutionDecider>
    INFO: Verifying route executeprereqs
    INFO: Get view named [PrereqUI]
    INFO: View for [PrereqUI] is oracle.install.commons.base.interview.common.view.PrereqGUI@64d90254
    INFO: Initializing view <PrereqUI> at state <checkPrereqs>
    INFO: Completed initializing view <PrereqUI> at state <checkPrereqs>
    INFO: Displaying view <PrereqUI> at state <checkPrereqs>
    INFO: Completed displaying view <PrereqUI> at state <checkPrereqs>
    INFO: Loading view <PrereqUI> at state <checkPrereqs>
    INFO: Completed loading view <PrereqUI> at state <checkPrereqs>
    INFO: Localizing view <PrereqUI> at state <checkPrereqs>
    INFO: Completed localizing view <PrereqUI> at state <checkPrereqs>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state checkPrereqs
    INFO: custom prereq file name: oracle.client_Administrator.xml
    INFO: refDataFile: C:\temp\win64_11gR2_client\client\stage\cvu\oracle.client_Administrator.xml
    INFO: isCustomRefDataFilePresent: false
    INFO: Completed executing action at state <checkPrereqs>
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state checkPrereqs
    INFO: Waiting for completion all forked tasks at state checkPrereqs
    INFO: Creating PrereqChecker Job for leaf task Physical Memory
    INFO: Creating CompositePrereqChecker Job for container task Free Space
    INFO: Creating PrereqChecker Job for leaf task Free Space: xxx-xxxxxxx-xxx:C:\Users\xxxxxxxx\AppData\Local\Temp
    INFO: Creating PrereqChecker Job for leaf task Architecture
    INFO: Creating PrereqChecker Job for leaf task Environment variable: "PATH"
    INFO: CVU tracingEnabled = false
    INFO: Preparation of nodes for running verifications failed. Reason:
    - Cause Of Problem Not Available
    INFO: *********************************************
    INFO: Physical Memory: This is a prerequisite condition to test whether the system has at least 128MB (131072.0KB) of total physical memory.
    INFO: Severity:IGNORABLE
    INFO: OverallStatus:OPERATION_FAILED
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:xxx-xxxxxxx-xxx
    WARNING: Result values are not available for this verification task
    INFO: *********************************************
    INFO: Free Space: xxx-xxxxxxx-xxx:C:\Users\xxxxxxxx\AppData\Local\Temp: This is a prerequisite condition to test whether sufficient free space is available in the file system.
    INFO: Severity:IGNORABLE
    INFO: OverallStatus:OPERATION_FAILED
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:xxx-xxxxxxx-xxx
    WARNING: Result values are not available for this verification task
    INFO: Error Message:PRVF-4001 : Check: Space available on "C:\Users\xxxxxxxx\AppData\Local\Temp"
    INFO: Cause: Could not determine mount point for location specified.
    INFO: Action: Ensure location specified is available.
    INFO: *********************************************
    INFO: Architecture: This is a prerequisite condition to test whether the system has a certified architecture.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:OPERATION_FAILED
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:xxx-xxxxxxx-xxx
    WARNING: Result values are not available for this verification task
    INFO: *********************************************
    INFO: Environment variable: "PATH": This test checks whether the length of the environment variable "PATH" does not exceed the recommended length.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:OPERATION_FAILED
    INFO: -----------------------------------------------
    INFO: Verification Result for Node:xxx-xxxxxxx-xxx
    WARNING: Result values are not available for this verification task
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: All forked task are completed at state checkPrereqs
    INFO: Completed background operations
    INFO: Moved to state <checkPrereqs>
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Expected value not found.
    INFO: Actual value not found.
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <checkPrereqs>
    INFO: Completed validating view at state <checkPrereqs>
    INFO: Validating state <checkPrereqs>
    INFO: Using default Validator configured in the Action class oracle.install.ivw.client.action.PrereqAction
    INFO: Completed validating state <checkPrereqs>
    INFO: Verifying route success
    INFO: Get view named [SummaryUI]

    I disagree with your assessment, for two reasons.
    One is the severity for RAM is listed as Severity:IGNORABLE.
    Secondly I just saw this happen to myself just a moment ago (which is how I found this threat) as well using a silent install on a Windows 2008r2 server I can install to using the setup.exe manually. so disk and memory really isn't an issue.
    I suspect something else is going on here. If you read those warnings the Critical they are just the last two about disk space and the PATH variable. Perhaps I am not running as elevated as I thought or the C$ share is not reach able. I am going to keep trying and will report back here when I get my silent install working.
    INFO: Verification Result for Node:xxx-xxxxxxx-xxx
    WARNING: Result values are not available for this verification task
    INFO: Error Message:PRVF-4001 : Check: Space available on "C:\Users\xxxxxxxx\AppData\Local\Temp"
    INFO: Cause: Could not determine mount point for location specified.
    INFO: Action: Ensure location specified is available.
    INFO: *********************************************
    INFO: Architecture: This is a prerequisite condition to test whether the system has a certified architecture.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:OPERATION_FAILED
    INFO:
    INFO: Verification Result for Node:xxx-xxxxxxx-xxx
    WARNING: Result values are not available for this verification task
    INFO: *********************************************
    INFO: Environment variable: "PATH": This test checks whether the length of the environment variable "PATH" does not exceed the recommended length.
    INFO: Severity:CRITICAL
    INFO: OverallStatus:OPERATION_FAILED
    INFO:

  • Unable to load 32 bit client on 64 bit windows 7 Enterprise

    I got a new PC at work and tried doing my oracle installs but I keep having failures on the 32 bit Oracle client install. What happens is that the install proccedes without issue until the copy files step at which it freezes at 8% progress. When I look in the oracle_home folder I find an inventory directory and nothing more. When I go to the program files or program files(x86) directory I find that the oracle directory has not been created. When I try the install with the 64 bit version I have no issues. Unfortunatelly there are a number of products that still require the 32 bit client software, such as TOAD. Does anyone have any suggestions as to what could possibly be causing this?

    Pl identify which exact version of Oracle you are installing. If you want to install both 32-bit and 64-bit versions, the ORACLE_BASE directory has to be different
    http://docs.oracle.com/cd/E11882_01/relnotes.112/e23557/toc.htm#CJADGJDB
    Pl also post the last 100 lines from the install log - http://docs.oracle.com/cd/E11882_01/install.112/e24187/ts.htm#i1090466
    HTH
    Srini

  • How to play offline content using Smooth Streaming Client SDK for Windows 8.1 and/or Windows Phone 8.1

    Hi there,
    The Smooth Streaming Client SDK for Windows 8.1 at
    https://visualstudiogallery.msdn.microsoft.com/0170c67c-c183-4fee-8dd4-c2b44d710d40 specifies "Offline playback scenarios via Downloader Plugin*". I have been searching the web to find info on how to download content for offline playback scenarios
    using the Downloader Plugin, but can't find nothing, so is there any samples, API docs or blogs out there showing how to do this?
    Sandip Ahluwalia

    Hi Sandip,
    As stated in the sample you linked:
    For feedback and future requests please use IIS.net forum and related forum tread which can be accessed from
    here
    --Rob

  • Installation of forms 11g release 2 on windows 7 64 bit client

    Hi,
    I am trying to install forms and reports 11g release 2 on my windows 7 64 bit client.
    When I tried to install it, I got a message Weblogic should be installed first.
    In the Oracle site there are many versions of Weblogic. Which should I install?
    Thanks
    Rani

    Rani,
    Oracle has rebranded the Oracle Developer Suite (ODS) as Fusion Middleware (FMw). Part of the evolution of the suite has been the replacement of the OC4J Container used by ODS to use WebLogic Server. Unfortunately, in order to install the FMw Forms and Reports builders you must also install the WebLogic Server (WLS) on your development workstation. Each version of FMw is dependent on a specific version of the WLS. Here is the basic break down:
    WLS 10.3.2 with FMw R1 (11.1.1.2)
    WLS 10.3.3 with FMw R1 (11.1.1.3)
    WLS 10.3.4 with FMw F1 (11.1.1.4)
    WLS 10.3.5 with FMw R2 (11.1.2)
    As you can see, you will need to download and install the WLS 10.3.5 before you can install FMw R2. Make sure you do not run the WLS configuration step at the end of the instllation. When you install FMw r2, it will perform the necessary configuration the WLS and Forms and Reports Services.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • How to get 64-bit install and 32-bit client to work on 1 pc

    I have installed a full 64-bit 11g R2 install on my Windows 7 D: drive, installed two DB's, worked great. Then I realized application I need to support requires 32-bit client (for drivers) so I installed the 11g client also.
    My problem is that my registry only shows one ORACLE_HOME--the 64-bit full install whereas Cognos reqs to point to 32-bit client.
    Sqlplus in 64-bit works fine (D:\oracle\app\dock\product\11.2.0\dbhome_1\BIN\sqlplus.exe) whereas the 32-bit client sqlplus (D:\oracle\client\app\dock\product\11.2.0\client_1\BIN\sqlplus.exe) does not work. The error is:
    ORA-12560: TNS:protocol adapter error
    If I open cmd prompt and navigate to 32-bit sqlplus under client this WILL work to login (but then I noticed it was using the 64-bit ORACLE_HOME and PATH settings if I typed set). In order to fix Cognos, I changed my ORACLE_HOME and path to point to the 32-bit client (i.e. from D:\oracle\app\dock\product\11.2.0\dbhome_1 to
    ORACLE_HOME = D:\oracle\client\app\dock\product\11.2.0\client_1
    PATH = D:\oracle\client\app\dock\product\11.2.0\client_1\bin;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files\ThinkPad\Bluetooth Software\;C:\Program Files\ThinkPad\Bluetooth Software\syswow64;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\
    Guess what? This stopped both the 64-bit and 32-bit sqlplus from working, even after bouncing the computer. Now the listener (64-bit) OracleOraDb11g_home1TNSListener will also not start either.
    Sooooo, I think I need to set the OH and PATH back to the 64-bit as that is what the Listener requires but any ideas how to get the 32-bit sqlplus to also work?!?
    Thanks in advance for any help!

    lo**** wrote:
    My problem is that my registry only shows one ORACLE_HOME--the 64-bit full install whereas Cognos reqs to point to 32-bit client. The env/reg variables probably do exist/show, only in the right place. In Win 64-bit, there's a separate branch of reg entries for 32-bit (look for WoW6432Node).
    >
    ... whereas the 32-bit client sqlplus (D:\oracle\client\app\dock\product\11.2.0\client_1\BIN\sqlplus.exe) does not work. The error is:
    ORA-12560: TNS:protocol adapter errorIt works as expected. Since there is no Oracle instance in the Client home (no surprise), you can't connect "locally" from the 32-bit sqlplus. I.e. you need to use "...@connectident" in the connect string.
    In order to fix Cognos, I changed my ORACLE_HOME and path to point to the 32-bit client (i.e. from D:\oracle\app\dock\product\11.2.0\dbhome_1 toOn Windows platform, ORACLE_HOME should not be set by user (it is already set by installer, in the Registry).
    To pick up proper settings, PATH need to be set or used.
    >
    Sooooo, I think I need to set the OH and PATH back to the 64-bit as that is what the Listener requires but any ideas how to get the 32-bit sqlplus to also work?!?Please remove OH from env system settings.
    Multiple homes on Windows is often a source of problems, since extra consideration and setup is needed more than just installing the software.
    If "Cognos" relies on system PATH, then one way to go might be:
    - put path to 32-bit Client bin folder first in PATH
    - set up a shortcut to command window with only 64-bit in PATH, for times when you need to administer the database via command line.

  • Installing 64 bit client on Windows Server 2008

    Hi,
    I'm trying to install an 11.2.0.2 64 bit client on my windows 2008 R2 server and its not going through. The install wizard completes, but when I click "install" it starts up the install and just closes in about 3 seconds installing nothing in the install directory.
    We currently have a 32 bit 11.2.0.2 client installed on the server as well.
    How can I get the 64 bit client to install properly?
    I've tried running the setup.exe as admin, running it through cmd with ignore system prereqs, and giving the install folder full permissions to everyone
    Edited by: 893188 on Oct 25, 2011 12:41 PM

    Pl confirm that you are installing using two separate ORACLE_BASE directories - one for 32-bit and the other for 64-bit.
    http://download.oracle.com/docs/cd/E11882_01/relnotes.112/e16777/toc.htm#CJADGJDB
    Are there any clues in the install log ? http://download.oracle.com/docs/cd/E11882_01/install.112/e16774/ts.htm
    HTH
    Srini

  • Window 7 32 bit client machine dot net exe running in IE8 or IE9 from server security warning file download issue

    Help me in the issue, Asp dot net exe which run from server in IE 8 window 7 32 bit client machine show security file save download message. This app was running fine if we don't apply any window 7 or IE8 patches. same issue when running in
    IE9. I already run the caspol, add the server link to trusted site with low security. I wonder why it was working fine without any patches.
    I just found that client machine win 7 32 bit has dot net 4.5.1 installed when updated all the patches. after uninstall the dot net 4.5.1. the application worked fine. now I wonder what are the settings need to change to run the application with dot net 4.5.1
    installed on machine. as Microsoft always has these things in window updates. thanks in advance.

    Hi Gparhar,
    In case you are posting on .NET setup forum, I suspect it is not the right forum for your issue, we talks about "setup and deployment of .NET Framework.", if you have problem on installing and uninstalling .NET 4.5.1, we can share you some advice.
    For your specific case, I recommend you consult ASP.NET forum instead:
    http://forums.asp.net/
    Regards,
    Barry Wang
    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.

Maybe you are looking for

  • Barcode implementation at delivery level:

    Could you please share with me your experience of implementing / integrating Barcode with SAP. Hi All, Our client is planning to implement Barcode(developed in Dotnet) for a specific plant while doing delivery. On the basis of available quantity, pic

  • How do I stop Lion intercepting Control Down in Excel

    Control Up works but Lion grabs left,right, and down. Is there someway to make Lion ignore these when working in excel?

  • Slection Screen Validations

    Hi Experts,     Could any one provide me the material for selection screen validations Ex: In selection Initial screen, I have 2 radio buttons. Based on selecting the radio button, the input selection screen should be displayed below the radio button

  • Download Adobe Bridge CC, English version

    When I try to download Bridge CC i come to the swedish Adobe web site but I want the english version. What to do?

  • Negative black issue and 1.2

    Hi there, Can anyone confirm if the negative black issue has been fixed with 1.2?