Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 372327
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T14:12:00+00:00 2026-05-12T14:12:00+00:00

I had a problem when trying to connect and upload a file to an

  • 0

I had a problem when trying to connect and upload a file to an FTP server.

Here’s my code:

#include <windows.h>
#include <wininet.h>
#pragma comment(lib, "wininet.lib")

int main()
{
    HINTERNET hInternet = InternetOpen(NULL, INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
    HINTERNET hFtpSession = InternetConnect(hInternet, L"myserver.com", INTERNET_DEFAULT_FTP_PORT, L"user", L"pass", INTERNET_SERVICE_FTP, 0, 0);

    if(FtpPutFile(hFtpSession, L"file.txt", L"file.txt", FTP_TRANSFER_TYPE_BINARY, 0))
    {
        MessageBox(NULL, L"Upload Complete", L"OK", 0);
    }
    else
    {
        MessageBox(NULL, L"Upload Failed", L"OK", 0);
    }

    InternetCloseHandle(hFtpSession);
    InternetCloseHandle(hInternet);
    return 0;
}

and the error:

svDialog.obj : error LNK2005: "void * hFtpSession" (?hFtpSession@@3PAXA) already defined in MainDlg.obj
svDialog.obj : error LNK2005: "void * hInternet" (?hInternet@@3PAXA) already defined in MainDlg.obj

am I doing wrong?

(the above code is just a simplified representation of my real program using wxWidgets and Multithreading)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T14:12:00+00:00Added an answer on May 12, 2026 at 2:12 pm

    There is nothing wrong with code you’ve posted. Linker error refers to redefined symbol – you have two same variables in global namespace, in two different object files (svDialog and MainDlg).

    Try not to use global variables; and if you have to, and you have

    HINTERNET hFtpSession;
    HINTERNET hInternet;
    

    in one of your headers, then prepend extern, i.e. extern HINTERNET hFtpSesssion; extern HINTERNET hInternet;.

    If not, and svDialog‘s hFtpSession and hInternet are completely different variables, rename them in one of those files (or try anonymous namespace).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I had an odd problem today when I was trying to serialize an object.
I recently had a problem during the deployment of a windows service. Four computers
I am trying to connect to a piece of hardware via TCP/IP. I had
I am trying to connect to oracle server located at some IP address but
I'm trying to deploy an application to Tomcat 7 on a Windows server. I
I'm running Windows, having installed IIS 7.5, PHP 5.3 (FastCGI). Trying to connect to
I had a problem that was partially solved. To explain it quickly : I
I had a problem with committing changes after merging two branches of my project
I've had this problem many times before, and I've never had a solution I
I recently had a problem in my app where some of the subviews I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.