Receiving text files on apex/html port

Hi,
I am in the process of setting-up, configure, developping an apex application but I have a question about receiving files into the "apex" database.
The process flow:
a machine creates medical equipment but also creates a file as input for the apex application.
This file will be picked-up by a transaction process (sort of Tuxedo) and will be transferred to the Apex databases. The easiest was is to start a FTP process to send the file but this will creates too many steps. So I wondered if it is possible to directly send this file from the medical server via the Transcation Process to the Apex application/database?
I am also interested in the most ideal HTTP server. Which one suits best with the above question?
Oracle Application Express Listener
Embedded PL/SQL gateway
Oracle HTTP Server and mod_plsql
Paul

Yes you can, as long as your iPod has firmware v2.0 or later. Then you can purchase apps from the App Store that will let you view all manner of files. Most of them are fairly cheap, there might even be free ones.
There are a few different programs available, but I use FileMagnet. It supports a large range of formats, including text, pdf and html (plus Word, Excel, Powerpoint, and Pages, Numbers and Keynote if you have iWork on your Mac).
The other program I have is Stanza, which is free. It only does plain text files, but it does them really well. And being free, I can't complain.
The only thing I don't think you can do is use your iPod as an external hard drive to move files from one computer to another.
Hope that helps

Similar Messages

  • How to display a text file in a html page?

    I have written a servlet that executes a batch file whose output is saved to a txt file. I am attempting to display content of the text file as a html page from the servlet but am struggling I have attempted to read the file and output it as shown below but it is not displaying the correct data
    Appreciate some help
    Thanks in advance
    Amjad
    Runtime r = Runtime.getRuntime();
    Process p = r.exec("C:\\Condor\\test\\QueStatus.bat");
    PrintWriter out;
    String title = "Que Status";
    response.setContentType("text/html");
    out = response.getWriter();
    FileReader fr = new FileReader ("C:\\Condor\\test\\output.txt");
    for (int chr = fr.read(); chr != -1; chr = fr.read()){
         out.print(chr);
    }

    Couple of things. First you should search the forums for how to properly exec a dos batch file. There are some problems you may run into especially with io. I suspect you may not actually be running that batch file at all.
    I would test outputing a text file separately from execing the batch file.
    Here is some code so you don't have to output 1 char at a time. Setting the content length and closing the output stream might help.
    File downloadFile = new File("c:\\blah\\blah\\blah");
    response.setContentLength((int)downloadFile.length());
    response.setContentType("text/html");
    ServletOutputStream out = response.getOutputStream();
    FileInputStream fis = new FileInputStream(downloadFile);
    byte[] buffer = new byte[1024];
    int bytesRead;
    while ((bytesRead = fis.read(buffer)) != -1) {
    out.write(buffer, 0, bytesRead);
    fis.close();
    out.close();

  • Adding own name in Receiver Text file in receiver FCC

    hi,
    In my receiver file CC(using file content conversion)
    I want to add some names on the receiver text file name automatically.
    sender is R3 that is IDOC as MI.
    In that field called CURCY on one segment and country one segment.
    ex.
    Now the receiver file name in FTP server (example)
    Result_report_20070721-104810-765.txt
    i want to get CURCY, COUNTRY field value on receiver file name in FTP server (it varies)
    example:
    Result_report_USD_USA_20070721-104810-765.txt
    Result_report_EURO_DE_20070721-104810-765.txt
    Result_report_EURO_FR_20070721-104810-765.txt
    Thanks

    hi,
    I am getting error in my message monitoring like message are in HOLDING bec of mistake which i made in Receiver FILE CC
    as i said:
    I followed my help.sap.com link to do this req.
    In my receiver file CC(using file content conversion)
    I want to add some names on the receiver text file name automatically.
    sender is R3 that is IDOC as MI.
    In that field called CURCY on one segment and country one segment.
    ex.
    Now the receiver file name in FTP server (example)
    Result_report_20070721-104810-765.txt
    i want to get CURCY, COUNTRY field value on receiver file name in FTP server (it varies)
    example:
    Result_report_USD_USA_20070721-104810-765.txt
    Result_report_EURO_DE_20070721-104810-765.txt
    Result_report_EURO_FR_20070721-104810-765.txt
    My message mapping is
    Source is IDOC occurence is 1
    Receiver File adapter: 0 to unbounded
    My message type on receiver is
    MT_Receiver
    DT_Receiversub1 (under MT_receiver)
    COUNTRY (third value under DT_DT_Receiversub1)
    I have mentioned in receiver FILE CC advanced variable substitution like this:
    variable Name :    var1
    Reference:    payload:DT_Receiversub1,3
    I am not receiving my file in Receiver FTP server.
    The mesage are on HOLDING in message monitoring
    Thanks

  • Sending Hex text files to the Serial Port

    Hi,
    Does anyone know or have any experience in how to open a Hex file, read
    the data and send it down the serial port.
    Regards,
    Martin.

    Martin Stanley wrote:
    >
    > Hi,
    > Does anyone know or have any experience in how to open a Hex file, read
    > the data and send it down the serial port.
    >
    > Regards,
    > Martin.
    Martin,
    I have a vi that reads a hex file then sends the data out the serial port.
    It waits for each byte to be echoed back before sending the next one.
    As each hex number is read, it's converted to a decimal number. The number
    is used as a decimal ascii code, the ascii character is then sent to the
    serial port.
    I'm not sure if this is the most efficient way to do it, but it works.
    Walter

  • How can we generate the reports in html or text file formats?

    Hi,
    Is there any package that can help in creating HTMLDB reports in .txt files or .html files? (Similar to TEXT_IO in Oracle Forms)
    How can we generate the reports in html or text file formats from HTMLDB?
    Thanks in Advance
    Renjith

    Hello all.
    Bi Publisher is great, but has a very high price tag. It's even more expensive than Forms & Reports Services. We are considering APEX to replace Forms & Reports on the web, but the reporting limitations are still a problem.
    I wonder if there is another option.
    Thanks

  • How to copy/send text file from FTPS to SAP ECC File Port

    Hi Frdns,
    I am working on one design, actually my requirement as follows
    I am receiving financial information document from Banks, which is in the form of BIA2 message format, it looks like text file. This information needs to be sending to SAP ECC system.
    I identified some approaches to full fill the requirement
    1)Using Conversion agent/or third party tools to convert BIA2 message in to XML, then using PI I will pick up the XML message, convert it in to IDoc.
    2)Without any conversion I will copy the same file (original BIA2 message) in to SAP ECC file port, in this case no conversion required, calling some program I will schedule it.
    I am looking forward t implement the second approach because it saves lot of money to my client.
    Now I am wondering using File adapter can i copy to SAP ECC File Port or I required ABAP proxy?
    What is the best approach to copy the BIA message text file from FTPS to SAP ECC File Port.??
    Regards,
    Raj

    Hi Raja,
    >>Now I am wondering using File adapter can i copy to SAP ECC File Port or I required ABAP proxy?
    Yes you can do this copy, the only restriction that can happen is the file size.. If you are sure that the fiel will be of few MB at the max then you can use the Configuration part alone and copy it to ECC folder. For doing this you need the following:
    1. Sender agreement (mention the sender interface as anything XYZ)
    2. Sender communication channel. Pick the file in binary mode
    3. Receiver determination (keep both the sender and receiver service as same)
    4. Interface Detemiantion (dont specify any mapping and keep the receiver interface name as XYZ)
    5. Create receiver agreement (with same service and interface)
    6. Use file adapter here
    Regards
    Suraj

  • When I send inline photos, recipients receive jumbled text file. What setting do I need to change?

    When I send inline (embedded) photos, along with text; my recipients say they only receive a jumbled text file. Is there a setting within TB I can change to correct this? See below:
    Message-Id: <iPTA1p0151ZQlML01PTCq2>
    Old-Message-Id: <[email protected]>
    X-CT-Class: Clean
    X-CT-Score: 0.00
    X-CT-RefID: str=0001.0A020202.54BEE450.020A,ss=1,re=0.001,fgs=0
    X-CT-Spam: 0
    X-Authority-Analysis: v=2.0 cv=ZM0JbwHb c=1 sm=1
    a=H9ApUXk15iS5yeOMHhxLeQ==:17 a=XD52yEjQpfAA:10 a=IkcTkHD0fZMA:10
    a=8LaAqv5HAAAA:8 a=YNv0rlydsVwA:10 a=ZtyhI0BCAAAA:8
    a=6SNPnC5c-BsZy3R9Qp8A:9
    a=QEXdDO2ut3YA:10 a=_W_S_7VecoQA:10 a=dEDsMZyNvvyTj/aoxoOu+Q==:117
    X-CM-Score: 0.00
    Received: from [192.168.11.108] (really [173.216.226.221])
    by txofep02.suddenlink.net
    (InterMail vM.8.04.01.08 201-2343-100-153-20121108) with ESMTP
    id
    <20150120232710.SKRU21350.txofep02.suddenlink.net@[192.168.11.108]>;
    Tue, 20 Jan 2015 17:27:10 -0600
    Message-ID: <[email protected]>
    Date: Tue, 20 Jan 2015 17:27:03 -0600
    From: "Ron F." <[email protected]>
    User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101
    Thunderbird/31.4.0
    MIME-Version: 1.0
    To: undisclosed-recipients:;
    Subject: Have A Great Day!!!!
    References:
    <[email protected]m>
    In-Reply-To:
    <[email protected]m>
    Content-Type: text/html; charset=utf-8
    Content-Transfer-Encoding: 8bit
    X-Cloudmark-Analysis: v=2.1 cv=fccjyigF c=1 sm=0 tr=0 a=2fDfVs0_6TAA:10
    a=IkcTkHD0fZMA:10 a=8LaAqv5HAAAA:8 a=YNv0rlydsVwA:10 a=ZtyhI0BCAAAA:8
    a=6SNPnC5c-BsZy3R9Qp8A:9 a=8YrWDim6EiZkUi7e:21 a=QEXdDO2ut3YA:10
    a=_W_S_7VecoQA:10
    X-Antivirus: AVG for E-mail 2014.0.4800 [4257/8962]
    X-AVG-ID: ID39D19FBF-2644597C
    <html>
    <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <div>
    <div>
    <div>
    <div style="background:white"><b><span
    style="font-size:13.5pt"><img moz-do-not-send="true"
    src="http://j.b5z.net/i/u/7000617/i/a.jpg?n=34148"
    height="492" width="658"></span></b><span
    style="color:black"></span></div>
    </div>
    </div>
    </div>
    <div>
    <div>
    <div>
    <div style="background:white"><span
    style="font-size:10pt"></span><span
    style="color:black"></span>Â <b><span
    style="font-size:13.5pt"><img moz-do-not-send="true"

    this forum just scrambles posts like yours... could you email me one of your problem email to unicorn dot consulting at gmail dot com.... Please put a subject in that will give me a clue.

  • Writing HTML data in TEXT File

    I am writing HTML content in TEXT file ...I read it in a string and then write using PrintStream...
    But it writes all content on one line ..I want to write it as it was in source HTML file...

    Perchance, the OP is referring to the lack of carriage returns in his outputted data, and querying where they have absconded to? An analysis of his posts to date reveals that he has read the contents of a File into a String variable, and wants to write the (presumably modified) String back to a file (uncertain as to whether this is the same file or a different one) In the process of outputting to said file, carriage returns previously contained in the original input file are not present in the output. I would hazard a guess that the OP does not want said carriage returns in the String to disappear.
    Is my analysis of the situation correct?
    An example of the code that you have written to date would be of extreme usefulness to us in aiding you in your noble quest.
    Without such a resource, I must rely on my intuition instead.
    Possible places that the carriage returns are being "dropped"
    1 - On reading in. Are you discarding carriage returns while building up your variable?
    2 - On manipulating. Are you processing this line by line, or reading it all into one large variable?
    3 - On output - are you using "print" or "println" in the output?
    I look forward to further correspondence with you sir
    kind regards,
    evnafets

  • What are some of the best iOS apps can remotely played videos, audios, photos and text files from a NAS hdd connected to Airport Extreme USB port? And how to configure this setup?

    I have already set up NAS hdd as connecting it at USB port of Airport Extreme, i also want to remotely access it from iPhone, so what's the next step? What are some of the best iOS apps can remotely played videos, audios, photos and text files from the NAS hdd and how to configure this setup?

    *Edit - I am not able to connect to the NAS when hardwired to the airport extreme.

  • How to define special character in html text file used in loadvars

    Hi
    I'm witing some maths software and need to use the division
    sign in a text file which is loaded using LoadVars().
    The variable loaded is then assigned to a text area. Here's
    the variable example.
    &hint1=<title><b>Challenge 1: Instant recall
    of any table</b></title><p>Including table
    divisions eg 56 ÷ 8= </p>
    the division sign is missing or a just a box. I've already
    tried most options: &#x00F7; (which works in XML loaded to
    flash), &divide; %F7
    Can anyone help please?

    Hi Michael. Thank you for your reply.
    There is no declaration within sgm file itself - but while opening the file I use sgml application definition with the following settings:
    Default API client:  FmTranslator
    SGML character encoding:  ISO Latin1
    XML character encoding:  UTF-8
    Namespace: Enable
    CSS2 Preferences:
    Generate CSS2: Disable
    Add Fm CSS Attribute To XML: Disable
    Retain Stylesheet Information: Disable
    Entity locations
    Entity search paths
    C:\Program Files\Adobe\FrameMaker9\Structure\sgml\isoents
    So as you can see, character encoding is set to ISO Latin1 (there is no way to use UTF-8 encoding in sgml files)
    Typing ź or ć in sgm document and opening it with framemaker sgml application - I receive: ¿æ and message: "Non-SGML character found; should have been character reference"
    Everything works fine when I type f.ex.: &x016B; and insert appropriate reference lines into isolat1.rw and isolat1.ent files
    But what I would like to avoid is editing those isoent files each time new character is be needed.

  • How to get the source code of an HTML page in Text file Through J2EE

    How to get the source code of an HTML page in Text file Through J2EE?

    Huh? If you want something like your browser's "view source" command, simply use a URLConnection and read in the data from the URL in question. If the HTML page is instead locally on your machine, use a FileInputStream. There's no magic invovled either way.
    - Saish

  • How to get the source code of an HTML page in Text file Through java?

    How to get the source code of an HTML page in Text file Through java?
    I am coding an application.one module of that application is given below:
    The first part of the application is to connect our application to the existing HTML form.
    This module would make a connection with the HTML page. The HTML page contains the coding for the Form with various elements. The form may be a simple form with one or two fields or a complex one like the form for registering for a new Bank Account or new email account.
    The module will first connect through the HTML page and will fetch the HTML code into a Text File so that the code can be further processed.
    Could any body provide coding hint for that

    You're welcome. How about awarding them duke stars?
    edit: cheers!

  • How to convert a HTML files into a text file using Java

    Hi guys...!
    I was wondering if there is a way to convert a HTML file into a text file using java programing language. Likewise I would also like to know if there is a way to convert any type of file (excel, power point, and word) into text using java.
    By the way, I really appreciated the help that you guys gave me on my previous topic on how to extract tests from a pdf file.
    Thank you....

    HTML files are already text files. What do you mean you want to convert them?
    I think if you search the web, you can find things for converting those MS Office files to text (or extracting text from them, as I assume you mean).

  • Add header line to the text file in receiver file adapter

    Hello Experts,
    I have to add a new line to the text file generated at the receiver end.
    My structure is
    Record
       Item......0-unbounded
             field1
             field2
             field3
    I have defined below parameters in receiver FCC.
    RecordSet Structure : Record,Item
    Item.fieldSeparator : ;
    Record.fieldSeparator : nl
    Record.endSeparator : '0x0D''0x0A' ( this is to get a carriage return at the end of the file)
    Item.addHeaderLine : 1
    With the above configuration, i am getting the desired output with NO header line.
    Please help.
    Thanks,
    Swetha.

    Hi, it looks like that the headerline "specification is only permitted if exactly one structure is defined." Please check [SAP help under Define Parameters for Recordset Structures|http://help.sap.com/saphelp_nw73/helpdata/en/44/686e687f2a6d12e10000000a1553f6/frameset.htm].
    One solution would be to generate the header fields in the message payload. Generate an additional first line containing the header names, e.g.
    <Item>
    <field1>Header1
    <field2>Header2
    <field3>Header3

  • How to extract the Html content of a UI Map into a text file or html file?

    Hi,
    Is there any possibility in OUAF or Java or from the Database, to retrieve the Html Content of a given a UI Map ?
    If UI Map name is the input, then it should fetch the entire html portion of it into a text file. How to acheive this?
    This needs to be done programatically either by writing some Java code or some SQL at the DB level?
    Edited by: OATS Explorer on Dec 29, 2012 9:10 AM

    F1_MAP.HTML_DEFN would give the html contents and F1_SCHEMA.SCHEMA_DEFN would give you the UI Map's Schema.
    SELECT map.map_cd
      , map.html_defn
      , sch.schema_defn
    FROM f1_map map
      , f1_schema sch
    WHERE map.map_cd = sch.schema_name
    AND sch.schema_type_flg = 'F1MP'

Maybe you are looking for

  • User action logging

    I'm writing a small model of a GUI, which I'm going to perform user tests on via the web. For these tests, I need to log all user action (button clicks etc). I have no problem with the actual logging, but how do I submit it from the tester so I'll be

  • Bug in Template forms ??

    Wondering if anyone else hit this problem. Running Apex 4.1.0.00.32 Login to Workspace, Goto Application Builder /Choose any application Then goto Shared Components/Templates. Click on any template preview - first time it works fine and shows the tem

  • Question about using new battery in old Powerbook

    I have a pre-intel Powerbook G4, and the battery is pretty much toast (lasts about 15 minutes now). I have ordered a new battery for it, and I have this question about using it: Am I smarter to keep the new strong battery out of the PB most days (as

  • MOVED: Cooler XP does not support motherbord !! ~ HELP!

    This topic has been moved to VGA products. https://forum-en.msi.com/index.php?topic=121040.0

  • Dynamic ribbon using MFC C++

    Hi, So I am trying to program ribbon dynamically with MFC. My requirements said I need 3-levels of HUD with the ribbon though. I know right now you guys only have 2, not counting the quick access toolbar. First level = Categories, Second level = Pane