ADF Faces + hardware device in the client side.( adf swing  or adf java fx)

We are using adf+swing in desktop app.
We like ADF Faces but we need interations with Hardware device in the client side: scan reader, web cam, bar code reader, finger prints reader …
How to do that’s in the adf faces web environment ( what about with sandbox security) how to obtain in the adf faces web page in the client side de video streams.
In the future adf will be use Java FX?
Thanks
Juan Carlos Llanes

Hi,
see sample 71 http://www.oracle.com/technetwork/developer-tools/adf/learnmore/index-101235.html#CodeCornerSamples
You can use ActiveX plugins or JavaApplet to access the client system. To reach out of the sandbox, it will require a certificate
In the future adf will be use Java FX?
No.

Similar Messages

  • Unable to find ADF Faces core option in the component palette...

    Hai
    I am learning ADF framework. Iam going through the ADF developers guide..
    When i am layouting a JSF JSP page .. am unable to find the panelPage option...
    In the tutorial i read like this
    component palette-->ADF Faces core ---> panelPage.
    I am unable to find this option...i am using Jdev10.1.3
    any one can help me....

    What exactly can't you find?
    The component palette? It is by default on the right side of JDev.
    The ADF Faces Core option? The component palette is by default initiated on HTML Forms (I think). When you click on this, you'll be able to select the desired option.
    The PanelPage? When selecting ADF Faces Core as describe above, you should see PanelPage among the possibilities.

  • How to Print Crystal Report without any dialog message on the client side

    Hi!
    I've read too much questions like this, but i can't find any answer.
    How can i print a report on the client side directly?
    I have three buttons, "Generate Report", "Generate PDF", "Print".
    I want when the "Print" button was clicked, automaticaly the report is printed using default printer, like PrintToPrinter function, but in the client side.
    Thanks!

    If you search for previous posts about this, you will see many posts saying not possible.  If this functionality was possible, you could essentially have a page that would send something to a clients printer just by visiting the page, how bad of security hole would that be?

  • Opening a Java Window from a jsp page on the client side

    Hi all,
    Thanks in advance to all who could help me for this problem.
    I've written some jsp pages. In one of them, I open a new Java Window,
    which is a simple Java Frame. If I test this directly on the Tomcat
    server, everything works well.
    But when I call the jsp page through a web browser of a distant client
    (normal use), and when I want to see the java window, no window pops
    up. It appears that the Java Window pops up on the server, and not on
    the client side, which is what I wanted.
    Could someone tell me how to make the Java frames appear on the client
    side ? (Is it linked to the code or to the configuration of Tomcat ?)
    Thanks in advance,
    Alexis.

    JSP always run on the server. On the client you only see the results.
    But you can use applets on the client side: http://java.sun.com/docs/books/tutorial/uiswing/components/applet.html

  • Auto remove of log files on the client-side is not working

    Hi,
    I have a setup for one-to-one client/server replication database. Everything is replicated ok.
    But on the client side, I see the log.00000000xx files are not removing at all,
    while the server has only 2 last log.00000000xx files left. But if I switch the role of the client/server,
    the newly server will eventually removed the unused log.00000000xx file, and have two last log file left.
    Both client and server database environment setup has called dbenvp->log_set_config(dbenvp, DB_LOG_AUTO_REMOVE, 1).
    Is there any additional setting for the client-side to auto remove the unused log files?
    Thanks,
    Sandra

    Hi.
    First, what version are you running? We created a test to confirm that this feature is
    working as expected on both a master and a client site. What flags do you have set
    for replication? I think we need to have you run with replication verbose messages
    set on the client site and possibly other diagnostics in order to determine what is different
    about your setup. We should take that level offline. Verbose messages can generate
    a large amount of output.
    You can contact me at the typical [email protected] and we'll move it
    forward that way. Thanks.
    Sue LoVerso
    Oracle

  • Possible to delete Offline Files content for a specific user from the Client Side Cache (CSC) ?.

    Hello Everyone,
    We would like to implement a script to delete the offline files in the Client Side Cache (CSC) for a nominated user (on Windows 7 x64 enterprise).
    I am aware that;
    1. We can use a registry value to flush the entire CNC cache (for all users) next time the machine reboots.
    2. If we delete the user's local profile it appears that Windows 7 also removes their content from the local CSC.
    However, we would like to just delete the CSC content for a particular nominated user without having to delete their local user profile.
    In our environment we have many users that share workstations but only use them occasionally. We don't use roaming profile so we would like to retain all the users' local profiles but still delete the CSC content for any users that haven't
    logged on in a week.
    Any ideas or info would be appreciated !
    Thanks, Makes

    Hi,
    I don't think this is possible.
    If you want to achieve it via script, I suggest you post it in official script forum for more professional help:
    http://social.technet.microsoft.com/Forums/scriptcenter/en-US/home?category=scripting
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    Karen Hu
    TechNet Community Support

  • How can i lookup a session bean from the client side

    how can i lookup a session bean from the client side...........i am using sun appserver..............
    this is my code.................[B]
    private final static String JNDI_NAME="ejb/LmsBean";
    private static String url="ldap://localhost:4848";
    Hashtable h=new Hashtable();
    h.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
    h.put(Context.PROVIDER_URL,url);
    System.out.println("Before Loading Context in Delegate");
    Context ctx=new InitialContext(h);
    System.out.println("Loaded Context in Delegate");
    Object obj=ctx.lookup(JNDI_NAME);
    System.out.println("Loaded Object in Delegate");
    System.out.println("Before Loading Home in Delegate");
    LmsHome home = (LmsHome )PortableRemoteObject.narrow(obj,com.parx.lms.controller.LmsHome.class);
    System.out.println("Loaded Home in Delegate");
    lms = home.create();
    System.out.println("Loaded remote in Delegate");
    [B]and i got the exception........
    Inside Client before calling delegate
    Before Loading Context in Delegate
    javax.naming.CommunicationException: Request: 1 cancelled
    javax.naming.CommunicationException: Request: 1 cancelled
    at com.sun.jndi.ldap.LdapRequest.getReplyBer(LdapRequest.java:60)
    at com.sun.jndi.ldap.Connection.readReply(Connection.java:405)
    at com.sun.jndi.ldap.LdapClient.ldapBind(LdapClient.java:340)
    at com.sun.jndi.ldap.LdapClient.authenticate(LdapClient.java:171)
    at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2640)
    at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:290)
    at com.sun.jndi.ldap.LdapCtxFactory.getUsingURL(LdapCtxFactory.java:175)
    at com.sun.jndi.ldap.LdapCtxFactory.getUsingURLs(LdapCtxFactory.java:193
    at com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance(LdapCtxFactory.ja
    va:136)
    at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.jav
    a:66)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:6
    62)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:243
    at javax.naming.InitialContext.init(InitialContext.java:219)
    at javax.naming.InitialContext.<init>(InitialContext.java:195)
    at com.parx.lms.lmsdelegate.LmsDelegate.getController(LmsDelegate.java:3
    0)
    at com.parx.lms.lmsdelegate.LmsDelegate.addUserDelegate(LmsDelegate.java
    :50)
    at com.parx.lms.client.consoleClient.Client.main(Unknown Source)
    pls go tru the exception and pls help.........

    That url string should be having the server name or ip instead of localhost.

  • Open/read a txt file on the client side in a Form server architecture

    We are moving our software from client-server to Web architecture but we have problems
    with all the forms that use GET_FILE_NAME and
    TEXT_IO built-in functions.
    This commands, in fact, work on the application-server side and not on the client (browser-side) as we need.
    How can we solve this problem??????
    Thank-you for your help.
    null

    there is a way to solve this problem.
    you must use developer 6 and above.
    you will have to modify your appliaction and use developer ability to work with javabeans
    you will have to write a javabean that will do the read/write operation at the client side.
    for more details look at my answer to the following topic:
    "Read and Write Files to user from FormsServer "
    that was opened at dec 15.
    Yossi

  • The service DS.RFCService could not be found on the client side

    Hi Experts,
    I am facing the following error message when i try to create SAP connection from management Console of DataServices 4.0 SP1
    "The service DS.RFCService could not be found on the client side"
    In Management Console...
    SAP connections->RFC  Server configuration.
    Trying to add RFC Server interface. it says
    The Service DS.RFC Services could not be found on client side.
    can anyone help me out of this issue..plz
    In my System I installed SAPBusinessObjects BI Platform 4.0 instead of Information platform services,BODS 4.0 SP1,IS 4.0 SP1...
    I checked the CMC ->servers->EIM -APS services->properties. i could not find any RFC or admin services running.
    anything is missing? any note explain about this?
    Pls advice
    Thank You In Advance.

    Hi,
    Check this note - KBA 1671522, it holds good for RFC also.
    Arun

  • How do I get an XML file on the client side hard drive

    Is there a way to get XML files from a Flex form and get it
    to the hard drive on the client side? I realize Microsoft got
    impaled by allowing this sort of thing with ActiveX. We would like
    the app to be browser based but need XML files dropped off on the
    hard drive. There is an application running locally that needs to
    consume them. Can I run flex standalone without web services and
    still access the hard drive? Seems robust enough to do so.

    dadanas wrote:
    Hi Simcah, I have a similar problem. Have you found out any solution?
    thanks, dan
    You need to ask the printing service provider. Dealing with color totally depends on the printing process involved and of course the machines used.

  • RUN form FMX from the client side

    Hii
    I have installed oracle forms developer 10g, i have designed simple form and i run it from the local mechine it worked, and i want to try to connect it from the client side, it didn't work
    Can you help on this please

    No you don't need to have an iAS to test this
    Start your OC4J instance on your host
    copy the file default.env to test.env (located in <oracle_home>/forms/server)
    in test.env modify your forms_path to the pathe where your form is residing.
    modify your formsweb.cfg file (located in <oracle_home>/forms/server)
    add a named config at the end of the file (copy the example and modify to your needs)
    looking like
    [test]
    envfile=test.env
    form=test.fmx
    userid=.../..@... (or you can leave this out and then you get an authentication pop up)
    leave the other stuff default
    now call on your other client
    htpp://<your machine where oc4j is running>:8889/forms/frmservlet?config=test
    if you still have troubles with your fields check wheter you have other java clients installed (I experienced also problems when other JVM's were installed with certain Jinitiator)
    If so you can bypass this by making JRE the standard instead of Jinitiator
    put in your named config
    IE=native
    and change
    baseHTMLjinitiator=webutiljinit.htm
    baseHTMLie=webutiljpi.htm
    into
    baseHTMLjinitiator=webutiljpi.htm
    baseHTMLie=webutiljpi.htm
    Now you will load sun's JRE instead of Jinit
    Hope this helps
    Erwin

  • The service DS.AdminService could not be found on the client side

    HI,
    we have installed below
    Software
    Version
    IPS
    INFORMATION PLATFORM SERVICES 4.1 SP02 WINDOWS (64B
    Data Service
    DATA SERVICES 4.2 WITH SP01 WINDOWS (64B)
    Information Steward
    INFORMATION STEWARD 4.2 WITH SP01 WINDOWS
    SAP NW 7.4
    Netweaver 7.4 portal
    When I login to portal with  below links I am able to see the related screens.
    http://host:port/irj/portal
    http:://host:port/BOE/CMC
    http://host:port/BOE/InfoStewardApp/1403181301/ICCExplorer/logon.do
    However when I log:portin with below link using admin account I am facing error :
      Welcome Administrator
      Logout
      The service DS.AdminService could not be found on the client side (FWM 02027)
    Please see attachment.
    http://://host:port/DataServices
    Please help. Thanks.
    Regards,
    Krishnam

    Please see below properties for EIM APS. please let me know where can I check.
    Server Name:
    ID, CUID:
    3806 ,  AWJiF9VQoMtJiEyRIjv0py4
    Node:
    USMHR1_ERP301 (USMHR1-ERP301, SAPDataServices-S)
    Description:
    EIM Adaptive Processing Server
    Command Line Parameters 
    -server -Dcom.sap.vm.tag=USMHR1_ERP301.EIMAdaptiveProcessingServer -Djava.awt.headless=true "-Dbobj.enterprise.home=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/" "-Dbobj.javaserver.home=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/java/pjs/container/" "-Dboe.common.dir=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/java/lib/" "-Dboe.external.dir=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/java/lib//external" "-Dboe.bundles.dir=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/java/lib//bundles" "-Djava.io.tmpdir=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/java/pjs/container/temp" "-Dbusinessobjects.logs.home=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/logging/" "-XtraceFile=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/logging/aps_USMHR1_ERP301.EIMAdaptiveProcessingServer_jvm.log" "-XX:GCHistoryFilename=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/logging/aps_USMHR1_ERP301.EIMAdaptiveProcessingServer_gc.prf" "-Xloggc:D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/logging/aps_USMHR1_ERP301.EIMAdaptiveProcessingServer_gc.log" -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:LogGcMaxFileCount=3 -XX:LogGcMaxFileSize=5m "-XX:ErrorFile=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/logging/[email protected]" -Xms512m -Xmx2g -XX:MaxPermSize=256m -XX:+UseParallelOldGC -XX:+HeapDumpOnOutOfMemoryError "-XX:HeapDumpPath=D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/logging/" -XX:+ExitVMOnOutOfMemoryError -Xjvmx -XsapSystem:08 -Xrs -Djava.net.preferIPv4Stack=false -jar "D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/java/pjs/container/bin/boeserver.jar" -workdir "D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/java/pjs/container/work"
    -name USMHR1_ERP301.EIMAdaptiveProcessingServer -pidfile "D:/SAP BusinessObjects4.1IPS/SAP BusinessObjects Enterprise XI 4.0/serverpids/USMHR1_ERP301_USMHR1_ERP301.EIMAdaptiveProcessingServer.pid" -ns USMHR1-ERP301.corp.pattersoncompanies.com:6400
    Common Settings 
    Request Port:
    Auto assign
    Host Identifiers:
    Auto assign
    Hostname
    IP Address
    Hostname Value
    (IPv4)    (IPv6)
    Automatically start this server when the Server Intelligence Agent starts
    Use Configuration Template
    Services Manager
    Service Startup Timeout (seconds):
    Restore System Defaults
    Set Configuration Template
    TraceLog Service
    Use Configuration Template
    Log level:
    Unspecified
    None
    Low
    Medium
    High
    Restore System Defaults
    Set Configuration Template
    Data Services Job Launcher Service
    Use Configuration Template
    Configuration Parameters
    Log Level:
    NONE
    INFO
    FINER
    Restore System Defaults
    Set Configuration Template
    Data Services RFC Server Service
    This service has no configuration property.
    Data Services View Data Service
    Use Configuration Template
    View Data Service Configuration
    Service Name:
    Listener Port:
    JMXConnector Port:
    BatchSize (KB):
    Minimum Shared Service Providers:
    Maximum Shared Service Providers:
    Maximum Dedicated Service Providers:
    Recycle Threshold:
    Number of attempts to launch service provider:
    Maximum idle time for shared service provider (minutes):
    Log Level:
    NONE
    INFO
    FINER
    Restore System Defaults
    Set Configuration Template
    Data Quality Service
    This service has no configuration property.
    Data Services Metadata Browsing Service
    Use Configuration Template
    Metadata Browsing Service Configuration
    Service Name:
    Maximum Data Source Connections:
    Retry attempts to launch Service Provider:
    Stateful Connection Timeout (seconds):
    Stateless Connection Timeout (seconds):
    Recycle Threshold:
    Log Level:
    NONE
    INFO
    FINER
    Collect Connection Statistics
    Listener Port:
    JMXConnector Port:
    Restore System Defaults
    Set Configuration Template
    Cleansing Package Builder Auto-analysis Service
    This service has no configuration property.
    Information Steward Data Review Service
    Use Configuration Template
    Data Review Service configuration
    Log Level:
    FINEST
    FINER
    FINE
    CONFIG
    INFO
    WARNING
    SEVERE
    Restore System Defaults
    Set Configuration Template
    Information Steward Metadata Search Service
    Use Configuration Template
    Search Service configuration
    Log Level:
    FINEST
    FINER
    FINE
    CONFIG
    INFO
    WARNING
    SEVERE
    Restore System Defaults
    Set Configuration Template
    Information Steward Metadata Integrator Service
    Use Configuration Template
    Integrator Service configuration
    Log Level:
    FINEST
    FINER
    FINE
    CONFIG
    INFO
    WARNING
    SEVERE
    Restore System Defaults
    Set Configuration Template
    Information Steward Application Service
    Use Configuration Template
    Application Service configuration
    Log Level:
    FINEST
    FINER
    FINE
    CONFIG
    INFO
    WARNING
    SEVERE
    Restore System Defaults
    Set Configuration Template
    Data Cleansing Advisor Service
    This service has no configuration property.
    Information Steward Administrative Task Service
    Use Configuration Template
    Task Services Configuration
    Concurrent Thread Instances:
    Thread process timeout (minutes):
    Log Level:
    FINEST
    FINER
    FINE
    CONFIG
    INFO
    WARNING
    SEVERE
    Restore System Defaults
    Set Configuration Template
    Cleansing Package Builder Publishing Service
    This service has no configuration property.
    Cleansing Package Builder Core Service
    This service has no configuration property.

  • Which SQL Server Edition support how many sessions to the instance from SQL Management Studio on the client side

    Hi,
    I'm looking for some help on the below query to verify which version of sql server edition supports multiple or N number of sessions to the SQL server Instance using the SQL Server Management Studio tool from the client side.
    SQL Standard Vs Enterprise.
    your urgent help is much appreciated.
    Br.

    Hello,
    See Maximum Capacity Specifications for SQL Server =>
    User connections = 32,767; and this value is independent of use SQL Server Version, edition or the used tools, like SSMS in your question 
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Controlling the client-side cache

    At the current stage on my project I'm finding that I'm changing my mapping definitions fairly frequently (because the country side is just the wrong shade of egg-shell). Clearing the server side cache is fairly easy to do, provided you remember to do it, but my problem is on the client side.
    Right now, the tiles are returned with a one week time to live. So if I change the mapping definitions it might not propagate through to all the clients until up to a week later. What I'd like to do, at least for now, is turn off storing of map tiles on the client-side. The easiest way to do that would be to specify the cache-control header but I can't seem to find a configuration option for that.
    Has anyone setup MapViewer to use a different cache-control?

    Hi Mark,
    You can specify the cache control statements for the page itself.
    If this does not help, try to set expires header for the images. ex for Apache see mod_expires for a directory/location setting
    regards, michael

  • How to use javascript to print on the client side

    hi all,
    Now i'm facing a problem:
    I want to use javascript to print something(for example, a table) on the client side. So i must get a connection with the printer installed in the client computer.
    some says that getObject() function can do this,but i don't know how?
    Who please help me!

    window.print();

Maybe you are looking for

  • Problem with Alt , JMenu and Mnemonics

    I have built an application with a JMenuBar containing several JMenu's, the first of which is a File menu. All JMenus and JMenuItems have mnemonics associated with them. When I press the alt key the underlines show and focus appears to be given to th

  • Error during channel initialization

    Hi all, Iam trying JMS->XI->FILE scenario. Iam using sonicMQ and have finished the scenario. I have added  sonic-client.jar in the provider.xml and deployed the required sda file. Now when i try to execute the scenario iam getting the following error

  • ?iTunes 8.02

    I have just downloaded 8.0.2 and it said that Quicktime was not found, I installed Quicktime from Apples this web site (which it says includes iTunes), rebooted as requested and it still has the same message, any ideas

  • HTTP Dual Paost

    I have one requreiment for HTTP dual post.  One WSDL is provided frome Siebel for both the posts. Requirement as follows: Cutomer chatting with Vendor: - First customer Primary details will posted to Siebel                                            

  • EMail Crystal Layout as a Sequence

    Hi all, Is there a way of Automatically emailing a Crystal Layout / doc (eg: AR Invoice) when printing it?  I see a Print Sequance Tab in the Report and Layout Manager and I want to have an eMail sent as part of the Sequance. Thanks.