Client host pjc

i am running forms9i under 9ias.
i have downloaded and can run the demo host90.fmx but no host commands are being executed
ie enter start winword and press exexcute button, hour-glass appears for a few seconds then nothing.
i have amended the formsweb.cfg file to include the host.jar file.
should this file be downloaded into the client by jinitiator ? if so, it appears not to be being downloaded as no extra prompts appear when running the form.
regards
Ian

Did you try it with the Forms Demos extension pack?
Try following the readme and see if this solves your configuration problems.
http://otn.oracle.com/sample_code/products/forms/files/readme.txt
and
http://otn.oracle.com/sample_code/products/forms/files/forms9idemos_ep1.zip

Similar Messages

  • HOST PJC with parameters

    Hello,
    Does HOST PJC (OTN samples) support parameters ?
    It is working well on client, but I have problem with parameters, and the same time it is working and it can run application.
    For example I need run some application from client site :
    "C:\Application.exe Param1 Param2".
    System running this application, but it doesn't take parameters.
    Thank You

    Is here any HOST PJC developers ?
    How can I use HOST PJC with parameters ?
    Thank You

  • Client host rejected: Access denied

    Getting a ton of bounced back emails most likely the address is no longer in use but I filtered out any of the emails that say so.  I'm no professional at this thats why I'm looking for help here. I tried searching for the problem on the forum but found
    stuff about server 2003.  
    Im getting alot of the kickbacks saying Client host rejected: Access denied
    I've tried emailing the recipient on my personal Gmail and recieved the same error. can we safely say that the addresses are no longer in use that i'm getting these kickbacks? heres the full header for anyone
    who wants to look.
    The original message was received at Wed, 5 Mar 2014 15:29:34 -0500 from odbmap07.extra.chrysler.com [129.9.107.35]
       ----- The following addresses had permanent fatal errors ----- <mail address here>
        (reason: 554 5.7.1 <unknown[151.171.97.83]>: Client host rejected: Access denied)
       ----- Transcript of session follows ----- ... while talking to odbmap07.out.extra.chrysler.com.:
    <<< 554 5.7.1 <unknown[151.171.97.83]>: Client host rejected: Access denied
    554 5.0.0 Service unavailable
    We are using someone to host our email server for more information.
    I use a program called G-Lock easy mail to send out our newsletter.

    Hi,
    Which email client are you using to send and receive emails? G-Lock?
    Please refer to the links below and check if they help:
    http://www.symantec.com/business/support/index?page=content&id=TECH169847
    http://support.mailhostbox.com/email-administrators-guide/error-codes
    In addition, if you are not using Microsoft Outlook as your email client, it's better to contact the support for your mail client for further assistance.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Open LMS Session from client host

    Dear all,
    i have a LMS application installed on a server X, the campus manager version is 3.2.
    the application version is pretty old, but it is just working fine.
    LMS is opening normally from the server itself.
    My problem is that if i try to open Campus Manager/Topology services from a host different than the server itself a java screen opens mentioning trying to connect to ani server, and it just freeze and do not proceed. if i reopen from the server itself it works fine.
    the server and the client host are on the same vlan, so no network access limitation exists.
    Note: When i open the http request on LMS server from the client side, i authenticate and enter to the app normally but if i try to open the topology services or path analysis it do not proceed.
    While checking the logs i found that it is like denying the Client Host name or IP Address.
    please find log attached.

    Dear Afroj,
    Concerning the above mentioned debug steps; i don't find the option in the sequence on my server.
    Point 1)      I can find LMSHomeScreen --> ServerConfiguration --> Setup --> ANI ServerAdmin --> DebuggingOptions
    Point 2) & 3) I Select "Enable tracing on the selected modules". From the drop down list i check the "Trace enable" check box for the Module "topo".
           On the same page down, i check the "Record trace messages in log file", i enter the name and the path for the log file, C:\ANI_Debug
           And i press  apply,
    Point 4) & 5) From here i am not able to continue, there is no button to start debug nor under LMSHomeScreen --> ServerConfiguration --> Setup --> ANI Server        Admin --> Debugging Options nor  under LMSHomeScreen --> Campus Manager --> Topology Services
      There no path Campus Manager --> Admin
    Point 6) How to run a new data collection?!
    Point 7) if i enable "debugging" of java from control panel and i select to "show" java console, how to view Java Logs?
    Thank you for your help

  • Webutil usage on Windows and Unix clients - Host and Temp dir issues

    Hello,
    I am in the process of writing a Forms application which makes use of WebUtil to handle the uploading and downloading of files, as well as launching the files on the client PCs. The code below is my current 'Launch' program which works great in a Microsoft Windows environment. It gets the TEMP directory location, builds a file name, downloads the file to the TEMP directory and uses the Host command to launch the file.
    PROCEDURE Launch_DB IS
    l_directory varchar2(200) := client_win_api_environment.get_temp_directory(true);
    l_success boolean;
    BEGIN
    :file_block.full_file_name := l_directory || '\' || :file_block.file_name;
    l_success := webutil_file_transfer.DB_To_Client_with_progress
    (clientFile => :file_block.full_file_name
    ,tableName => 'FILES
    ,columnName => 'FILE_DATA'
    ,whereClause => 'ID = ' || :file_block.id
    ,progressTitle => 'Download from Database in progress'
    ,progressSubTitle=> 'Please wait'
    if l_success then
    WEBUTIL_HOST.NONBLOCKING('CMD /C "' || :file_block.full_file_name || '"');
    else
    exception
         when others then
         message('File download failed: '||sqlerrm);
    END;
    My problem is that I've just discovered that there's a new group of users that will want access to these forms, and they're using non-windows machines - mostly Solaris and Linux. As such, I have these problems:
    - " client_win_api_environment.get_temp_directory " is a Microsoft Windows specific function. Is there any way to determine a temporary storage area on a Unix machine?
    - " WEBUTIL_HOST.NONBLOCKING('CMD /C "' || :file_block.full_file_name || '"'); " - CMD is Microsoft Windows specific function. What should I do to launch a file from Unix? (Sorry, my Unix skills are pretty minimal).
    - I'm guessing that I'll need to determine the operating system so that I can use different methods to determine the TEMP dir, and to execute the HOST command. Assuming that Microsoft Windows and Unix variants are the only OS's that I need to provide access to, what is the best way to determine the client environment ( eg. IF UPPER(WebUtil_ClientInfo.Get_Operating_System) like '%WINDOWS%' THEN ... ELSE ... END IF; ) . I only have access to Windows XP for testing so I don't know what values "WebUtil_ClientInfo.Get_Operating_System" will return for any other OS.
    Thanks in advance for any assistance.
    Regards,
    Michael.

    Hi,
    as far as launching the file goes, if teh program that runs the file exist on teh local computer, you can use teh host command in webutil to access teh program and file. CMD is what you use to open teh command line on windows, but the host command is supposed to work on the UNIX client as well.
    For the temp directory, you have two options
    The short term option: Pass the temporary directory name as a user variable to Forms when starting the application. This can be user specific if adding this information to the URL using teh otherparams parameter
    The longterm option: Log a TAR with Oracle customer support to add a function to teh getClientInfo function that retruns the temporary directory for the authenticated user.
    Frank

  • Not very savvy, confused about the features(client hosting, in browser editing)! Clarify for me, please?

    Hi! I'm in love with the idea of in-browser editing. I'm doing web design for clients using Adobe Muse at the moment, and it's great. The only setback is that it's really hard for the clients to update the page themselves, etc. My main and only reason to use BC would be to upload all of my clients websites on it and let them use the in-browser editor.  Am I wrong to think that that's how it will work? I sign up, and just upload the websites with their own domains, then set up the client's log in info for them?
    I've heard about a limit to how many websites I can have, and users. Are the users the amount of clients I can let use the in-browser editing? Only 3? Please help me out, team!
    Right now I'm using a different hosting (will not name) it was my first hosting provider, and I've used it ever since so I'm so used to unlimited websites, etc. Obviously, I'm so impressed by the BC features though that I really want to be apart of it.
    Also, would this be under the $12 a month plan?

    Adobe just released this in-browser editing tool for Muse websites- you might want to try it:
    Adobe® Muse™ CC In-Browser Editing
    As far as I am aware, there is no limit to how many website you can have. The 3 that you have mentioned is likely referring to 3 admins per site- but note that you can have more admins for a fixed fee.
    You might also be getting confused by 5 free basic sites that come with a creative cloud subscription- so fyi, you can have as many sites as you like and the hosting fees, I believe, start from around $6-$39 per month.

  • Multiple client hosting

    I've been programming for WebLogic for some time now, and have recently
    been asked to help solve a performance problem we've been seeing with one
    of our production systems. Because I know diddly about configuring a
    production system based on WebLogic, I'd really like a sanity check on
    what we're doing.
    We've got a 4 processor Sun with gobs of RAM (8GB, I believe) and hard
    disk space, with fast network connections to separate machines for a web
    server (and Tomcat) tier and Oracle database tier.
    This machine is overkill for any one of the client organizations who
    currently use the application we've developed, so we're hosting several of
    them on the same machine. This is being done by running a separate
    instance of WebLogic (currently 5.10 SP11, moving to 8.1 SP1 very soon) in
    a separate JVM (currently 1.3.1_6, moving to 1.4.2 very soon).
    Assuming that we have enough RAM and HD (which we certainly appear to
    have), does anyone see anything wrong with this approach (separate JVM per
    client)? Are we paying a large overhead price for going this way, instead
    of trying to host all of the clients out of a single JVM instance?
    -- Erik

    Hi Erik,
    I think it's fine, if the applications don't use up the
    resources available. But you said that you have
    a performance problem - what kind of a problem?
    Also - do you have monitoring data for this box,
    like CPU, disk, memory, swap, network, database
    utilization? Anything looking not-that-good?
    Regards,
    Slava Imeshev
    "Erik Horstkotte" <[email protected]> wrote in message news:3f2f044d$[email protected]..
    I've been programming for WebLogic for some time now, and have recently
    been asked to help solve a performance problem we've been seeing with one
    of our production systems. Because I know diddly about configuring a
    production system based on WebLogic, I'd really like a sanity check on
    what we're doing.
    We've got a 4 processor Sun with gobs of RAM (8GB, I believe) and hard
    disk space, with fast network connections to separate machines for a web
    server (and Tomcat) tier and Oracle database tier.
    This machine is overkill for any one of the client organizations who
    currently use the application we've developed, so we're hosting several of
    them on the same machine. This is being done by running a separate
    instance of WebLogic (currently 5.10 SP11, moving to 8.1 SP1 very soon) in
    a separate JVM (currently 1.3.1_6, moving to 1.4.2 very soon).
    Assuming that we have enough RAM and HD (which we certainly appear to
    have), does anyone see anything wrong with this approach (separate JVM per
    client)? Are we paying a large overhead price for going this way, instead
    of trying to host all of the clients out of a single JVM instance?
    -- Erik

  • Client "HOST()" demo not working in 9iAS webforms

    HI...
    I am trying to do the equivalent of a client/server HOST() by using the HOST demo for
    9iDS. I followed all directions from host90.html, but, when I get to second from last
    step (enter URL http://<yourmachine>:8888/forms90demo/f90servlet?config=pjc_demos, I
    get "page cannot be displayed" error. The form does run however, but nothing seems to happen. I
    enter in command line DIR C:\ and nothing is displayed.
    Also, I do not have a directory called forms90dem, should I ? And I cannot find a cfg file called
    pjc_config??
    In java console I get errors:
    java.lang.ClassNotFoundException: java.io.IOException: open HTTP connection failed.
    at sun.applet.AppletClassLoader.getBytes(Unknown Source)
    at sun.applet.AppletClassLoader.access$100(Unknown Source)
    at sun.applet.AppletClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    Thanks in advance
    Jon

    ooops, Shay, you are correct. I mis-typed. What I meant was
    URL http://jonjon:8888/formsdemo/f90servelt?config=pjc_demos.
    Jon

  • Email capture and knowing clients host

    Hello
    I have two totally novice questions.
    1. My client has a domain name. Just because I can go to that url, does that mean he has a host? It's a pretty generic-looking placeholder.
    2. This client needs a quick page up on which he can collect emails so those interested can recieve future info. Easiest way is to just create and email form, correct? What if he wants a form field labeled "enter your email for further updates?...and easy way to do this without having to hire a server side programmer?
    TIA
    Gretchen

    1. Yes, he has a host.
    2. Yes, a form is used to get people to send there email or other information.  For a form to work you need the actual form which is created in html, and you need the processing script which is server-side.  You can search and find companies on the web that will create the script for you, some for free, I know of PHP Form Wizard, which works fine, there are plenty of others out there.
    Gary

  • Get Client Host Name

    Dear Experts,
    I am using
    String ipAddress = WDProtocolAdapter.getProtocolAdapter().getRequestObject().getClientHostAddress();
    retrieve client ip address.
    When I use getClientHostName(), it still present client ip address.
    Regarding the client hostname, how do I get it?
    thank you.
    Regards,
    Weng

    Use this
    String hostName = WDProtocolAdapter.getProtocolAdapter().
    getRequestObject().getClientHostName();
    You also have one more method to get IP address.
    String Address = WDProtocolAdapter.getProtocolAdapter().
    getRequestObject().getClientHostAddress() ;
    for more check this forum link
    How to get the system name of the client?
    thanks

  • Simple client host program

    I have 3 classes:
    - A server
    - A client
    - A program which start a new server and a new client in seperate threads.
    I'm wondering why the client doesn't receive messages like "message", "hello", "knock knock".
    I'm also wondering whether the threads correctly terminate and whether my code is safe.
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.util.Scanner;
    public class Server {
         public Server() throws IOException {
              ServerSocket server = new ServerSocket(4321);
              System.out.println("Server created");
              Socket client = server.accept();
              System.out.println("Server: connected to " + client);
              Scanner in =  new Scanner(client.getInputStream());
              PrintWriter out = new PrintWriter(client.getOutputStream());
              while(true) {
                   System.out.println("sending messages");
                   out.println("message");
                   out.println("hello");
                   out.println("knock knock");
                   out.println("I love you");
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.net.Socket;
    import java.util.Scanner;
    public class TestClient {
         public TestClient() throws IOException {
              Scanner stdIn = new Scanner(System.in);
              Socket socket = new Socket("127.0.0.1", 4321); //
              System.out.println("Client created");
              Scanner in = new Scanner(socket.getInputStream());
              PrintWriter out = new PrintWriter(socket.getOutputStream());
              System.out.println("ready for input:");
              while (true) {
                   System.out.println("Enter exit to exit");
                   String message = stdIn.next();
                   if (message.equals("exit"))
                        break;
                   System.out.println("Client receives: " + in.nextLine());
              out.close();
              in.close();
              socket.close();
              System.out.println("Client: is closed");
    mport java.io.IOException;
    public class Runner {
         public static void main(String[] args) throws IOException{
              (new Thread() {
                   @Override
                   public void run() {
                        try {
                             new Server();
                        } catch (IOException e) {
                             System.err.println(e);
              }).start();
              (new Thread() {
                   @Override
                   public void run() {
                        try {
                             new TestClient();;
                        } catch (IOException e) {
                             System.err.println(e);
              }).start();
              System.out.println("Runner is done.");
    }It's current output says:
    Runner is done.
    Client created
    java.net.SocketException: Unrecognized Windows Sockets error: 2: JVM_Bind
    ready for input:
    Exception in thread "Thread-1" java.util.NoSuchElementException
         at java.util.Scanner.throwFor(Unknown Source)
         at java.util.Scanner.next(Unknown Source)
         at TestClient.<init>(TestClient.java:21)
         at Runner$2.run(Runner.java:21)

    Somelauw wrote:
    tschodt wrote:
    Somelauw wrote:
    If you want to use a PrintWriter, at least check for errors.I would rather get an exception raised giving me some information then a boolean telling me that there is something wrong.So don't use a PrintWriter.What should I use instead? I do want high-level stuff like println.You could use
    BufferedWriter
    [write(String)|http://java.sun.com/javase/6/docs/api/java/io/Writer.html#write%28java.lang.String%29]
    [newLine()|http://java.sun.com/javase/6/docs/api/java/io/BufferedWriter.html#newLine%28%29]
    >>
    I guess you think my client needs to rest for 99 milliseconds every cycle.I put that in after testing your code and noticing that the client telling me
    "Enter exit to exit"
    was scrolling up out of view by the server telling me
    "sending messages".If I comment out that line my code works.When using the code I suggested in [reply #1|http://forums.sun.com/thread.jspa?messageID=10891212#10891212] it becomes evident that the server goes though umpteen iterations of sending messages to the client.
    >>
    With that delay the last text on the screen is the client prompt.
    Should my server rest too?What do you think?I don't see a problem, but your question suggests I shouldn't.Was that an answer? If so, can you clarify
    as it is not clear what you think.

  • Jar signing problem? (continue with HOST PJC)

    <1> I've sign jar-file on Oracle9iAS server.
    <2> First form (with bean from that jar-file) loading asked me for "Granting", and after it runs without problem, bean is worked prefectly.
    <3> Second form loading shows me nothing, just explorer hanging.
    I've check JInitiator (1.3.1.9) Control Panel, Certificates tab... there is now any records. Maybe there is problem.
    (I also have(installed) Sun JSDK 1.4.1_01)
    Java Console also doesn't show any errors.
    Again form with bean doesn't loading at the second time.
    What is the problem ?
    Thank You

    Have you read the paper on Signing JAR files for JInitiator 1.3 - it details some changes that you'd be advised to make to your HTML template and the HOST bean code to get around this problem..

  • How to detect remote (client) host name or remote host address?

    Hello!
    I need to receive remote host name or remote IP address in the BSP controller DO_REQUEST method. How to do it?
    In Java I can use getRemoteAddr() or getRemoteHost() methods of HttpServletRequest class. But in the BSP I can not find analogues of these methods.
    Please help
    Best regards,
    Eugeny

    Hi,
    I guess there is something "cleaner", but here is a solution:
    DATA l_host TYPE string.
    l_host = me->request->if_http_entity~get_header_field( '~remote_addr' ).
    Regards,
    Tanguy

  • Host pjc java source code

    Hello Duncan Mills,
    Is it possible for you to paste source code of your sample code host.jar
    i tried to search in many oracle demo files, but could not get it.
    Thanks

    I'm extremely sorry, realizing that i have created new thread under Forms Forum.
    re-pasitng.
    Threadname :
    JDAPI - Reinstate broken inheritance of property
    Hi,
    we have object library and toolbar-canvas,block,item,triggers and items properties and subclassed from it in all our forms.
    by mistake our developers has touched the trigger and inherritance is broken.
    i know with JDAPI programming we can find out broken inheritance item, but i don't know how to reinstate it,
    can anybody post a code to do this, i am particularly interested re-inheriting my toolbar triggers.
    Thanks in advance for all help.
    if(!iTrigger.getParentModule().equals(""))//Check if the Trigger is subclassed
    if(iTrigger.hasOverriddenProperty(JdapiTypes.TRIGGER_TEXT_PTID)) //Check if the Trigger has been overwritten
    ....i need code herein onward.

  • DHCP Client Hosts Name

    How to configure DHCP client hostname?

    Hi,
    download this document from this URL:
    http://docs.sun.com:80/ab2/coll.47.8/SYSADV1/@Ab2PrintSelect?Ab2Lang=C&Ab2Enc=iso-8859-1
    guide name- TCP/IP and Data Communications Administration Guide
    and read Part IV - DHCP administration.
    revert back.
    Thanks.
    regards.
    senthilkumar.
    SUN - DTS

Maybe you are looking for