Re: [twsocket] ICS V7 and the missing ''DesignIntf.dcu''

2008-03-17 Thread Kris Schoofs
Sorry. That was a typo. It's actually ICS V6 (the site mentions ICS V6 for
Delphi 7) and I accidentally typed V7.

Kris

On Mon, Mar 17, 2008 at 2:09 AM, Éric Fleming Bonilha [EMAIL PROTECTED]
wrote:

 When do ICS V7 was released?? Where can I download

 Éric
  - Original Message -
 From: Kris Schoofs [EMAIL PROTECTED]
 To: ICS support mailing twsocket@elists.org
 Sent: Saturday, March 15, 2008 4:23 PM
 Subject: [twsocket] ICS V7 and the missing ''DesignIntf.dcu''


  Hi,
 
  I'm attempting to install ICS V7 using Codegear C++ Builder 2007.
 However,
  I
  run into following error:
 
  [DCC Error] OverByteIcsWSocketE.pas(87): F1026 File not found: '
  DesignIntf.dcu'
 
  A search for a solution gave me this:
  You need to add -LUDesigneIde to the dcc32 command line options.
 
  Unfortunately, I haven't got a clue where and how to enter this in the
 C++
  builder 2007
 
  Additionally, the readme of an older ICS gave me this:
 
  From the main IDE menu select Project|Edit Option Source
  to edit the project options. In the entry for PFLAGS add
  the -LUvcl50 option. For example:
  PFLAGS value=-$YD -$W -$O- -v -JPHNE -M -LUvcl50/
  If you use BCB6, use 60 instead of 50 in the above explanations.
 
  Again, I don't know where to enter this and furthermore this description
  talks about an older C++ builder version (not 2007 where the project
  options
  apparently have been reorganized as compared to older versions).
 
  Undoubtedly, this is all very simple but at this point I'm completely
  clueless. So, any suggestions are much appreciated.
 
  Thanks,
 
  Kris
   --
  To unsubscribe or change your settings for TWSocket mailing list
  please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
  Visit our website at http://www.overbyte.be

 --
 To unsubscribe or change your settings for TWSocket mailing list
 please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
 Visit our website at http://www.overbyte.be

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] Upgrade to V6 and linker errors (unresolved externals)

2008-03-17 Thread Kris Schoofs
Hi,

I'm busy attempting to port my current projects from ICS V5 to ICS V6.
However, I've run into a problem that I can't handle myself.

When I compile my project that contains a simple TCP server (code based on
the ICS5 TCP server sample), I run into following linker errors:

[ILINK32 Error] Error: Unresolved external '__fastcall
Overbyteicswsocket::TCustomWSocket::Send(void * const, int)'...
[ILINK32 Error] Error: Unresolved external '__fastcall
Overbyteicswsocket::TCustomWSocket::SendTo(const sockaddr_in, int, void *
const, int)'...

I managed the locate the line of code that is triggering this error:

TcpServer-ClientClass=__classid(TTcpSrvClient);

Does anyone know how I can avoid this error ? Below a very small code
sample, stripped to its bare minimum and that still reproduces the above
mentioned problem.

Suggestions are very much appreciated.

Regards,

Kris


** HEADER FILE
#include OverbyteIcsWSocket.hpp
#include OverbyteIcsWSocketS.hpp
class TTcpSrvClient : public TWSocketClient
{
public:
 __fastcall TTcpSrvClient(TComponent* Owner);
};
// -
class TForm1 : public TForm
{
 TWSocketServer *TcpServer;
};

** CPP file
void __fastcall TForm1::Button1Click(TObject *Sender)
{
 TcpServer=new TWSocketServer(NULL);
 // The line below triggers the linker errors
 TcpServer-ClientClass=__classid(TTcpSrvClient); // Use separate client
instance for each connection
...
 TcpServer-Listen();
}
// -
__fastcall TTcpSrvClient::TTcpSrvClient(TComponent* Owner):
TWSocketClient(Owner)
{
}
// -
-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


[twsocket] Proxy server Example

2008-03-17 Thread wayne forrest
Can any one please help, I am looking for an
example of a Proxy Server.

My idea is this, I want to intercept requests and add request properties
and forward the requests on behalf of the clients.

not even sure if this is possible.

thank you.
-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be


Re: [twsocket] Proxy server Example

2008-03-17 Thread Wilfried Mestdagh
Hello wayne,

 example of a Proxy Server.

there are at least 2 examples you can find in the user made page, that
is SocketSpy and GpHttpProxy.

---
Rgds, Wilfried [TeamICS]
http://www.overbyte.be/eng/overbyte/teamics.html
http://www.mestdagh.biz

-- 
To unsubscribe or change your settings for TWSocket mailing list
please goto http://lists.elists.org/cgi-bin/mailman/listinfo/twsocket
Visit our website at http://www.overbyte.be