Thread: Standard HTTP Characters :: Winsock

  1. #1
    Registered User
    Join Date
    Nov 2001
    Posts
    1,348

    Standard HTTP Characters :: Winsock

    Hi.

    I am working with HTTP 1.1. I would like to know what other characters such as alpha and punctuactions are allowed for a given URL?

    For example:

    // Valid
    http://www.oiahsdifh.com/aoihsdofhad...f/theFile.file

    // Is this valid?
    www.oiahsdifh.com/aoihsdofhad!jalsdif{joihasdf/theFile|file

    The project deals with HTTP and websites links. Thus, I need to know the standard and pattern to which servers and clients communicate.

    Thanks,
    Kuphryn

  2. #2
    I lurk
    Join Date
    Aug 2002
    Posts
    1,361
    Try checking out the HTTP RFC, it's the first on the list when searched for @ google.

    I'd say any valid filename is valid, but you really should escape special characters (e.g. ' ' becomes %20)

  3. #3
    Registered User
    Join Date
    Nov 2001
    Posts
    1,348
    Okay. Thanks.

    Kuphryn

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. HTTP get with winsock on rapidshare links???
    By Anddos in forum C++ Programming
    Replies: 1
    Last Post: 05-25-2009, 03:21 PM
  2. Error stop Http Listener
    By George2 in forum C# Programming
    Replies: 1
    Last Post: 06-04-2008, 02:14 AM
  3. Winsock Messaging Program
    By Morgul in forum Windows Programming
    Replies: 13
    Last Post: 04-25-2005, 04:00 PM
  4. Where do I initialize Winsock and catch messages for it?
    By Lithorien in forum Windows Programming
    Replies: 10
    Last Post: 12-30-2004, 12:11 PM
  5. winsock
    By pode in forum Networking/Device Communication
    Replies: 2
    Last Post: 09-26-2003, 12:45 AM