Webutil HOST function

Hi, everyone.
I am trying to write some client_host commands in Oracle Forms 10g. I finished all I need in my application, but there is one problem. I need raise some notepad files on client file system. But problem is I MUST raise file without raise command prompt window ( unfortunately, it is always raising) and when I closed my notepad file command prompt is moved.
I try with next webutil stuff:
- webutil_host.nonblocking('cmd /c notepad') - i preferred this routine, cause I need several command, but everytime cmd raise on the screen
- client_host('cmd /c notepad',no_screen) - no_screen does not work correctly
- webutil_host.blocking('cmd /c notepad') - i try this, it is not work, but i rather like to use nonblocking
I also combine all of this with Terminate_Process(process in PROCESS_ID) and Release_Process(process in out PROCESS_ID) .
Is anyone have some praxis with that.
Best regards.

sorry, sorry it works ;-)
Forms has write the result of the DIR command to the server
the right code is
dir > c:\text.txt
with the next step i have a Problem
when i use the command PAUSE in the betchfile
test.bat:
echo on
pause
dir > c:\test.txt
webutil_host.host('cmd /c c:\test.bat');
The CMD-Box hangs on
reg. Alfred

Similar Messages

  • WebUtil:  oracle.forms.webutil.host.Host bean not found

    Hi. This is my first attempt using WebUtil. The following code is in my When-New-Form-Instance trigger:
    client_host('N:\TTMS\ITS\vbasic\compiled\MenuUpdate.exe');
    This is the error I receive:
    oracle.forms.webutil.host.Host bean not found
    I've included my formsweb.cfg below for your reference. Note that the application is using the [ttmsmenu] configuration.
    Thanks in advance for your help with this problem.
    ***FORMSWEB.CFG***
    # $Id: formsweb.cfg 15-apr-2005.13:17:30 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (frmservlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overridden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/forms/frmservlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    #WebUtilArchive=frmwebutil.jar,jacob.jar
    #WebUtilLogging=off
    #WebUtilLoggingDetail=normal
    #WebUtilErrorMode=Alert
    #WebUtilDispatchMonitorInterval=5
    #WebUtilTrustInternal=true
    #WebUtilMaxTransferSize=16384
    # System parameter: default base HTML file
    baseHTML=base.htm
    # baseHTML=webutilbase.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # baseHTMLjinitiator=webutiljini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # baseHTMLjpi=webutiljpi.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms if unset.
    workingDirectory=
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    form=test.fmx
    # Forms runtime argument: database connection details
    userid=
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    # HTMLbeforeForm=
    HTMLbeforeForm=<SCRIPT LANGUAGE="JavaScript">window.opener = top;</SCRIPT>
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms/lservlet
    # Forms applet parameter
    codebase=/forms/java
    # Forms applet parameter
    #imageBase=DocumentBase
    imageBase=codeBase
    # Forms applet parameter default 750
    # width=1000
    # width=100%
    width=500
    # Forms applet parameter default 600
    # height=700
    # height=100%
    height=500
    # Forms applet parameter default false
    separateFrame=true
    # Forms applet parameter
    # splashScreen=
    splashScreen=no
    #splashScreen=ttmslogo_new.gif
    # Forms applet parameter
    background=ttmslogo_new.gif
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=ttms_banner.gif
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0022-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,22
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=0
    # Single Sign-On OID configuration parameter
    oid_formsid=%OID_FORMSID%
    # Single Sign-On OID configuration parameter
    oracle_home=C:\DevSuiteHome_1
    # Single Sign-On OID configuration parameter
    formsid_group_dn=%GROUP_DN%
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # EndUserMonitoring
    # EndUserMonitoringEnabled parameter
    # Indicates whether EUM/Chronos integration is enabled
    EndUserMonitoringEnabled=
    # EndUserMonitoringURL
    # indicates where to record EUM/Chronos data
    EndUserMonitoringURL=
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/forms/frmservlet?config=sepwin".
    [sepwin]
    separateFrame=True
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    # Example Named Configuration Section
    # Example 3: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms/lservlet/debug
    # Sample configuration for deploying WebUtil. Note that WebUtil is shipped with
    # DS but not AS and is also available for download from OTN.
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle
    [ttmsmenu]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    baseHTML=webutilbase.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle
    width=500
    height=500
    background=no
    form=ttmsmenu.fmx

    Dumb dumb dumb.
    I was running this form out of Form Builder 10g. At some point I changed the Application Server URL (Edit => Preferences => Runtime menus) from:
    http://ssbuechl2.div16.ibm.com:8889/forms/frmservlet?config=ttmsmenu
    to:
    http://ssbuechl2.div16.ibm.com:8889/forms/frmservlet?
    So my customized configuration with all the WebUtil references was not being referenced and I was getting the error.
    Dumb dumb dumb.

  • Webutil not functioning well

    Hi!
    I have a problem running webutil.
    I think I have installed correctly webutil, because when I run the demo (WU_TEST.fmb), everything works fine. Though, when I run my form, the console shows this:
    Loading http://linguado.users.lis.ipn.pt:8888/forms90sificap/webutil/webutil.jar from JAR cache
    Loading http://linguado.users.lis.ipn.pt:8888/forms90sificap/webutil/jacob.jar from JAR cache
    Loading http://linguado.users.lis.ipn.pt:8888/forms90/java/f90all_jinit.jar from JAR cache
    RegisterWebUtil - Loading Webutil Version 1.0.2 Beta
    Loading http://linguado.users.lis.ipn.pt:8888/forms90sificap/jars/HyperLink.jar from JAR cache
    Loading http://linguado.users.lis.ipn.pt:8888/forms90sificap/jars/icons.jar from JAR cache
    connectMode=HTTP, native.
    A versão do Forms Applet é: 90290
    2004-Abr-02 16:26:24.180 WUI[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Abr-02 16:26:24.190 WUI[VBeanCommon.getIPAddress()] 10.2.1.12
    2004-Abr-02 16:26:24.240 WUF[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Abr-02 16:26:24.320 WUF[VBeanCommon.getIPAddress()] 10.2.1.12
    2004-Abr-02 16:26:24.330 WUH[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Abr-02 16:26:24.330 WUH[VBeanCommon.getIPAddress()] 10.2.1.12
    2004-Abr-02 16:26:24.340 WUS[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Abr-02 16:26:24.340 WUS[VBeanCommon.getIPAddress()] 10.2.1.12
    2004-Abr-02 16:26:24.370 WUT[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Abr-02 16:26:24.370 WUT[VBeanCommon.getIPAddress()] 10.2.1.12
    2004-Abr-02 16:26:24.500 WUO[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Abr-02 16:26:24.500 WUO[VBeanCommon.getIPAddress()] 10.2.1.12
    2004-Abr-02 16:26:24.520 WUL[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Abr-02 16:26:24.530 WUL[VBeanCommon.getIPAddress()] 10.2.1.12
    2004-Abr-02 16:26:24.550 WUB[VBeanCommon.findLocalHost()] obtaining LocalHost info from InetAddress
    2004-Abr-02 16:26:24.560 WUB[VBeanCommon.getIPAddress()] 10.2.1.12
    2004-Abr-02 16:26:26.513 WUI[setProperty()] Setting property WUC_GET_LOCAL_PROPERTY to syslib.ffisamp.dll
    2004-Abr-02 16:26:26.533 WUI[getProperty()] Getting property WUC_GET_LOCAL_PROPERTY
    2004-Abr-02 16:26:26.543 WUI[loadSettings()] Local properties file loaded
    2004-Abr-02 16:26:26.543 WUI[getProperty()] Value of WUC_GET_LOCAL_PROPERTY=1.0
    2004-Abr-02 16:26:28.05 WUB[VBeanCommon.destroy()] WebUtil Browser Functions being removed..
    2004-Abr-02 16:26:28.05 WUL[VBeanCommon.destroy()] WebUtil C API Functions being removed..
    2004-Abr-02 16:26:28.626 WUO[VBeanCommon.destroy()] WebUtil Client Side Ole Functions being removed..
    2004-Abr-02 16:26:28.636 WUT[VBeanCommon.destroy()] WebUtil File Transfer Bean being removed..
    2004-Abr-02 16:26:28.636 WUS[VBeanCommon.destroy()] WebUtil Session Monitoring Facilities being removed..
    2004-Abr-02 16:26:28.636 WUH[VBeanCommon.destroy()] WebUtil Client Side Host Commands being removed..
    2004-Abr-02 16:26:28.636 WUF[VBeanCommon.destroy()] WebUtil Client Side File Functions being removed..
    2004-Abr-02 16:26:28.646 WUI[VBeanCommon.destroy()] WebUtil GetClientInfo Utility being removed..
    Debugging the form I noticed that WHEN-CUSTOM-ITEM-EVENT trigger of WEBUTIL_FILETRANSFER_FUNCTIONS bean of WEBUTIL data block stops the whole process, even in debugging mode, nothing happens. In fact, the following lines are added to the java console and the form shows nothing at all:
    2004-Abr-02 16:26:28.05 WUB[VBeanCommon.destroy()] WebUtil Browser Functions being removed..
    2004-Abr-02 16:26:28.05 WUL[VBeanCommon.destroy()] WebUtil C API Functions being removed..
    2004-Abr-02 16:26:28.626 WUO[VBeanCommon.destroy()] WebUtil Client Side Ole Functions being removed..
    2004-Abr-02 16:26:28.636 WUT[VBeanCommon.destroy()] WebUtil File Transfer Bean being removed..
    2004-Abr-02 16:26:28.636 WUS[VBeanCommon.destroy()] WebUtil Session Monitoring Facilities being removed..
    2004-Abr-02 16:26:28.636 WUH[VBeanCommon.destroy()] WebUtil Client Side Host Commands being removed..
    2004-Abr-02 16:26:28.636 WUF[VBeanCommon.destroy()] WebUtil Client Side File Functions being removed..
    2004-Abr-02 16:26:28.646 WUI[VBeanCommon.destroy()] WebUtil GetClientInfo Utility being removed..
    I want to use file upload and download from db in this form. Can anybody help me please?
    Thanks
    Ana

    Hi!
    I turned console debugging into level 5 but there was not any more errors.
    I checked the differences between my code and the demo code and there were no differences I can see.
    Something strange occurs: after I remove all the functions that call webutil from my code, when I remove webutil from object groups, I recompile my form (Ctrk+K) and everything works fine (no webutil in there).
    Then I subclass webutil into object group and it still works fine. I save my form and when I close forms developer and open it again with my form, I try to run it and it doesn't work... Java Console shows the same thing and nothing happens in the browser...
    I don´t understand what happens....
    Can anyone help me please?
    Thanks
    Ana

  • Pipes, host function

    Hello,
    I upgraded a app from 4.5 to 10g, where oracle pipes was used to execute OS operation, now i've to replace it with host function, does anyone knows where i can gather some documentation, information with this topics.
    Please help, it's very urgent.
    thanks
    JA

    See
    http://www.oracle.com/technology/sample_code/products/forms/index.html
    and
    http://www.oracle.com/technology/products/forms/htdocs/webutil/webutil.htm
    Regards

  • Webutil.host.HostBean not found WEBUTIL_HOST.execute will not work

    Hi everyone:
    I've got a form. I've attached webtill.pll and subclassed webutil.olb.
    In the WHEN-NEW-FORM-INSTANCE trigger it does:
    client_host('cmd /c cd > arch.txt');
    When I execute my form I got the errror:
    webutil.host.HostBean not found
    WEBUTIL_HOST.execute will not work
    Could anyone give me some help on it?
    Thanks!
    Carolina

    Hi!
    this is what I got in the Java console
    JInitiator: Versión 1.3.1.22
    Usar versión JRE 1.3.1.22-internal Java HotSpot(TM) Client VM
    Directorio local del usuario = C:\Documents and Settings\Administrador
    Configuración del delegado: sin delegado
    JAR cache enabled
    Location: C:\Documents and Settings\Administrador\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://rx26201:7778/forms/java/frmall_jinit.jar from JAR cache
    Loading http://rx26201:7778/forms/java/frmwebutil.jar from JAR cache
    Loading http://rx26201:7778/forms/java/jacob.jar from JAR cache
    Loading http://rx26201:7778/forms/java/dgrImages.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    La versión del applet Forms es: 10.1.2.0
    thanks!

  • Webutil Host bean error

    I'm trying to use the webutil.nonblocking procedure, i followed all the steps in the user guide to install the webutil and i attached the library to the form and subclassed the object group, but when running the form i receive this error
    oracle.forms.webutil.host.Host bean not found.Webutil_host.execute will not work
    can anybody help
    regards
    lilian

    Problem solved ..
    check for the following
    1- make sure the virtual path in the orion-xml file is correctly set.
    2-make sure that the signature of the jacob,jar and frmwebutil.jar is successfully done.
    3- check the WebArchive entry is correctly set
    hope this will help ..
    Regards
    Lilian

  • Webutil.host and space in filename ....

    Hello,
    Do someone have found a solution at the problem of space in filename calling whith webutil.host ?
    under winxp if I do :
    CMD /C start "C:\Program Files\Microsoft Office\OFFICE11\WINWORD.EXE" "C:\travail\COMMENTAIRES DU DOSSIER 5200257".doc
    it works well
    But do the same in Webutil.host command ... and it fail :<
    I see that this was an old problem in post but dunot have found any response ..
    tk anyway.

    So, i have try all these options and found that webutil seems to cut spaces.
    As I have this
    LC$Cmd := 'cmd /c start "C:\Program files\Microsoft Office\OFFICE11\WINWORD.EXE" "c:\travail\COMMENTAIRES DU DOSSIER 5200257.doc"'
    WEBUTIL_HOST.Nonblocking( LC$Cmd ) ;     
    webutil launch :
    "C:\Program files\Microsoft Office\OFFICE11\WINWORD.EXE" "c:\travail\COMMENTAIRES DU DOSSIER 5200257.doc"'
    and so it dunot found the document
    bcs it make all space -> 1 space
    strange !!
    perlaps some have got same problem ?

  • TC 2TB support the host function  with a  Sharkoon SATA QuickPort Duo

    I would like to buy a Sharkoon SATA QuickPort Duo:
    and I would like to connect it to my late 2009 TC 2TB.
    *Can I connect this thing to my TC and access both disks?*
    I contacted sharkoon for more info on the SATA QuickPort Duo:
    Hello,
    +we do not have any experience in Apple hardware. But when your device does+
    +support host function it should normally recognize both HDD. The used chipset+
    +in Quickport is JMicron which is normally supported by Apple comuters.+
    +Kind regards+
    +Andreas Klein+
    +SHARKOON Technologies GmbH+
    *The specs:*
    After the resounding success of the SATA QuickPort, comes the new SATA QuickPort PRO. Responding to the requests and needs of many customers, this update increases the functionality of an already excellent device.
    In addition to its ability to connect any SATA HDD (2.5" and 3.5") without a time-consuming installation, the SATA QuickPort PRO also offers 2 USB ports and a card reader that supports the formats SD, SDHC, and MMC/MS.
    The SATA QuickPort PRO connects to PCs using either the USB2.0 or significantly faster eSATA interface.
    Rely on only the most intelligent solution, our SATA QuickPort PRO ...
    Features:
    • Enables the direct connection of a SATA HDD to your PC
    • Suitable for 2.5" and 3.5" SATA HDDs
    • USB front hub (2 connectors)
    • Card reader (SD, SDHC, MMC/MS)
    • External interfaces: USB2.0 and eSATA
    • Premium craftsmanship
    • On/off button
    • LEDs for power and HDD access
    • No drivers needed for Windows ME/2000/XP/Vista, Mac OS X and higher
    Package content:
    • SATA QuickPort PRO
    • Power adaptor
    • USB cable
    • eSATA cable
    • Short manual
    http://www.guardiansystems.nl/image/verkoop/sataquickport_duo1.jpg
    http://www.sharkoon.com/html/produkte/externegehaeuse/sata_quickport_pro/indexen.html?id=11

    Yes. I use the MacSales Elite Classic and connect to the USB port. Then I had to go into the Airport Utility and set the Time Capsule to "share" this connected disk.
    Message was edited by: satcomer

  • Can't run host function in procedure and reports

    Hello
    i'm unable to use the host function in reports and procedure.
    host('ar60runb userid=apps/apps report=/vision/d01/oracle/visappl/fnd/11.5.0/reports/US/UBLPS1.rdf batch=yes mode=bitmap destype=file desname=/vision/d01/oracle/visappl/fnd/11.5.0/reports/US/UBLPS1.pdf desformat=pdf paraform=yes P_EMP_NO='||i.EMPLOYEE_NUMBER||' PAYDT='||i.PAY_RUN_DATE);
    Kindly help ASAP!!!!
    Regards
    Fahad

    "I noticed that when I publish apk from Flash I don't  have option to select path to android SDK below 2 checkboxes ( install app on device and run app on device after publishing)"
    Are you saying the 2 checkbox's are missing? If so ,(or even if not), perhaps you don't have the latest extension installed in flash?
    http://labs.adobe.com/technologies/flashpro_extensionforair/
    I had an issue like you describe before. Everything was updated with my machine and phone, usb debugging , allow installation of non market apps... but i was not able to manually install my own apk's on my device.
    If i were to put the .apk on my server or just drag it to the phone via USB i could not install it. it was "untitled" or "unknown" i forget.
    The only way it would work was on export "install application on the connected android device".
    However If i took anyone else's .apk made from flash, i could install it from my server or via usb drag/drop.
    Even at one point someone on the forum posted an apk and the source .fla
    Installed that apk? = YES
    Export the same .fla myself with no changes = FAIL to install (unless launching directly from flash).
    I was using windows xp, I happen to be upgrading my cpu last month so i installed windows 7 and re-installed flash, and now it works fine. I never figured it out. I was somehow producing non-viable .apks . However it works now and I have done nothing different (besides going from xp to win7 and reinstalling flash).
    "other air apps (from other ppl) work both on phone and device."
    I'm guessing you only installed other air4android apps from the market?
    If you haven't tried yet, i could email you a .fla and .apk, see if you can install that from your ftp. Then re-export if yourself and see if it fails again?
    edit:spelling

  • Concurrent calling of Host function

    Hi all,
    I had using HOST() function in my form's library to sent label printing command to printer, it work ok when only 1 client is print label, but when there is concurrent client calling printing label function, one of the label not success to printed and no error return. I had trace my program and both client is calling HOST() to send the label to printer, but I had no idea why one of the label not successful to printed out. Please Help!
    Beside that, is that any log file can i refer to whether HOST() function return any internal error that didn't show on the screen?
    Thanks in advance.
    p/s: I'm using webForm and my OracleAS version is 9.0.4.3
    ek

    Hi,
    I'm calling 'c:\bin\rfprint.exe "\\172.21.9.123\GENERICT" c:\wm\setup\lbl\166_609026.lbl >> c:\wm\temp\label.log'. 1st parameter is a application to print label. 2nd parameter is printer name, 3rd parameter is label file and 4th parameter is log file.
    Thanks.

  • Replacing Oracle pipes with host function

    Hello,
    I upgraded a app from 4.5 to 10g, where oracle pipes was used to execute OS operation, now i've to replace it with host function, does anyone knows where i can gather some documentation, information with this topics.
    Thanks
    JA

    Sorry. I didn't see that my post to him was submitted...
    Just in case here's the result from his site:
    :P3_OUTPUT_STRING := regexp_replace(
    :P3_INPUT_STRING
    ,’:([a-zA-Z0-9_]*)’
    ,’v(”\1”)’);
    Martin

  • Webutil HOST and NO_SCREEN option

    How can I hide the DOS window that open on the client side when I use webutil's HOST command?
    I would like to be able to do the same thing as when using the NO_SCREEN option with forms' HOST command.
    It is not very nice for the user to see little black windows opening and closing....
    MJH

    I know this thread is old, but I figured I would contribute this in case anyone is still looking for an answer:
    http://www.commandline.co.uk/cmdow/
    It is third-party code, but it appears to do just what it claims to.

  • WebUtil -- OLE functions Forms 10G

    We could use severl webutil functions but OLE.
    When calling it is failing right in the first line....
    application:=CLIENT_OLE2.create_obj('Outlook.Application');     
    generating below error in Java Console.....Any help is appreciated..
    Exception occurred during event dispatching:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.jacob)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkLink(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.jacob.com.Dispatch.<clinit>(Dispatch.java:537)
         at oracle.forms.webutil.ole.OleFunctions.create_obj(Unknown Source)
         at oracle.forms.webutil.ole.OleFunctions.getProperty(Unknown Source)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)

    Its all in the first line:
    java.lang.ExceptionInInitializerError: java.security.AccessControlException: access denied (java.lang.RuntimePermission loadLibrary.jacob)
    This probably means that you did not correctly sign the JAR files....hence a security exception accessing the jacob library
    Regards
    Grant Ronald
    Oracle Product Management

  • Webutil host nonblocking blank file

    Hi, I've used webutil_host.nonblocking( 'rundll32 url.dll,FileProtocolHandler ' || v_location||v_filename ); to call an .csv file.
    first execute everything is fine...we can see data writed on that file.... but when we execute again, we just have a blank page .csv ...
    does anyone know how we can fix it?
    Thanks in advance,
    Alwin

    Hi
    WebUtil has trouble with white space , but If you use the "?? character in palce of white space it will work:
    fileName := replace(fileName,' ' ,'?');

  • Host function plus sudo command not working

    Hi,
    For normal command such as ls, it works.
    But when I run the following
    v_host := '/usr/bin/sudo -u devuser /test/app/dev/scripts/test.sh
    host(v_host);
    it does not work.
    anyone has idea ? Thanks.
    Ivan

    I imagine sudo is probably attempting to prompt for a password. I think it depends on who you are logged in as and who you are trying to log in as (and whether you have logged in recently within the last few minutes).
    The host command won't support this kind of interaction. It needs to be a command that returns its results without requiring any further prompting.
    That would be my guess.

Maybe you are looking for