Skip to content

Rebex .NET Components

Welcome to our official feedback forum. Do you have an idea? Do you recognize a good idea when you see one? We want to hear from you!

Rebex .NET Components

Categories

37 results found

  1. If you call GetList("/Some/Path/Here/.txt"), the resultant list will contain the file names that match *.txt from the /Some/Path/Here path but, the full path to the file is not included. It can then be difficult to get those files, I have to save and parse the parameter passed to GetList and I have to know how to combine it with a file name. This gets harder when there are multiple operating systems. OpenVMS could be DISK:[Some.Path.Here].txt
    It would be better we we could get the full path as supplied by the operating system.

    13 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  2. 0 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  3. 0 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  4. RAR compression is patented however the patent owner allows adding support for EXTRACTING RAR archives to third party applications. What about adding the UnRAR support to Rebex.ZIP?

    16 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  5. Allow users direct access to socket object to fine tune/alter socket of ftp object. This is beneficial so users don't have to implement their own ISocket class and use the SetSocketFactory function.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  6. 3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  7. Simultaneous transfer : actually limited to 1

    43 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    This doesn’t fit into Rebex FTP/SSL API – the Ftp object represents a single FTP session, and a single FTP session can only transfer a single file or directory listing at a time.

    Instead, we would like to eventually make this possible through a new Download/Upload manager API, so if you are interested in simultaneous transfers, please vote for this: https://rebex.uservoice.com/admin/forums/18155-rebex-net-components/suggestions/256245-download-upload-manager-for-sftp-and-ftp

  8. HTML email editor. Everyone have option to send HTML email, but no one to create it and send.

    2 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  9. 7 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    declined  ·  Tomáš Knopp responded

    Porting our .NET component to Java is not planned, sorry! We are vendor of .NET components and for the time being we want to stick to that. I know that Java is similar to .NET but to have our API the cleanest we prefer to concentrate on .NET and the other .NET platforms such as .NET CF, Mono, Xamarin.iOS/Android/Mac, UWP, etc.

  10. get country, satate , city, flag, timezone info from ip address

    6 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  11. Implement Interfaces on all your public classes so I can mock them with Rhino Mocks. You need to test that your calling Rebex properly, but with unit tests, you dont want to connect to an SMTP, of IMAP server, put an interface on these classes and then you can Mock them and test them properly

    5 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    This is not planned. Sorry!
    If we added those interfaces, users of our API would start using them, and then their code would break whenever we added a new method.
    Instead, create or generate those interfaces yourself, and write wrapper classes around Rebex public classes in addition to the mock classes.

  12. Provide a method for setting a MailMessage's BodyHtml from webpage or file. Something similar to:

    MailMessage message = new MailMessage().
    message.BodyHtml.LoadFrom("http://example.com/page.html ")

    The feature should take HTML, CSS, images from the url and pack it into the message.

    23 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    Even though this would indeed be a very nice feature to have, implementing a HTML and CSS parser would be a huge task which is outside the scope of Rebex Secure Mail. Unfortunately, tihs is not part of our roadmap for the near future. Sorry!

  13. MHT is in fact a MIME format. MIME is already present in the mail component. It would be nice to be able to download a webpage, and save it into one file - similar to what Internet Explorer does.

    1 vote
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    Constructing a MIME tree and saving a webpage in MHT format is the simple part. The hard part that is downloading and processing all the page content. For that, we would need at least a HTML parser and CSS parser. The amount of work required for this would be huge, and we won’t have time for this in the near future. Sorry!

  14. 2 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    1 comment  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  15. 68 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  16. Add support Ident (113 port)

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
  17. It would be great to have a NET RAS component since there is no one around.

    What I need is a simple way to dial-up a remote machine via RAS, connect and download files via FTP (Your component), and finally disconnect. That's all.

    3 votes
    Vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    You have left! (?) (thinking…)
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    .NET Compact Framework platforms are rapidly approaching end-of-life. We still plan to support it , but we won’t be adding new components that only target this platform.

2 Next →
  • Don't see your idea?