Buying an upload component

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Ray at

    Buying an upload component

    I despise installing third party software on my workstations or servers. It
    is for this reason that I use componentless-upload for file uploads. This
    is no longer an option, and I have to purchase an upload component. For
    someone who hates third party software and also does not want any kind of
    nonsense "bonus" features like progress bars or whatever, can anyone
    recommend a component for me? The cost doesn't really matter. I am aware
    of what components are out there, but I've never used any of them or paid
    any attention to them. This'll go on a W2K Server. The first one that
    comes to mind is ASP Upload, but only because that's the one I hear about
    the most.

    Thanks,

    Ray at work




  • Aaron Bertrand - MVP

    #2
    Re: Buying an upload component

    > I despise installing third party software on my workstations or servers.
    It[color=blue]
    > is for this reason that I use componentless-upload for file uploads. This
    > is no longer an option, and I have to purchase an upload component.[/color]

    Why is this no longer an option?
    [color=blue]
    > For
    > someone who hates third party software and also does not want any kind of
    > nonsense "bonus" features like progress bars or whatever, can anyone
    > recommend a component for me?[/color]

    ASPUpload. We use it here, and it is both reliable and quite scalable.


    Comment

    • Ray at

      #3
      Re: Buying an upload component


      "Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in message
      news:%23JISiO%2 3lDHA.2776@tk2m sftngp13.phx.gb l...[color=blue][color=green]
      > > I despise installing third party software on my workstations or servers.[/color]
      > It[color=green]
      > > is for this reason that I use componentless-upload for file uploads.[/color][/color]
      This[color=blue][color=green]
      > > is no longer an option, and I have to purchase an upload component.[/color]
      >
      > Why is this no longer an option?[/color]

      It's just too slow, and we're going to have people uploading multi-meg PDFs
      and what not. I figured that I'd have to get a component one day, and I
      just have to suck it up. If I were a time-millionaire, I'd either create my
      own, or recode everything in .net. I'll get right on that...
      [color=blue]
      >
      > ASPUpload. We use it here, and it is both reliable and quite scalable.[/color]

      Thank you.

      Ray at work


      Comment

      • Aaron Bertrand - MVP

        #4
        Re: Buying an upload component

        > It's just too slow, and we're going to have people uploading multi-meg
        PDFs[color=blue]
        > and what not.[/color]

        I doubt that whatever component-less solution you are using now is the main
        cause for slowness. Why do you think a component would be faster?
        Definitely try it out, but I would suspect something more fundamental
        (server resources, network utilization, etc). I actually find
        component-less upload slightly faster (less overhead), but for our
        commercial applications we need vendor support as opposed to home-grown
        code.

        A


        Comment

        • Ray at

          #5
          Re: Buying an upload component


          "Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in message
          news:%231V6TX%2 3lDHA.3316@TK2M SFTNGP11.phx.gb l...[color=blue][color=green]
          > > It's just too slow, and we're going to have people uploading multi-meg[/color]
          > PDFs[color=green]
          > > and what not.[/color]
          >
          > I doubt that whatever component-less solution you are using now is the[/color]
          main[color=blue]
          > cause for slowness. Why do you think a component would be faster?[/color]

          I thought that I had remembered hearing many times that script solutions are
          noticeably slower than components. But, I suppose the only slowness would
          be in the processing only, not the actual data transfer, so how noticeable
          could it really be? But, I didn't question it much.
          [color=blue]
          > Definitely try it out, but I would suspect something more fundamental
          > (server resources, network utilization, etc).[/color]

          The slowness is probably caused by my expectations. I'll consider lowering
          them to make things seem faster.
          [color=blue]
          > I actually find
          > component-less upload slightly faster (less overhead), but for our
          > commercial applications we need vendor support as opposed to home-grown
          > code.[/color]

          That is very interesting. Thanks. I'm going to install ASP Upload and time
          some uploads using both now. Thanks.

          Ray at work


          Comment

          • Aaron Bertrand - MVP

            #6
            Re: Buying an upload component

            > The slowness is probably caused by my expectations. I'll consider
            lowering[color=blue]
            > them to make things seem faster.[/color]

            Good plan! I do that all the time. :-)


            Comment

            • Fred Jones

              #7
              Re: Buying an upload component

              In my opinion even the best pure asp file upload solutions are not very
              impressive performance-wise.
              Anyone that tells you different is wrong or does not have enough experience
              in the area of file uploading.

              (pure code vs a component)
              You can flat out see the difference in upload times, speed, and reliability.
              Your site will run much better and your server will thank you.

              Have you ever watched the performance part of task manager when a pure asp
              upload solution is at work compared to how it reacts to using a component ?
              If you do the results are obvious. It will usually max out your processor
              and even for a short burst that is not something you need happening. Now
              watching the performance part if not the most technical way to test things
              but it is an easy way to get a good idea of what is going on for the average
              Joe.

              We have used a lot of the upload components for years and have tried most of
              the pure asp code methods written. There is absolutely no comparison period.

              If you are on a budget and do not really have a lot going on pure asp is
              fine.

              However...

              If you have a busy/serious site a real upload component is a must.
              If you are allowing multiple file uploads a real upload component is a must.
              If you are uploading large files a real upload component is a must.

              As for good components.
              SAFILEUP and ASPUPLOAD are two of the most popular on hosted solutions.
              We have never had a problem with either. They have great documentation and
              samples as well.

              There is a popular free component called DUNDAS which also seems to work
              fine under extended testing.

              An good upload component along with a good emailing component is one of the
              best things you add to ASP functionality.

              I cannot name the companies, but we designed the system for one of the top
              10 image hosting companies on the net. File/Picture uploading is one of our
              most knowledgeable areas.




              "Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in message
              news:uU$Hei%23l DHA.1708@TK2MSF TNGP12.phx.gbl. ..[color=blue][color=green]
              > > The slowness is probably caused by my expectations. I'll consider[/color]
              > lowering[color=green]
              > > them to make things seem faster.[/color]
              >
              > Good plan! I do that all the time. :-)
              >
              >[/color]


              Comment

              • Aaron Bertrand - MVP

                #8
                Re: Buying an upload component

                > In my opinion even the best pure asp file upload solutions are not very[color=blue]
                > impressive performance-wise.
                > Anyone that tells you different is wrong or does not have enough[/color]
                experience[color=blue]
                > in the area of file uploading.[/color]

                ???

                Anyone that makes such a contradictory and blanket statement should spend
                more time testing and less time yapping.


                Comment

                • mePadre

                  #9
                  ASP UPLOAD: Re: Buying an upload component

                  I have been using ASP Upload (Persits) for a number of
                  years and love it. Easy integration and I have not had
                  any complaints about speed or resource robbing (other than
                  the users who wonder why their 10 meg PDF takes a while to
                  send to the server... doh!).

                  Additionally, support has been fantastic. I detected an
                  error in the sendBinary property when using Netscape, sent
                  an email to their support, received a very prompt reply
                  and there was a revision within days.

                  Thumbs up for ASP Upload.

                  [color=blue]
                  >-----Original Message-----
                  >In my opinion even the best pure asp file upload[/color]
                  solutions are not very[color=blue]
                  >impressive performance-wise.
                  >Anyone that tells you different is wrong or does not have[/color]
                  enough experience[color=blue]
                  >in the area of file uploading.
                  >
                  >(pure code vs a component)
                  >You can flat out see the difference in upload times,[/color]
                  speed, and reliability.[color=blue]
                  >Your site will run much better and your server will thank[/color]
                  you.[color=blue]
                  >
                  >Have you ever watched the performance part of task[/color]
                  manager when a pure asp[color=blue]
                  >upload solution is at work compared to how it reacts to[/color]
                  using a component ?[color=blue]
                  >If you do the results are obvious. It will usually max[/color]
                  out your processor[color=blue]
                  >and even for a short burst that is not something you need[/color]
                  happening. Now[color=blue]
                  >watching the performance part if not the most technical[/color]
                  way to test things[color=blue]
                  >but it is an easy way to get a good idea of what is going[/color]
                  on for the average[color=blue]
                  >Joe.
                  >
                  >We have used a lot of the upload components for years and[/color]
                  have tried most of[color=blue]
                  >the pure asp code methods written. There is absolutely no[/color]
                  comparison period.[color=blue]
                  >
                  >If you are on a budget and do not really have a lot going[/color]
                  on pure asp is[color=blue]
                  >fine.
                  >
                  >However...
                  >
                  >If you have a busy/serious site a real upload component[/color]
                  is a must.[color=blue]
                  >If you are allowing multiple file uploads a real upload[/color]
                  component is a must.[color=blue]
                  >If you are uploading large files a real upload component[/color]
                  is a must.[color=blue]
                  >
                  >As for good components.
                  >SAFILEUP and ASPUPLOAD are two of the most popular on[/color]
                  hosted solutions.[color=blue]
                  >We have never had a problem with either. They have great[/color]
                  documentation and[color=blue]
                  >samples as well.
                  >
                  >There is a popular free component called DUNDAS which[/color]
                  also seems to work[color=blue]
                  >fine under extended testing.
                  >
                  >An good upload component along with a good emailing[/color]
                  component is one of the[color=blue]
                  >best things you add to ASP functionality.
                  >
                  >I cannot name the companies, but we designed the system[/color]
                  for one of the top[color=blue]
                  >10 image hosting companies on the net. File/Picture[/color]
                  uploading is one of our[color=blue]
                  >most knowledgeable areas.
                  >
                  >
                  >
                  >
                  >"Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in[/color]
                  message[color=blue]
                  >news:uU$Hei%23 lDHA.1708@TK2MS FTNGP12.phx.gbl ...[color=green][color=darkred]
                  >> > The slowness is probably caused by my expectations.[/color][/color][/color]
                  I'll consider[color=blue][color=green]
                  >> lowering[color=darkred]
                  >> > them to make things seem faster.[/color]
                  >>
                  >> Good plan! I do that all the time. :-)
                  >>
                  >>[/color]
                  >
                  >
                  >.
                  >[/color]

                  Comment

                  • Fred Jones

                    #10
                    Re: Buying an upload component

                    Aaron,

                    Yea, I'm sorry.
                    I obviously have no idea what I am talking about.

                    Truth is, you've got to be smoking some serious shit to be so high on
                    yourself..
                    Ohh.. I forgot you think you own these ASP newsgroups and your word is
                    gospel.
                    Mr. ASPFAQ, Mr. Argue, Mr. I live in the newsgroups

                    What you told him is flat out ignorant and I was trying to give the guy a
                    different perspective on the subject.

                    Even the person that makes the upload script known as "Pure ASP Upload" one
                    of the better running pure script based solutions I might add....sells a
                    component version as well called Huge Upload. Why, well in his words because
                    it can be up to 100 times faster in some situations.

                    Frequently asked questions about ScriptUtilities, Pure-ASP and Huge-ASP upload functionality.

                    Notice this section...

                    "Pure-ASP upload is a VBS script, which uses only default IIS/windows
                    scripting objects - Scripting and ADODB library. So you do not need to
                    install any additional software. But the Pure-VBS code has also
                    Pure-Performance and it is very hungry for system resources - memory and
                    processor resources. The code has one more great characteristic - it is free
                    to use. You can use Pure-ASP upload when
                    - you need upload only small files (up to 100kB, exceptionally 1-2MB)
                    - your provider does not enable to install external components
                    - you have small number of concurrent uploads
                    Huge-ASP upload is a high-performance, low resources C++ component
                    with unique algorithm. The component is designed to accept forms of any size
                    (from bytes to gigabytes) with maximum eficiency. Please use Huge-ASP upload
                    in any other case."


                    Here is some additional info from another sites perspective.


                    Anybody with half a brain knows a good component based upload component can
                    totally outperform a purely script based solution.

                    Fact is...

                    People with attitudes like you have do more harm than good in these
                    newsgroups and discourage a lot of people from even coming back to the
                    newsgroups for assistance. To your credit the ASPFAQ site is a great
                    resource despite how biased you are on certain subjects.





                    "Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in message
                    news:%234pxez$l DHA.2244@TK2MSF TNGP12.phx.gbl. ..[color=blue][color=green]
                    > > In my opinion even the best pure asp file upload solutions are not very
                    > > impressive performance-wise.
                    > > Anyone that tells you different is wrong or does not have enough[/color]
                    > experience[color=green]
                    > > in the area of file uploading.[/color]
                    >
                    > ???
                    >
                    > Anyone that makes such a contradictory and blanket statement should spend
                    > more time testing and less time yapping.
                    >
                    >[/color]


                    Comment

                    • Mike Florio

                      #11
                      Re: Buying an upload component

                      Me too. ASPUpload is simple to use and works great.

                      "Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in message
                      news:%23JISiO%2 3lDHA.2776@tk2m sftngp13.phx.gb l...[color=blue][color=green]
                      > > I despise installing third party software on my workstations or servers.[/color]
                      > It[color=green]
                      > > is for this reason that I use componentless-upload for file uploads.[/color][/color]
                      This[color=blue][color=green]
                      > > is no longer an option, and I have to purchase an upload component.[/color]
                      >
                      > Why is this no longer an option?
                      >[color=green]
                      > > For
                      > > someone who hates third party software and also does not want any kind[/color][/color]
                      of[color=blue][color=green]
                      > > nonsense "bonus" features like progress bars or whatever, can anyone
                      > > recommend a component for me?[/color]
                      >
                      > ASPUpload. We use it here, and it is both reliable and quite scalable.
                      >
                      >[/color]


                      Comment

                      • Jeff Cochran

                        #12
                        Re: Buying an upload component

                        On Tue, 21 Oct 2003 10:06:07 -0400, "Ray at <%=sLocation% >"
                        <myfirstname at lane34 dot com> wrote:
                        [color=blue]
                        >I despise installing third party software on my workstations or servers. It
                        >is for this reason that I use componentless-upload for file uploads. This
                        >is no longer an option, and I have to purchase an upload component. For
                        >someone who hates third party software and also does not want any kind of
                        >nonsense "bonus" features like progress bars or whatever, can anyone
                        >recommend a component for me? The cost doesn't really matter. I am aware
                        >of what components are out there, but I've never used any of them or paid
                        >any attention to them. This'll go on a W2K Server. The first one that
                        >comes to mind is ASP Upload, but only because that's the one I hear about
                        >the most.[/color]

                        We use ASPUpload (and other Persits components) and it works great for
                        us. I'd love to say we did extensive testing and made the best
                        choice, but the price was reasonable and we bought it without doing
                        much more than downloading the tiral and installing it. It worked
                        first shot, so we stopped looking. :)

                        Waiting to see if ASP PDF is as useful for us...

                        Jeff

                        Comment

                        • Fred Jones

                          #13
                          Re: Buying an upload component

                          Aaron,

                          Yea, I'm sorry.
                          I obviously have no idea what I am talking about.

                          Truth is, you've got to be smoking some serious shit to be so high on
                          yourself..
                          Ohh.. I forgot you think you own these ASP newsgroups and your word is
                          gospel.
                          Mr. ASPFAQ, Mr. Argue, Mr. I live in the newsgroups

                          What you told him is flat out ignorant and I was trying to give the guy a
                          different perspective on the subject.

                          Even the person that makes the upload script known as "Pure ASP Upload" one
                          of the better running pure script based solutions I might add....sells a
                          component version as well called Huge Upload. Why, well in his words because
                          it can be up to 100 times faster in some situations.

                          Frequently asked questions about ScriptUtilities, Pure-ASP and Huge-ASP upload functionality.

                          Notice this section...

                          "Pure-ASP upload is a VBS script, which uses only default IIS/windows
                          scripting objects - Scripting and ADODB library. So you do not need to
                          install any additional software. But the Pure-VBS code has also
                          Pure-Performance and it is very hungry for system resources - memory and
                          processor resources. The code has one more great characteristic - it is free
                          to use. You can use Pure-ASP upload when
                          - you need upload only small files (up to 100kB, exceptionally 1-2MB)
                          - your provider does not enable to install external components
                          - you have small number of concurrent uploads
                          Huge-ASP upload is a high-performance, low resources C++ component
                          with unique algorithm. The component is designed to accept forms of any size
                          (from bytes to gigabytes) with maximum eficiency. Please use Huge-ASP upload
                          in any other case."


                          Here is some additional info from another sites perspective.


                          Anybody with half a brain knows a good component based upload component can
                          totally outperform a purely script based solution.

                          Fact is...

                          People with attitudes like you have do more harm than good in these
                          newsgroups and discourage a lot of people from even coming back to the
                          newsgroups for assistance. To your credit the ASPFAQ site is a great
                          resource despite how biased you are on certain subjects.





                          "Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in message
                          news:%234pxez$l DHA.2244@TK2MSF TNGP12.phx.gbl. ..[color=blue][color=green]
                          > > In my opinion even the best pure asp file upload solutions are not very
                          > > impressive performance-wise.
                          > > Anyone that tells you different is wrong or does not have enough[/color]
                          > experience[color=green]
                          > > in the area of file uploading.[/color]
                          >
                          > ???
                          >
                          > Anyone that makes such a contradictory and blanket statement should spend
                          > more time testing and less time yapping.
                          >
                          >[/color]



                          Comment

                          • Fred Jones

                            #14
                            Re: Buying an upload component

                            Aaron,

                            Yea, I'm sorry.
                            I obviously have no idea what I am talking about.

                            Truth is, you've got to be smoking some serious stuffto be so high on
                            yourself..
                            Ohh.. I forgot you think you own these ASP newsgroups and your word is
                            gospel.
                            Mr. ASPFAQ, Mr. Argue, Mr. I live in the newsgroups

                            What you told him is flat out ignorant and I was trying to give the guy a
                            different perspective on the subject.

                            Even the person that makes the upload script known as "Pure ASP Upload" one
                            of the better running pure script based solutions I might add....sells a
                            component version as well called Huge Upload. Why, well in his words because
                            it can be up to 100 times faster in some situations.

                            Frequently asked questions about ScriptUtilities, Pure-ASP and Huge-ASP upload functionality.

                            Notice this section...

                            "Pure-ASP upload is a VBS script, which uses only default IIS/windows
                            scripting objects - Scripting and ADODB library. So you do not need to
                            install any additional software. But the Pure-VBS code has also
                            Pure-Performance and it is very hungry for system resources - memory and
                            processor resources. The code has one more great characteristic - it is free
                            to use. You can use Pure-ASP upload when
                            - you need upload only small files (up to 100kB, exceptionally 1-2MB)
                            - your provider does not enable to install external components
                            - you have small number of concurrent uploads
                            Huge-ASP upload is a high-performance, low resources C++ component
                            with unique algorithm. The component is designed to accept forms of any size
                            (from bytes to gigabytes) with maximum eficiency. Please use Huge-ASP upload
                            in any other case."


                            Here is some additional info from another sites perspective.


                            Anybody with half a brain knows a good component based upload component can
                            totally outperform a purely script based solution.

                            Fact is...

                            People with attitudes like you have do more harm than good in these
                            newsgroups and discourage a lot of people from even coming back to the
                            newsgroups for assistance. To your credit the ASPFAQ site is a great
                            resource despite how biased you are on certain subjects.





                            "Aaron Bertrand - MVP" <aaron@TRASHasp faq.com> wrote in message
                            news:%234pxez$l DHA.2244@TK2MSF TNGP12.phx.gbl. ..[color=blue][color=green]
                            > > In my opinion even the best pure asp file upload solutions are not very
                            > > impressive performance-wise.
                            > > Anyone that tells you different is wrong or does not have enough[/color]
                            > experience[color=green]
                            > > in the area of file uploading.[/color]
                            >
                            > ???
                            >
                            > Anyone that makes such a contradictory and blanket statement should spend
                            > more time testing and less time yapping.
                            >
                            >[/color]




                            Comment

                            • Aaron Bertrand - MVP

                              #15
                              Re: Buying an upload component

                              > it can be up to 100 times faster in some situations.

                              Key words: *can* and *some.*

                              Did I ever say "pure ASP upload will outperform a component in every case?"
                              No, of course not.
                              [color=blue]
                              > People with attitudes like you have do more harm than good in these
                              > newsgroups and discourage a lot of people from even coming back to the
                              > newsgroups for assistance.[/color]

                              How about this for discouraging: blow it out your ass.


                              Comment

                              Working...