Slow http post / unable to post large files

We have a configuration with ASA 5520 in release 7.1.2. A Web Server on the DMZ. On the Web Server we can post file through a http connection on the Web server, in this http connection we select the file to upload from the http client to the Web Server.
The upload work for very small files, but not for files that have more than 100Kb. On the logs I don't see any errors, I just see that the Web Server IP with source port 80 build a connection to the client, and teardown after few minutes.
Any idea ?
Thanks for your help.

Hi.
The ASA will either pass or drop the packet. It will not queue the packet. The only reason can be "ident" protocol. You need to check two things.
1. Some http servers require that the originating client ip should have a proper in.arpa record. You can do this by doing a
nslookup initiating the request.
2. Some http servers try to identify the userid of the process that initiated this request. This is called IDENT protocol. If this is the case, you should see a teardown on port 113. If you see something like this then issue the command
service resetinbound outside
--Pls rate if this helps--

Similar Messages

  • I need to update to the latest version of Snow Leapord-currently running v10.6. Because of where we live the slow download speed for such a large file has kept me from downloading the update. What can I do short of hooking up computer elsewhere?

    I need to update to the latest version of Snow Leapord-currently running v10.6. Because of where we live the slow download speed for such a large file has kept me from downloading the update. What can I do short of hooking up computer elsewhere?

    Do you ever visit a friend or realtive with a Mac who has faster internet? Maybe the local library has Macs on a fast line. If so, get a USB thumb drive and put this link on it from your computer:
    http://support.apple.com/kb/DL1399
    Then put this link on the drive:
    http://support.apple.com/kb/DL1429
    When you are at some place that has a Mac with a decent download speed. insert the thumb drive in that Mac and click on the first link ("DL1399") and direct the download to your thumb drive. Now do the same this with the second link.
    The installer files will now be on the thumb drive and, when you get home, drag them from the thumb drive to your desktop. Install the Combo update first.

  • Unable to download large files via my Mobile Network

    I have unlimited mobile data but I am unable to download large files, like podcasts unless I connect to Wi Fi. My settings are set to use mobile data, is there anything I can do?

    There is a 50meg (recently upgraded from 20) per file download limit over cellular data. No, you can't change that.

  • Http post large images

    Hello people ...
    I've been working on this for almost a week
    am trying to post an image and some text with it to my server
    i know that i can post large images to an ASP.NET page .. but now am dealing with apache 2.2.3 and am using multipart post
    I've tested this code using nokia devices and it is working fine
    but on sony ericsoon devices " z520 and z610" it is giving 502 proxy error response ...
    here is the client and server responses ....
    WHAT IS WRONG WITH SONY ERICSSON DEVICES
    any idea what is happening
    here is my code
    InputStream is = null;
            OutputStream os = null;
            DataInputStream dis = null;
            StringBuffer responseMessage = new StringBuffer();      
            StringBuffer b = new StringBuffer();
            HttpConnection c= null;
            try
                String message1 =  "-----------------------------2789938726602\r\n" +
                        "Content-Disposition: form-data; name=\"post[id]\"\r\n\r\n" +
                        "-----------------------------2789938726602\r\n" +
                        "Content-Disposition: form-data; name=\"post[title]\"\r\n\r\n" +
                        " bahjat\r\n" +
                        "-----------------------------2789938726602\r\n" +
                        "Content-Disposition: form-data; name=\"post[discription]\"\r\n\r\n" +
                        "Description\r\n" +
                        "-----------------------------2789938726602\r\n" +
                        "Content-Disposition: form-data; name=\"post[username]\"\r\n\r\n" +
                        "Username\r\n" +
                        "-----------------------------2789938726602\r\n" +
                        "Content-Disposition: form-data; name=\"post[password]\"\r\n\r\n" +
                        "Password\r\n" +
                        "-----------------------------2789938726602\r\n" +
                        "Content-Disposition: form-data; name=\"post[category_id]\"\r\n\r\n" +
                        "1\r\n" +
                        "-----------------------------2789938726602\r\n" +
                        "Content-Disposition: form-data; name=\"post[file]\"; filename=\"mobile.jpg\"\r\n" +
                        "Content-Type: image/jpeg\r\n\r\n";
                 String message2 ="-----------------------------2789938726602--"; 
                 byte[] Message1 = message1.getBytes();
                 byte[] Message2 = message2.getBytes();
                 int total_length = Message1.length + Message2.length + postByte.length ;
                c = (HttpConnection) Connector.open(URL, Connector.READ_WRITE);
                c.setRequestMethod(HttpConnection.POST);
                c.setRequestProperty("Host","hq.d1g.com")  ;
                c.setRequestProperty("Accept"," text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5");
                c.setRequestProperty("Accept-Charset"," ISO-8859-1,utf-8;q=0.7,*;q=0.7");
                c.setRequestProperty("User-Agent", "Profile/MIDP-2.0 Confirguration/CLDC-1.0");
                c.setRequestProperty("Accept-Encoding", "gzip, deflate");
                c.setRequestProperty("Accept-Language","en-us,en;q=0.5");
                c.setRequestProperty("Http-version","HTTP/1.1");
                c.setRequestProperty("Content-Type", "multipart/form-data;boundary=---------------------------2789938726602");
                c.setRequestProperty("Content-Length", Integer.toString(total_length) ); 
                c.setRequestProperty("Keep-Alive","300");
                c.setRequestProperty("Connection","Keep-Alive");
                os = c.openOutputStream();  
                os.write(Message1);
                os.write(postByte);
                os.write(Message2);          
                os.close();
                Message1 = null;
                Message2 = null;
               int rc = c.getResponseCode();
               if (rc != HttpConnection.HTTP_OK) {
                    b.append("Response Code: " + c.getResponseCode() + "\n");
                    b.append("Response Message: " + c.getResponseMessage() +
                            "\n\n");        
               Resived_String=b.toString();
               is = c.openInputStream() ;
                // retrieve the response from server
               int ch;
               while( ( ch = is.read() ) != -1 )
                    responseMessage.append( (char)ch );
               String s=responseMessage.toString();
               Resived_String+=s;
            catch (Exception ce) {
                Resived_String=ce.getMessage(); }
            finally {
                if(dis != null)
                    dis.close();
                if (is != null)
                    is.close();
                if (os != null)
                    os.close();
            return Resived_String;here is the headers as i followed them using wireshark
    client
    POST /gallery/post/update HTTP/1.1
    Host: hq.d1g.com
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    User-Agent: Profile/MIDP-2.0 Confirguration/CLDC-1.0
    Accept-Encoding: gzip, deflate
    Accept-Language: en-us,en;q=0.5
    Http-version: HTTP/1.1
    Content-Type: multipart/form-data;boundary=---------------------------2789938726602
    Keep-Alive: 300
    Connection: Keep-Alive
    User-Agent: UNTRUSTED/1.0
    Transfer-Encoding: chunked
    server response
    HTTP/1.1 502 Proxy Error
    Date: Wed, 04 Apr 2007 12:49:40 GMT
    Content-Length: 493
    Connection: close
    Content-Type: text/html; charset=iso-8859-1
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>502 Proxy Error</title>
    </head><body>
    Proxy Error
    The proxy server received an invalid response from an upstream server.
    The proxy server could not handle the request POST /gallery/post/update.
    Reason: Error reading from remote server
    <hr>
    <address>Apache/2.2.3 (Fedora) Server at hq.d1g.com Port 80</address>
    </body></html>
    and some times i get this response
    404 not found
    so any idea what i can do

    Thank your reply,and I think there are some bad with code,but there is only
    a swc,and I can't analyze the c/c++ code,so I relly don't konw how to solve
    it, Can you provide me some c/c++ code,and I can compile them to Alchemy
    code...
    2009/10/28 zazzo9 <[email protected]>
    It is either a bug with your code or with the library, which may be
    aggravated by a bug in alchemy where it fails to report exhausted memory
    properly.  The library you are using is just a demonstration and may likely
    have bugs.
    >

  • Http-post XML file to Localhost:1301 - No XI available

    Hi guys,
    I hava a problem finding a preferrably easy answer to a task: send a XML-file via http-post to localhost:13001. I am using the iXML library to create the XML (as it contains some stuff not available in the crm) and thats about it. The system will not have an XI available, but the application listening on 13001 will be expecting data, whenever it ist sent. As far as I know, the file should be sent everytime a user presses a certain button.
    Never done this before, so even basics are fine.
    Any help appreciated!!
    Thanks
    Claudia

    Try reading: https://metro.dev.java.net/discover/

  • Receive HTTP POST XML file

    Hi all,
    I am working with Flex where a HTTP POST request with XML is sent from the client to the server (Java server, I am running JBoss) expecting a reply. Can someone point to example code of Java on the server side receiving POST request, and if possible acts on the XML data and returns similar XML to the client? I need to use HTTPService; AMF/BlazeDS is not an option. Unfortunately most examples online of Flex/Java apps are using the latter.
    I would much prefer not to have to deal wilth EJBs and JSPs unless those are the only solutions available. Hopefully some plain old server side Java will suffice!
    Thank you for all your help in advance.

    Try reading: https://metro.dev.java.net/discover/

  • Numbers still unable to sort large files

    It only took about 30 seconds to discover Numbers 09 still does not have the capability to sort large files (10,000+ rows by 15 columns). I originally thought I had discovered a workaround but that fizzled as well since it was a "one shot" with all subsequent attempts getting the spinning beach ball even though the single column sort showed properly just before the beach ball. I posted several "Problem notices" after having to force quit every time I used 09. Since this would be the only reason for me to upgrade to 09 especially after having 08 only a couple of months I guess I will just have to put off thinking about it until there is a serious enough upgrade for my purposes.

    Thanks for the information Ivan. However, I only have two formulas in the entire spreadsheet with one of them being just a counter (previous cell plus one) and the other determining the age of an individual from their date of birth and date of death.
    I probably should have noted that I did get the sort to work one time albeit allowing the automatic feature to run its course between changing the column selections.
    I.E.
    Select the entire sheet except row one.
    Click on Reorganize.
    Click on Plus sign to bring up second selector > wait for automatic responses to complete.
    (there were two separate "barometers" that came up with redisplay following each one.)
    Click on first column selector and select D > wait for automatic responses and redisplays.
    Click on second column selector and select C > wait for automatic responses and redisplays.
    It looks like I made an assumption here that may not be true - that the TEAM had access to the problem reports where all this was spelled out in detail along with several attempts afterwards that would fail (Spinning beachball) after the first selection and redisplay regardless of whether there were one or two selectors in the sort popup.
    BB

  • Unable to View Large Files

    We're having a recurring issue where users start getting 'cannot access the file' error messages when trying to view documents in document libraries, it'll start with the larger files (over 10mb) and spread eventually to all documents in all libraries. On
    the client side it looks as if the download is being interrupted or timing out after about 10 seconds (though the limit is set at 6min). 
    The only thing that appears to fix the issue is a complete reboot of the server. Something we're not keen on doing multiple times a day. 
    No error messages or warnings in the server logs and we don't appear to be hitting any thresholds. 
    Any ideas?

    It was some time ago since I had to tackle this problem, but I think my article at
    http://www.loisandclark.eu/Pages/largefiles.aspx will provide some insights.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Unable to transfer large files from MB to External HDs

    Hi,
    This may be an unusual one. My 1st edition Macbook won't let me transfer large files to my external hard-drives, either by USB, Ethernet or wirelessly through my home wi-fi network.
    I've started video editing so I'm importing DVcam tapes through firewire from the camera. A full DV tape translates to about 8-12gb I think.
    Using iMovie and saving the import to my Freecom 3.5inch network harddrive vis USB or ethernet, it fails saying 'Unexpected error, error code 1309'.
    When I try quicktime pro instead to import the tape to the external HD, I get 'Operation could not be completed, An attempt to add a resource to the file failed'. This happens too with my WD 2.5inch external drive.
    However, there is no such problem when I import to the MB's internal harddrive. When I then try and shift the large file off the laptop to an external drive, via USB, ethernet of wirelessly, for editing and save keeping, it fails half way through.
    I have the same problem when I try back-up my 17gb virtual windows machine I use with VMware fusion off the laptop to an external drive.
    I am currently burning an 18gb iMovie project from the MB's internal HD, over 5 DVDs using Toast's disc-spanning and will reimport them to the external, which is really time consuming.
    Also to note, Final Cut Express doesn't have these problems as it seems to break up what would be an 18gb movie file into several smaller files, which my MB is quiet happy to let go onto an external drive. However, the problem re-emerges on Final Cut Ex when I try and import a HDV tape. Possibly FCE isn't breaking them up into small enough pieces for my MB to handle?
    Any ideas why this is happening and what I can do to fix it? Or does this mean a new laptop?

    Irish Apple Fan wrote:
    Hi,
    This may be an unusual one. My 1st edition Macbook won't let me transfer large files to my external hard-drives, either by USB, Ethernet or wirelessly through my home wi-fi network.
    I've started video editing so I'm importing DVcam tapes through firewire from the camera. A full DV tape translates to about 8-12gb I think.
    Using iMovie and saving the import to my Freecom 3.5inch network harddrive vis USB or ethernet, it fails saying 'Unexpected error, error code 1309'.
    When I try quicktime pro instead to import the tape to the external HD, I get 'Operation could not be completed, An attempt to add a resource to the file failed'. This happens too with my WD 2.5inch external drive.
    I'm a bit late to the party, but specifically there's a 4GB file size limit in the FAT32 format that is standard on many external hard drives. I've run across this problem before, and usually it copies over most of the file and then quits when it reaches the limit.

  • Emulating HTTP POST for file upload with J2ME

    I have search through a lot of site and couldn't find the actual code. I try to emulate below html with J2ME.
    <form method="POST" enctype="multipart/form-data" action="Insert.asp">
    <td>File :</td><td>
    <input type="file" name="file" size="40"></td></tr>
    <td> </td><td>
    <input type="submit" value="Submit"></td></tr>
    </form>
    here is my code :
    HttpConnection c = null;
    InputStream is = null;
    OutputStream os = null;
    byte[] filecontent = file byte content ...
    try {
    c = (HttpConnection)Connector.open("http://xx.com/insert.asp");
    c.setRequestMethod(HttpConnection.POST);
    c.setRequestProperty("Content-Length", String.valueOf(cmg.length + 15));
    c.setRequestProperty("Content-type","multipart/form-data");
    os = c.openOutputStream();
    os.write("file=c:\\abc.png".getBytes());
    os.write(filecontent);
    os.flush();
    I can emulate form with text field and it work, but when it come to file upload, above code not working, I don't know what to put for the outputstream, filename ? content ? or both ? since the html only has one field that is the "file" field. The file is actually store in rms with filename abc.png, and I just put in the c:\ for the server as a dump path.

    File upload is more complicated then that... you need multi-part MIME formatting.... But I have just the code...
    http://forum.java.sun.com/thread.jspa?forumID=256&threadID=451245

  • CF8.01 Large Files Upload issue

    We are having an issue with posting large files to the server
    through CFFile. Our server is running on Windows 2003 R2 SP2 with
    2GB of RAM. The average upload size is 800MB and we may run into
    multiple simultaneous uploads with the large file size. So, we have
    adjusted the "Maximum size of post data" to 2000 MB and "Request
    Throttle Memory" to 5000 MB in the ColdFusion admin setting to
    hopefully can allow up to 5 simultaneous uploads.
    However, when we tried to launch two 800MB uploads at the
    same time from different machines, only one upload can get through.
    The other one returned "Cannot connect to the server" error after a
    few minutes. No errors can be found in the W3C log and the
    ColdFusion logs (coldfusion-out.log and exception.log) but it is
    reported in the HTTPErr1.log with the following message:
    2008-04-18 08:16:11 204.13.x.x 3057 65.162.x.x 80 HTTP/1.1
    POST /testupload.cfm - 1899633270 Timer_EntityBody DefaultAppPool
    Can anyone shed some light of it? Thanks!

    quote:
    Originally posted by:
    Newsgroup User
    Don't forget that your web server (IIS, Apache, etc.) can
    have upload
    throttles as well.
    We did not throttle our IIS to limit the upload/download
    bandwidth.
    Is there a maximum limit for "Request Throttle Memory"
    setting? Can we set it over the available physical RAM size?

  • Can't copy large files to AirPort Disk Using Windows 7

    Hi Everyone,
    I'm positng because I'm unable to copy large files to an AirPort Disk using Windows 7.  I have the following setup.
    AirPort Extreme:
    - Firmware version: 7.6.1
    - Airport disks secured by password
    - No guest access allowed
    - Airport Disk Preferences:
      - Automatically discover airport disks is enabled
      - Show Airport Disks in the system tray is enabled
    External Drive:
    - Western Digital 500 GB MyBook External Drive connected to Airport Extreme thru USB
    - FAT32 Formated
    Computers:
    - 2 Toshiba Proteges, Both with 4GB RAM
    - Both have Windows 7 Home Premium with Service Pack 1, 64-bit version
    - (Sorry we have no MacBooks at home, just iPhones and iPods!)
    Airport Utility:
    - Version  5.6.1
    Airport Disk Preferences Utility:
    - Version  1.5.5.3
    A week ago, I was able to copy over large files (videos <4GB in size) to the drive.  Now, when I try to copy over these large files to the drive, the copy dialog box hangs.  I receive a message stating that Windows is calculating the size, but then it doesn't copy over.  Windows then gives me a message that it is unable to copy to the drive.  When I test the drive connection by copying a small text file over, it copies over quickly and seamlessly.  This problem occurs on both computers.
    I am able to do the following with the drive connection:
    - Read files
    - Change file names
    - Copy files from the drive to my computer
    - See the contents of drive
    I've tried all the combinations of the following with no success:
    - Turning off Windows Search
    - Downgrading the firmware
    - Reconfiguring wireless adapter
    - Rebooting computer
    - Rebooting wireless router
    - Rebooting external drive
    The drive seems to be working fine except for when I want to copy <2GB files over to the drive.  Does anyone have a solution that seems to work?
    Thanks!

    I'm happy to report that, after reformatting the drive to HFS+ (aka Mac OS Extended), there are no problems writing/copying large or small files to the AirDisk drive.  I'm also happy to report that I am copying to the drive at a rate of roughly 4MB/s.
    As I mentioned earlier, the only catch is that I am unable to plug the external drive directly into a Windows computer via the USB port as Windows is unable to read HFS+ formatted drives.  (I can, however, plug the drive into a Mac computer as they can read HFS+ formatted drives.  The only problem is that I don't own any Macs at this time!  LOL!)
    You're probably wondering how I formatted the external drive to HFS+ since I don't own any Macs.  (Windows only allows you to format drives in exFAT, FAT, NTFS and the like.)  That is a good question.  Basically, I downloaded an open source formatting tool called, Gparted, which allows you to format any USB drive to any major file format system.  Since Gparted is an open source tool, it is a little cumbersome to use. Once you figure out how to use it, it is a cinch to format the drive to HFS+.  (Of course, an easier method would be to borrow a friend's mac, plug the drive into their mac, and format it to HFS+ using their mac.)
    For a step-by-step guide on how to solve this problem, see the steps below:
    1) Backup all data from external drive
        a) Fortunately, I have a 1TB ultraportable USB drive which has enough space to backup all data on the drive
    2) Format the external drive to HFS+ using one of the methods below
        a) Plug it into a Mac and format it
         b) Use Gparted (free) to format it
    3) Plug the drive back into the Airport Extreme
    4) Start copying files over to your networked drive!
    I hope this helps you! Cheers!

  • Can't copy large files to airport extreme USB drive.

    Hi Everyone,
    I'm positng because I'm unable to copy large files to an AirPort Disk using Moutain Lion.  I have the following setup.
    AirPort Extreme:
    - Firmware version: 7.6.3
    - Airport disks secured by password
    External Drive:
    - Seagate 3TB External Drive connected to Airport Extreme thru USB
    - Mac OS Extended (Journaled) Formated
    Computers:
    - MacMini(Mid 2010) - MacBookPro 13" Retina
    - Both have Mountain Lion with latest updates
    Airport Utility:
    - Version  6.2
    I am using the drive for a backup of .mv4 files. Files up to 4g transfer just fine. Files over 4g will get all the way to the end and throw a -36 error. If I plug it into my mac the files copy just fine. I have googled the issue and get all of these fat32 and win7 issues. Not really relevant from what I can tell.
    I have also connected other drives the the Airport formatted the same and get the same problem.

    That's not entirely unusual as using that port on the AEBS for backup is an iffy business, especially if you are trying to use Time Machine which is completely unsupported by Apple.
    There may well be something wrong with the file you are trying to transfer, hence, the -36 error. I have no solution for you. Generally, there is no suitable solution. If you get the error while trying to copy several files at once, then try doing one file at a time which sometimes works. Archiving may enable you to transfer the archive, but then dearchiving on the destination may not work.
    You can check the filename length and look for illegal characters or just rename the file, if possible. And, don't overlook the possibility that the file itself is corrupted even if it does not appear to be so from outward appearances. Lastly or firstly, try transferring the file to the external drive hooked up directly to the computer instead of the AEBS.

  • How to upload large file with http via post

    Hi guys,
    Does anybody know how to upload large file (>100 MB) use applet to servlet with http via post method? Thanks in advance.
    Regards,
    Mark.

    Hi SuckRatE
    Thanks for your reply. Could you give me some client side code to upload a large file. I use URL to connect to server. It throws out of memory exception. The part of client code is below:
    // connect to the servlet
    URL theServlet = new URL(servletLocation);
    URLConnection servletConnection = theServlet.openConnection();
    // inform the connection that we will send output and accept input
    servletConnection.setDoInput(true);
    servletConnection.setDoOutput(true);
    // Don't used a cached version of URL connection.
    servletConnection.setUseCaches (false);
    servletConnection.setDefaultUseCaches(false);
    // Specify the content type that we will send text data
    servletConnection.setRequestProperty("Content-Type",
    +"application/octet-stream");
    // send the user string to the servlet.
    OutputStream outStream = servletConnection.getOutputStream();
    FileInputStream filein = new FileInputStream(largeFile);
    //BufferedReader in = new BufferedReader(new InputStreamReader
    +(servletConnection.getInputStream()));
    //System.out.println("tempCurrent = "+in.readLine());
    byte abyte[] = new byte[2048];
    int cnt = 0;
    while((cnt = filein.read(abyte)) > 0)
    outStream.write(abyte, 0, cnt);
    filein.close();
    outStream.flush();
    outStream.close();
    Regards,
    Mark.

  • File upload using http-post in OSB

    Hi All,
    I am trying to upload a file using http-post method in OSB.
    I have created a business service pointing to the service url, with http method post.
    and calling this business service from a proxy service.
    I am unable to send the form data to the business service.
    Please let me know how to send trhe form data and the file information.
    The error given by Business Service is-
    the request doesn't contain a multipart/form-data or multipart/mixed stream, content type header is text/plain
    Thanks in advance.
    Seemant
    Edited by: Seemant Srivastava on Oct 12, 2010 12:28 PM

    Hi Anuj,
    A sample HTML form code for. Post HTTP service-
    <html>
    <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>CSV File</title>
    </head>
    <body>
    <form method="post" enctype="multipart/form-data" action="http://xyz/UploadFile">
    <table>
    <tr>
    <td> Feed id </td>
    <td><input type="text" name="refid" value="" size="20"></td>
    </tr>
    <tr>
    <td> Username (optional)</td>
    <td><input type="text" name="username" value="" size="20"></td>
    </tr>
    <tr>
    <td> Password (optional)</td>
    <td><input type="password" name="password" value="" size="20"></td>
    </tr>
    <tr><td> Select CSV File </td>
    <td> <input type="file" name="upload" value="" width="30"/></td>
    </tr>
    <tr>
    <td><input type="submit" name="Ok" value="Go"> <input type="reset" name="reset" value="Reset"> </td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    I need to pass all these information to OSB business service.

Maybe you are looking for

  • How to download a file from database

    Hi, My flex application contains a form that uploads a file into the server. This file is however saved in the database, and not on the disk. Most of the tutorials in the database explains how to download a file by passing the file's url to the "down

  • Multipanel and/or Multiple GUI DLL

    Hello, I am in the process of writing an application that will use some CVI GUI DLL's   The thought is each DLL is associated with an instrument and will have an instrument specific user interface that can be accessed through an exported function (RU

  • Embedding indexes inside PDF file

    Hi, My requirement is to convert PDF files (Which have text content) to pdf files with embedded indexes to accelerate search operation. I want do the conversion in batch process that it will be configured to run according to a given schedule. 1- Whic

  • ActionScript for buttons

    Hello everybody, I am new to flash, and I really don't have much expirience with ActionScript in Flash. Does anyone know what actionscript should I write for opening a new page in the same window? For example, I have allready created my button, and m

  • User Exit/BADI for transaction FTR_CREATE/FTR_EDIT

    Hi, Have anybody worked on any userexit or BADI on tcode FTR_CREATE or FTR_EDIT? I've been searching for a userexit/badi when I save the contract. Till now I found none. I need to validate limit amount of contract when save event is triggered. Any in