What Does It Mean to Solicit Proxies? Definitions, Voting Protocols, and Technical Request Mechanisms [2026]
What Does It Mean to Solicit Proxies? [2025 Expert Guide]
The phrase "solicit proxies" is a term that bridges the gap between high-stakes corporate governance and technical network architecture. Depending on whether you are reading an SEC filing or configuring a web scraping bot, the definition shifts significantly.
As a proxy expert, I will break down both meanings—the formal corporate definition and the technical network implication—so you can understand exactly how solicitation works in both worlds.
---
Part 1: The Corporate and Legal Definition (Primary Usage)
In the business and legal world, "soliciting proxies" is a strictly regulated activity. It occurs most often during the "proxy season" (typically leading up to Annual Shareholder Meetings).
The Core Concept
A proxy in this context is a legal document that authorizes another person (the "proxy holder") to vote on behalf of a shareholder.
Solicitation happens when a company's management, a dissident shareholder group, or an activist investor *asks* you to sign that document and give them your vote.
According to the Securities Exchange Act of 1934, the definition of solicitation is extremely broad. It includes:
- Direct Requests: Sending a proxy card by mail or email asking for a vote.
- Indirect Actions: Publishing an advertisement or website that urges shareholders to vote a certain way.
- Informational Statements: Providing a "Fact Sheet" that explains why you should vote for or against a board nominee.
Why Do Companies Solicit Proxies?
The most common reason is the Quorum. Most corporate bylaws require a certain percentage of outstanding shares to be represented (either in person or by proxy) before a meeting can legally begin. If shareholders don't return their proxy cards, the meeting cannot happen, and decisions cannot be made.
The Mechanics of a Proxy Fight
When you hear about a "Proxy Fight" on the news, what is actually happening is a Competitive Solicitation.
1. The Incumbent Board: The current management team sends out a Proxy Statement (DEF 14A). They "solicit" you to vote for their proposed directors and executive pay packages. 2. The Dissident Group: An activist investor (like Elliott Management or Carl Icahn) creates their own proxy card and solicits you to vote *against* the current board.
The side that successfully solicits more proxies (votes) wins control of the company.
SEC Rule 14a-1(l)
From a legal compliance standpoint, understanding Rule 14a-1(l) is vital. It defines solicitation to include: > "Any request for a proxy... or any communication... under circumstances reasonably calculated to result in the procurement, withholding or revocation of a proxy."
This means that even a casual tweet or blog post by a CEO discussing the upcoming vote can legally be considered "soliciting a proxy."
---
Part 2: The Technical and Network Definition (Secondary Usage)
While less common in formal English, in the world of cybersecurity, ethical hacking, and web scraping, "soliciting proxies" can describe the interaction between a client and a proxy server.
The Technical Mechanism
Technically, solicitation is the active request for an intermediary service.
1. The Client (You): Your computer or script initiates a connection to a Proxy Server. 2. The Solicitation: By sending the initial CONNECT or GET request, you are soliciting the proxy to act on your behalf. 3. The Proxy: Receives the solicitation, evaluates if it is authorized (IP whitelisting, authentication), and then forwards the request to the Target Server.
Solicitation in Proxy Discovery
In the context of finding open proxies (usually for security testing), "soliciting" can refer to Port Scanning.
Security researchers might scan ranges of IP addresses, "soliciting" a response from open ports (like 8080, 3128, or 1080) to see if a proxy service is running there. If the server responds with a valid HTTP handshake, the solicitation was successful, and a proxy has been discovered.
Warning: Soliciting unauthorized proxy servers (using open proxies without permission) is illegal in many jurisdictions and violates terms of service. Always use legitimate residential or datacenter proxy providers.
---
Comparison: Corporate vs. Technical Solicitation
| Feature | Corporate Solicitation | Technical Solicitation | | :--- | :--- | :--- | | Primary Actor | Board of Directors or Activist Group | Client Script (Bot/Scraper) | | The Target | Shareholders | Proxy Server (Gateway) | | The Goal | To acquire voting rights | To acquire anonymity or geolocation | | The Document | Proxy Card (Form DEF 14A) | HTTP Request (CONNECT / GET) | | Regulation | SEC (Securities and Exchange Commission) | IT Policy / Network Protocols (HTTP/SOCKS) |
---
Real-World Examples
Example A: The Corporate Proxy Solicitation
Scenario: You own 100 shares of Apple Inc. (AAPL). 1. You receive an email with the subject: "Vote your shares at the Annual Meeting." 2. Inside is a link to a website managed by Broadridge, a third-party proxy solicitation firm. 3. You log in and click "Vote For All Proposals." 4. Analysis: Apple has successfully solicited your proxy. They have your authorization to vote your 100 shares exactly how they want, even if you don't attend the meeting.
Example B: The Technical Solicitation (Python)
In web scraping, we do not usually say "I am soliciting a proxy," but we program our scripts to do exactly that.
Here is a Python snippet using requests that effectively solicits a proxy for a connection:
import requests
The target we want to reach via the proxy
target_url = 'https://httpbin.org/ip'
The proxy server we are soliciting to help us
proxy_details = { 'http': 'http://192.168.1.10:8080', 'https': 'http://192.168.1.10:8080' }
try: # The code below sends a request (solicitation) to the Proxy response = requests.get(target_url, proxies=proxy_details, timeout=5)
# If the proxy accepts our solicitation, it returns the response print(f"Status Code: {response.status_code}") print(f"Response Body: {response.json()}")
except requests.exceptions.ProxyError: print("The solicitation was rejected (Connection refused by Proxy)")
In this code:
requests.get is the act of solicitation.---
How to Respond to Proxy Solicitation
If you are a retail investor receiving solicitations:
1. Verify the Source: Ensure the solicitation is coming from the company's registered transfer agent or proxy solicitor (like Broadridge or Computershare). 2. Read the Proxy Statement (DEF 14A): Before granting your proxy (voting power), read the statement. It outlines executive compensation and board members. 3. Vote Your Conscience: You do not have to follow the management's recommendations. You can solicit your own vote by voting against specific proposals if you disagree with them.
Summary
To solicit proxies is to actively ask for the authority to act on behalf of another.
Understanding the context is key. If you are in a boardroom, it's about votes. If you are in a server room, it's about network routing.