Hoe to get the input file componets value

hi ,
i have a input file component and a command button in my jspx.
i wrote a method for the command button which needs the value in the input file component.
both the methods inputFile1.getValue() and inputFile1.getSubmittedValue() is returning null for me.
when i browse some file and i click on the button the field is getting reset. i mean i am losing the browsed file.

That isn't an input file. An input file is one that the user is uploading to the application server. What you seem to be asking is how to get an audio file that is already on the application server to play.
On the other hand, you might be asking how to combine the two operations - upload the file, then play it. So in the solutions you've been given so far, the UploadedFile object has methods to tell you what is in the file and a getInputStream method to get the data in the file as an input stream. Now what you need is a correct value for the objectMedia's source property. This needs to be a URI for a file on the application server - a filename, but in relation to your application's base directory. Take the inputStream and write it as a file on your application server, and then set the objectMedia's source to that file's name.
You may also need to consider a clean-up operation to delete the file when the user is done with it, unless you WANT it saved permanently on the application server. The other alternative is to play the file directly from it's input stream, but you won't be able to use an objectMedia component to do this.

Similar Messages

  • How to get the Output File Name as One of the Field Value From Payload

    Hi All,
    I want to get the Output file name as one of the Field value from payload.
    Example:
    Source XML
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:MT_TEST xmlns:ns0="http://sample.com">
    - <Header>
      <NAME>Bopanna</NAME>
      </Header>
      </ns0:MT_TEST>
    I want to get the Output file name as " Bopanna.xml"
    Please suggest me on this.
    Regards
    Bopanna

    Hi,
    There are couple of links already available for this. Just for info see the below details,
    The Output file name could be used from the field value of payload. For this you need to use the UDF DynamicFile name with below code,
    //       Description: Function to create dynamic Filename
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File" , "FileName");
    conf.put(key,a);
    return "";
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File" , "FileName");
    conf.put(key,a);
    return "";
    With this udf map it with the MessageType as
    (File Name field from Payload) > DynamicFileConfiguration>MTReceiver
    Thanks
    Swarup

  • Getting No input file specified. in php with index.php

    I just installed on a server (soalris10/u6 sparc) Web Server 7.0u4 (upgraded from u3), and I am now getting "No input file specified." for any php doc root, I now have to type the full path to get the main page.
    I am using the php part of the Sun coolstack 1.3.1 and it used to work fine with web server 7.0 u3, but now after the upgrade its not loading index.php
    for example I am going to http://server.domain.com/wiki used to work by loading index.php, but now I have to type the full index... http://server.domain.com/wiki/index.php?title=Main_Page
    Any help is appreciated.

    If you're not currently using a php.ini, you can pass the parameter to PHP via your FastCGI configuration. Something like:
    Service fn=responder-fastcgi
            app-path="/export/WS7/third-party/php/php_fcgi"
            bind-path="$(lc($urlhost))"
            req-retry=5
            type="*magnus-internal/fastcgi*"
            app-env="PHPRC=/export/WS7/fooBaz/config"Now place a file called php.ini in /export/WS7/fooBaz/config and make sure that the UID Web Server is running as has permission to read it.
    Common syntax is KEY = Value. An example would be:
    cgi.fix_pathinfo = Off
    session.bug_compat_42 = Off
    session.bug_compat_warn = Off
    magic_quotes_gpc = Off
    memory_limit = 128M
    post_max_size = 128M
    upload_max_filesize = 128M
    fastcgi.logging = true

  • How to make SSIS packages automatically read the input file from a path?

    Currently I am using a SSIS package to read data from a .dat file and load it into SQL Server tables.
    I am placing the input .dat file on the desktop. In the connection manager -> Browse option, I am pointing this file to create connection.
    The file naming convention is like - aSNAP_Data_20140926_P-2014-09-26_07.02.36
    However, I need the SSIS package to automatically read the input file from a folder which is located in a remote server. This folder has lots of files where input files are added on a daily basis with the date value in the file name as mentioned above.
    I want to schedule the SSIS package to run daily and take the latest file in the folder based on the date.
    Please let me know how to do it. Any help would be highly appreciated.....
    Thanks in advance.

    Hi SQL_SSIS_Dev,
    According to your description, you want to get the latest file from a path to a SQL Server table. After testing the issue in my environment, we can refer to the following steps to achieve your requirement:
    Create two variables, VarFolderPath stores the folder path in which our files exist, VarFileName hold the value of most recent File Name.
    Drag a Script Task from SSIS Toolbox to Control Flow Pane, then select “User::VarFolderPath” as ReadOnlyVariables, select “User::VarFileName” as ReadWriteVariables.
    Then Edit Script with the C# code below:
    Add “using System.IO;” into namespace.
    Add the code below under Main function:
    var directory= new DirectoryInfo(Dts.Variables["User::VarFolderPath"].Value.ToString());
                FileInfo[] files = directory.GetFiles();
                DateTime lastModified = DateTime.MinValue;
                foreach (FileInfo file in files)
                    if (file.LastWriteTime > lastModified)
                        lastModified = file.LastWriteTime;
                        Dts.Variables["User::VarFileName"].Value = file.ToString();
    Drag a Data Flow Task to Control Flow Pane and connect to Script Task.
    In the Data Flow Task, drag a Flat File Source with a file in the source folder as all the files have same structure as the File name.
    Add the property below the Flat File Connection Manger expression:
    Property: ConnectionString      Expression: @[User::VarFolderPath] +"\\"+ @[User::VarFileName]
    Drag an OLE DB Destination that connect to the Flat File Source, then configure a table to store the data.
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Getting the Source File name Info into Target Message

    Hi all,
    I want to get the Source file name Info into Target message of one of the fields.
    i followed Michal BLOG /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    Requirement :
    1) I am able to get the Target file name as same as the source file name when i check the ASMA in Sender & Receiver Adapter , with out any UDF...............this thing is OK
    2) I took One field extra in the target structure Like "FileName" & I mapped it Like
                              Constant(" " )--UDF-----FileName
    I Checked the Option ASMA in Both Sender & Receiver Adapters
    Here iam getting the Target File name as same as Source file name + Source File name Info in the Target Field " FileName".
    I Dont want to get the Target File name as same as Source file name. I want like Out.xml as Target file name.
    If i de-select the Option ASMA in Adapters means it is showing " null" value in the target field "FileName".
    Please Provide the Solution for this
    Regards
    Bopanna

    Hi All,
    Iam able to do this by checking the Option ASMA in only sender adapter itself
    Regards
    Bopanna

  • FM for getting the logical file name

    Hi,
    is there any FM for getting the logical file name.
    Thanks
    Vikranth

    Hi,
    CONSTANTS: c_mask          TYPE char9      VALUE ',.,..'.
          Pick up the file path from the application server
    FORM f1001_browse_appl_file .
      DATA:  lcl_directory  TYPE char128.
      lcl_directory  = p_direct.
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        EXPORTING
          directory        = lcl_directory
          filemask         = c_mask
        IMPORTING
          serverfile       = p_f2  " Parameter File
        EXCEPTIONS
          canceled_by_user = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
       MESSAGE e000(zmm) WITH text-039.
       flg_app = 'X'.
      ENDIF.
    Then use  OPEN DATASET for data reading
    Hope this Helps.
    Manish
    Message was edited by:
            Manish Kumar

  • How to get the EXCEL file from web site (b2b) into SAP system?

    Hi Guys,
    I have a requirement of saving the excel file that has been send to SAP system from a B2B site.
    Currently there is a call to the SAP system from the B2B site via an RFC function ,this RFC functions gets the excel file as an input to the SAP system,i need to store this Excel file in the SAP  (as an excel file itself).
    How can i acheive this?
    Please suggest.
    Thanks ,
    Swati

    You can extract a date portion and  assign to the variable and then compare with GETDATE()
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Error could not build a topology to decode the input file

    682593 (3088) - exe\logging.cpp:0841: --- START 2014\11\4 5:38:34 AM ---
    682593 (3088) - exe\main.cpp:4511: WinSAT registry node is created or present
    682609 (3088) - exe\main.cpp:4542: Command Line = winsat  formal
    682625 (3088) - exe\main.cpp:4314: INFO: The axe results path environment variable is not set. Assuming we aren't running under AXE.
    682625 (3088) - exe\main.cpp:4649: INFO: Winsat is not running in AXE mode.
    682625 (3088) - exe\processwinsaterror.cpp:0146: ERROR: tried to read resource strings, unknown exception occured
    682687 (3088) - exe\main.cpp:4741: > IsFormal=TRUE  IsMoobe=FALSE.
    682687 (3088) - exe\watchdog.cpp:0113: WatchDogThreadProc Launched with priority 0
    682734 (3088) - exe\main.cpp:4860: Watch dog system enabled
    682734 (3088) - exe\main.cpp:4875: Main watch dog timer set to 600.0 seconds
    682875 (3088) - common\winsatutilities.cpp:1060: PNPID from DX9 call = PCI\VEN_1002&DEV_9851&SUBSYS_22CE103C&REV_05
    682875 (3088) - common\winsatutilities.cpp:1126: Index [0]: PNPID = PCI\VEN_1002&DEV_9851&SUBSYS_22CE103C&REV_05
    682875 (3088) - common\winsatutilities.cpp:1150: Matching device PnPID is PCI\VEN_1002&DEV_9851&SUBSYS_22CE103C&REV_05
    682875 (3088) - common\winsatutilities.cpp:1126: Index [1]: PNPID = ROOT\BasicDisplay
    682937 (3088) - exe\main.cpp:2615: > DWM Running.
    682937 (3088) - exe\main.cpp:2622: > turning off DWM.
    682937 (3088) - exe\main.cpp:2595: > EMD service will be restored on exit.
    682984 (3088) - exe\syspowertools.cpp:0983: > Read the active power scheme as '381b4222-f694-41f0-9685-ff5bb260df2e'
    682984 (3088) - exe\main.cpp:2923: > power policy saved.
    683171 (3088) - exe\syspowertools.cpp:1015: > Set the active power scheme to 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c'
    683171 (3088) - exe\main.cpp:2944: > power policy set to maximum.
    684515 (3088) - exe\main.cpp:0867: > WinSAT info: Version=V6.3 Build-9600.16384
    684562 (3088) - exe\main.cpp:1007: > IsOfficial=TRUE  IsFormal=TRUE  IsMoobe=FALSE  RanOverTs=FALSE  RanOnbatteries=FALSE
    684562 (3088) - exe\main.cpp:4125: > Power 'execution' request successfully set.
    684562 (3088) - exe\main.cpp:1852: > Run Assessment features 
    684593 (3088) - common\winsatutilities.cpp:1060: PNPID from DX9 call = PCI\VEN_1002&DEV_9851&SUBSYS_22CE103C&REV_05
    684593 (3088) - common\winsatutilities.cpp:1126: Index [0]: PNPID = PCI\VEN_1002&DEV_9851&SUBSYS_22CE103C&REV_05
    684593 (3088) - common\winsatutilities.cpp:1150: Matching device PnPID is PCI\VEN_1002&DEV_9851&SUBSYS_22CE103C&REV_05
    684593 (3088) - common\winsatutilities.cpp:1126: Index [1]: PNPID = ROOT\BasicDisplay
    684640 (3088) - exe\main.cpp:1852: > Run Assessment dwm -aname DWM -time 10 -fbc 10 -disp off -normalw 1 -alphaw 2 -width 1280 -height 1024 -winwidth C(1144) -winheight C(915) -rendertotex 6 -rtdelta 3 -nolock
    684656 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    696296 (3088) - exe\processresults.cpp:4571: > Wrote video memory bandwidth to the registry 3000430
    696359 (3088) - exe\main.cpp:2138: > DWM Assessment results processing SUCCESS
    696359 (3088) - exe\main.cpp:1852: > Run Assessment d3d -aname Batch -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 300 -batchcnt C(10) -objs C(26) -rendertotex 6 -rtdelta 3 -texpobj C(1)
    696359 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    702843 (3088) - exe\main.cpp:1852: > Run Assessment d3d -aname Alpha -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 300 -batchcnt C(75) -objs C(26) -rendertotex 6 -rtdelta 3 -texpobj C(1)
    702843 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    709234 (3088) - exe\main.cpp:1852: > Run Assessment d3d -aname Tex -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 500 -batchcnt C(125) -objs C(20) -noalpha -texshader -totaltex 10 -texpobj C(4) -rendertotex 6 -rtdelta 3
    709234 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    716265 (3088) - exe\main.cpp:1852: > Run Assessment d3d -aname ALU -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 500 -batchcnt C(125) -objs C(20) -noalpha -alushader -totaltex 10 -texpobj C(1) -rendertotex 6 -rtdelta 3
    716265 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    723500 (3088) - exe\main.cpp:1852: > Run Assessment d3d -dx10  -aname Batch -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 300 -batchcnt C(10) -objs C(26) -rendertotex 6 -rtdelta 3 -texpobj C(1)
    723500 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    723500 (3088) - d3d\graphicsop.cpp:0217: Driver is not WDDM 1.1 or WDDM 1.2; aborting DX10 assessment.
    723500 (3088) - exe\main.cpp:1852: > Run Assessment d3d -dx10  -aname Alpha -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 300 -batchcnt C(75) -objs C(26) -rendertotex 6 -rtdelta 3 -texpobj C(1)
    723500 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    723500 (3088) - d3d\graphicsop.cpp:0217: Driver is not WDDM 1.1 or WDDM 1.2; aborting DX10 assessment.
    723500 (3088) - exe\main.cpp:1852: > Run Assessment d3d -dx10  -aname Tex -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 500 -batchcnt C(125) -objs C(20) -noalpha -texshader -totaltex 10 -texpobj C(4) -rendertotex 6 -rtdelta
    3
    723500 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    723500 (3088) - d3d\graphicsop.cpp:0217: Driver is not WDDM 1.1 or WDDM 1.2; aborting DX10 assessment.
    723500 (3088) - exe\main.cpp:1852: > Run Assessment d3d -dx10  -aname ALU -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 500 -batchcnt C(125) -objs C(20) -noalpha -alushader -totaltex 10 -texpobj C(1) -rendertotex 6 -rtdelta
    3
    723500 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    723500 (3088) - d3d\graphicsop.cpp:0217: Driver is not WDDM 1.1 or WDDM 1.2; aborting DX10 assessment.
    723500 (3088) - exe\main.cpp:1852: > Run Assessment d3d -dx10  -aname GeomF4 -time 7 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 150;200;241 -batchcnt C(50);C(200);C(300) -objs C(12);C(26);C(45) -noalpha -geomf4shader -texpobj C(0)
    -rendertotex 6 -rtdelta 3 -tierframes 60 -tiertime 1
    723500 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    723500 (3088) - d3d\graphicsop.cpp:0217: Driver is not WDDM 1.1 or WDDM 1.2; aborting DX10 assessment.
    723500 (3088) - exe\main.cpp:1852: > Run Assessment d3d -dx10  -aname GeomV8 -time 7 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 75;100;120 -batchcnt C(25);C(100);C(150) -objs C(8);C(17);C(29) -noalpha -geomv8shader -texpobj C(0)
    -rendertotex 6 -rtdelta 3 -tierframes 60 -tiertime 1
    723500 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    723500 (3088) - d3d\graphicsop.cpp:0217: Driver is not WDDM 1.1 or WDDM 1.2; aborting DX10 assessment.
    723515 (3088) - exe\main.cpp:1852: > Run Assessment d3d -dx10  -aname CBuffer -time 5 -fbc 10 -disp off -animate 10 -width 1280 -height 1024 -totalobj 75 -batchcnt C(25) -objs C(8) -rendertotex 6 -rtdelta 3 -texpobj C(1) -cbuffershader -cbufa 2 -cbuff
    5 -cbufp 6
    723515 (3088) - d3d\graphicsop.cpp:0195: GraphicsOp::AssessmentThread Launched with priority 0
    723515 (3088) - d3d\graphicsop.cpp:0217: Driver is not WDDM 1.1 or WDDM 1.2; aborting DX10 assessment.
    723515 (3088) - exe\main.cpp:1852: > Run Assessment mfmedia -input C:\Windows\Performance\WinSAT\winsat.wmv -nopmp
    723515 (3088) - mfmedia\mfmediaop.cpp:0508: ps_MFMediaWorkerThread Launched with priority 0
    733562 (3088) - mfmedia\mediaerror.cpp:0137: mfmediatest.cpp @ 1555: 0x800705b4 == ERROR_TIMEOUT
    733578 (3088) - mfmedia\mediaerror.cpp:0137: mfmediatest.cpp @ 1279: 0x800705b4 == ERROR_TIMEOUT
    733578 (3088) - mfmedia\mediaerror.cpp:0137: mfmediatest.cpp @ 388: 0x800705b4 == ERROR_TIMEOUT
    733578 (3088) - mfmedia\mediaerror.cpp:0096:Error: Could not build a topology to decode the input file. (p_BuildTopology)
    733625 (3088) - exe\main.cpp:2157: > mfmedia Assessment FAILED due to an error
    733625 (3088) - exe\main.cpp:4164: > Power request 'execution' successfully cleared.
    733625 (3088) - exe\processresults.cpp:4571: > Wrote video memory bandwidth to the registry 3000430
    733625 (3088) - exe\processresults.cpp:1421: Skipping HighDefPlayback limit check.
    733625 (3088) - exe\processresults.cpp:1547: No D3D10 Subscore. Using D3D9 subscore for final D3D score.
    733640 (3088) - exe\processwinsaterror.cpp:0298: Unspecified error 21 occured.
    733640 (3088) - exe\processwinsaterror.cpp:0319: Writing exit code, cant msg and why msg to registry 
    733796 (3088) - exe\syspowertools.cpp:1015: > Set the active power scheme to 381b4222-f694-41f0-9685-ff5bb260df2e'
    733796 (3088) - exe\main.cpp:2985: > Power state restored.
    733812 (3088) - exe\main.cpp:3000: > Successfully reenabled EMD.
    733859 (3088) - exe\main.cpp:3026: > Composition restarted
    733859 (3088) - exe\watchdog.cpp:0339: Watch dog system shutdown
    733859 (3088) - exe\main.cpp:5204: > exit value = 21.
    i accidentally deleted all the formal assessment.xm file 
    please help me

    Hi,
    I'm agree with amavhsrma, we do need more information about your problem. We couldn't provide any suggestion with single log file.
    Roger Lu
    TechNet Community Support

  • Query on processing the input files sequentially

    Hi All,
    I've a scenario based on File to 3 RFCs i.e. the input file will have 3 different recordtypes and based on the value of the recordtype corresponding RFCs should be invoked.
        The main criteria here is <b>the input files should be read in sequence (By Date) and should be sent to R/3 once the prior file is processed completely</b> i.e. the second / third / subsequent file <b>shouldn't create multiple instances</b> of the ABAP pgm.
        Even if I use EOIO in the file sender adapter  I suppose the second file will be sent to and processed by ABAP parallely if the first file processing consumes huge time. Please correct me if am wrong.
        Also let me know if there is any way to achieve this .
    Thanks in advance.
    Saravanan.

    Hi Udo / Prateek,
            Thanks for your prompt reply.
    Udo - <i>No, i dont think so. It has to wait in the queue until first message is processed</i> --  <b>Do you mean that XI will not create multiple instances of the ABAP pgm??..</b>
    Prateek - How do I <b>Activate/Deactive the jobs for Event-Driven Message Processing dynamically using a program??..</b> Bcoz I've to check whether the first file processing is over (say by checking a flag) in the R/3 side and then Activate the Job if so...so that the next file can be read..
    Thanks,
    Joe.

  • How to execute BAPIs by getting the input from the user through the browser

    Hi,
    I have created a simple xMII transaction using BAPI. It is a simple BAPI with one input. Now i want the transaction to be executed by getting the input from the user through browser. Once the user enters the value and clicks on a button, I want the result of the BAPI to be displayed in the grid. How to link the BAPI/transaction with applet/Javascript coding.
    Thanks.

    The first thing I would recommend would be for you to collaborate with your colleague Vinodh, since his/her recent thread is very similar to yours:  Calling a BAPI from web page
    In your case, the iGrid applet will run the Xacue query template and automatically display the results from your output parameter.
    I would encourage you to take a look at the sticky thread at the top of the forum entitled "MII Manufacturing Templates Updated" since this MII project is full of samples for you and your colleague to learn from.

  • What does Java do with the input file?

    Hello everyone --
    I have a freaky Java problem. I'm running a program that takes an input file, reads it one line at a time, and determines whether the info I'm looking for is contained in it or not. For each line it reads, it decides if that line is good or bad, and broadcasts the findings in a System.out.println(). Every line gets one. When I run the program, I redirect the output to a log file. What's going on when the input file is 13000+ lines long and the log file is only 2500 lines long? This is tweakin' me out.
    Thanks for the advice,
    -Kwj.

    Here's what I have:
    boolean isGood = true;
    int count = 1;
    while((line = in.readLine()) != null)
    if (/*some condition is met*/)
    {*do some stuff*/}
    else
    isGood = false;
    System.out.println("***" + line);
    if (isGood)
    /*do some more stuff*/
    System.out.println(count + ". " + line)
    count++;
    }//process all lines
    As far as I can tell, I have every line accounted for in the else statement or the last if statement. If the line doesn't meet the req., it doesn't get to go on to the last if processing. All the good ones get processed. I think.

  • Get the Shockwave file not to loop

    In this page below, how do I get the shockwave file to freeze
    at the last frame?
    http://ltcproduction.com/creative.html

    <param name="Loop" value="?">
    Adjust the question mark to suit
    "npqster" <[email protected]> wrote in
    message
    news:fsshc2$19e$[email protected]..
    > In this page below, how do I get the shockwave file to
    freeze at the last
    > frame?
    >
    >
    http://ltcproduction.com/creative.html

  • How can i get the trace file

    Hi,
    I wanted to check the trace file to make sure that there is no login attempts happend through the forms with wrong username and password.
    how can i enable the trace file , where i have to write the commands and where i can see the trace file.
    I'm using oracle forms 6i
    could anybody help me.
    thanks
    Bcj

    This link is all about forms 9i, i'm working on forms 6i. but i have tried with following values
    TRACE_LEVEL_CLIENT=16
    TRACE_UNIQUE_CLIENT=TRUE
    TRACE_FILE_CLIENT=Test
    TRACE_DIRECTORY_CLIENT=c:\orant\net80\trace
    in sqlnet.ora file and it created a trace file whenever it connected to database through the on_logon trigger.
    if the username or password is invalid then the validations raise the form_trigger_failure exception. so there was no trace file. so i was unable to get the trace file to see the invalid login attempts.
    Thanks

  • How to get the inputs in different language

    Hi,
    I have a typical scenario in which I have a thin client (web browser).
    And I need to display a word in a input text box, followed by many text boxes for getting the inputs from the user in different languages.
    But I am not sure about getting the inputs from the user in different languages in the same screen and update the same in the database.
    If you have idea about the same. Please share it accross.
    Thanks
    Karthick

    Hi One_Dane
    I'm trying to bring a hindi text from one jsp to another. As i've installed all the IME n stuff, I'm able to get the display in hindi whenever i'm typing something in my textbox . But the same text is not displayed in hindi when i'm doing a request.getParameter() on that textbox.
    I tried printing the UTF-8 unicode charsets like
    "\\u0904\\u0904\\u0904". This does print fine. I can see the hindi appearing in these kinds of text. Also i tried out converting them to code points n stuff, and it works fine. Infact all the values that are not coming up from the request parameter are working fine.
    So i concluded that in the previous page where-in i'm giving the inputs, probably they might not be wrapped up in the UTF-8 charset. But i've specified the charsets to be UTF-8 in the meta info for both the pages.
    Kindly help regarding what might be the issue. Please tell if i missed out any point while explaning.
    thanx in advance
    Nagraj

  • Metagen is skipped sometimes complaining because all output files are up-to-date with respect to the input files

    Hi,
    In one of my dll (VS2010), the process Skipping target "MetaGen" because all output files are up-to-date with respect to the input files.
    it is at  random.  I have checked the time stamps of the dll and metagen.write.1.tlog both having the time stamp on the failed build.  But all files in release folder did not have the same time.  They are one hour earlier than the dll
    and the  metagen.write.1.tlog.
    On the good build  it said the input file is is newer than output file ".\Release\\metagen.write.1.tlog" and allfiles in the release folder have same time stamp.
    Any clue to solve this ?
    Regards,

    Hi,
    Based on your post, I am not very clear about your issue. I feel your issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
     Could you please provide us more information so that we resolve your issue better?
    What type of project are you working with? C++ MFC project?
    How was the
    metagen.write.1.tlog file generated in your project?
    What error messages did you get?
    What is the 'input file'?
    If possible, please provide us a sample project to reproduce your issue.
    Thanks,
    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