Beginner of Beginner getting an errorHi Guys,
I have this script:
#!/usr/bin/perl
# track, find email addresses in emails,
# writes them to /var/opt/ITrootmail/bad/ with a date
# set up as a pipe for procmail or use with Pine
$now = `date`;
# find included email-like addresses
while ($line = <STDIN>) {
if ($line =~ /\b([\w_\-\.]+ at [\w_\-\.]+)\b/) {
# exclude email addresses not needed
(next) if ( $1 =~ /\d{8,}/ );
(next) if ( $1 =~ /postmaster/i );
(next) if ( $1 =~ /DAEMON/i );
...
ext/Socket/Socket.xsIn Socket.xs do I take it that this
if (strEQ(name, "MSG_CTRUNC"))
#if defined(MSG_TRUNC) || defined(HAS_MSG_CTRUNC) /* might be an enum */
return MSG_CTRUNC;
#else
goto not_there;
#endif
should be MSG_CTRUNC? As in:
#if defined(MSG_CTRUNC) || defined(HAS_MSG_CTRUNC) /* might be an enum */
Secondly, Socket.pm EXPORTs MSG_URG, but there is no code to generate it
in Socket.xs. Was this an oversight somewhere?
Nicholas Clark
On Sun, Jun 03, 2001 at 03:03:46PM +0100, Nicholas Clark wrote:
> In Socket.xs do I take it that this
>
> if (strEQ(...
Socket to Socket example neededDoes anyone have any configuration examples of how to set up
a socket to socket connection. I would appeciate any
examples or help anyone can offer. Thanks.
Rob McGinness
Rutland Regional Medical Center
802-747-6526
rmcginness@rrmc.org
I guess that you talk about one AIM module that drives two
socket conections. If you try to build such module, you must
create two protocol objects within the project. Each
protocol object can control its own related objects (frame,
port, open, close, etc.)
> Does anyone have any configuration examples of how to set
> up a socket to socke...
SOCKETHi all!!!
Can any body help me with some information or docs about Sockets with Power
Builder.
I'm Working with PB 6.5, but if you have an example in PB 7 I can use it.
Now I'm waiting for your help.
:-)
If you mean three-tier apps, pb has it's own communication objects
(transport, connection).
If you need something more than that you can use third-party libraries as
OLE objects, because you can't work from pob directly with wsock32.dll.
<CARRADINE> wrote in message
news:1111D847FE7E5A290058E38C85256C75.0058E3D185256C75@webforums...
> Hi all!...
Socket
Dear The Expert,
Where can I find complete articles for implementing windows socket in ASP.NET?
TIA
Winan...
Socket
How to get the ipaddress of the client machine using Socket programing,i want to check which r the pc's r connected to the server using vb.net
any example will be very helpfull for me
thanks in advance
PrasantHI think therefore i'mvPras©
If you're representing the client as a Socket, this class has a RemoteEndPoint Public property that is of type EndPoint. It encapsulates information about the client.
If you're representing the client as a TcpClient, this class has a Protected Client property of type Socket (thus getting to the RemoteEndPoint). Protected meaning you have ...
SocketsDoes anyone have a suggestion for the easiest and best way to implement
sockets in their PB application?
Thanks.
Shenn Sellers
waste.ssellers@co.riverside.ca.us
I use freeware OCX (SocketWrench) from Catalyst (www.catalyst.com)
Wether it is the best implementation I don't know, but it works for me.
Maciek.
Shenn Sellers wrote:
>Does anyone have a suggestion for the easiest and best way to implement
>sockets in their PB application?
>
>Thanks.
>
>Shenn Sellers
>waste.ssellers@co.riverside.ca.us
>
>
>
...
SocketsHi,
Is it possible to make a sockets connection with PB6.5? (and how)
Thanks in advance,
Joe
I think this is what you're looking for
http://www.teamsybase.com/roy.kiesler/downloads/wininet.zip
HTH
Arnoud
Url: http://www.gloriant.be
<Joe> wrote in message
news:7F08A3D1FC072C7E003E028585256CC2.003E029385256CC2@webforums...
> Hi,
>
> Is it possible to make a sockets connection with PB6.5? (and how)
>
>
> Thanks in advance,
> Joe
>
WinInet cannot be used for raw socket connection -- it is a simple wrapper
for FTP/HTTP/Gop...
SocketsIs it possible to connect to Sybase ASE using Unix domain sockets
instead of TCP/IP?
Paul Ryland
dpar2@cam.ac.uk
Davin Yap wrote:
>
> Is it possible to connect to Sybase ASE using Unix domain sockets
> instead of TCP/IP?
Not that I know of.
Michael
--
Michael Peppler -||- Data Migrations Inc.
mpeppler@peppler.org -||- http://www.mbay.net/~mpeppler
Int. Sybase User Group -||- http://www.isug.com
Sybase on Linux mailing list: ase-linux-list@isug.com
This is a cryptographically signed message in MIME format.
--------------msA85E21818DD8367FB19...
socketsI'll be simple. I would like Java style Sockets, and Server Sockets.
So I can write pb apps to connect/interface/serve directly to other apps
based on TCP/IP. Without having to resort to going to third party controls.
I would also like my EAServer course not to be posponed for another two
months because noone apart from myself wants to go. I've been booked in
since Nov last year, and still noone in Sydney wants to go. I've been told
that they won't even consider a one-one training session, I think that says
quite a lot about why there is a sheer lack of interest i...
socket.------=_NextPart_000_06EB_01C3BF4D.037FCCC0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
I have installed DBI-1.19, and trying to use radiator radius server to =
call an MySQL query using DBI. I am getting the following error. My =
actual socket is under /etc.
I guess this error originates from the DBI. The install was perfect.
Deen
Wed Dec 10 18:29:47 2003: DEBUG: Handling request with Handler
'Realm=3DDEFAULT'
Wed Dec 10 18:29:47 2003: DEBUG: Deleting session for mikem,
203.63.154.1, 1234
Wed Dec 10 ...
About socketsMay be this das not belong hire but I need to know.
How can I determent that the packet was realy sent and received?
How to disconect socket when there is no function for disconect?
Milan,
there is no way to see what is transmitted on the socket without doing
hardward sniffing. as for closing the connection check out the property
SocketReuseLimit. If you set that to 1 then it will close the connection
after every call.
--
Scott McReynolds
Engineering Manager
<Milan> wrote in message
news:CCF158963E252705001EB0DD85256BEC.001EB0EA85256BEC@webforums...
> May be th...
SocketsPB8.0
W2K
What do people use to implement sockets in PB?
Nathan
I just use the API functions.
On Tue, 31 Dec 2002 11:02:34 -0600, NP <tarsi@no-see-evil.binhost.com>
wrote:
>PB8.0
>W2K
>
>What do people use to implement sockets in PB?
>
>Nathan
Bruce Armstrong [TeamSybase]
http://www.teamsybase.com
Not 1 - but 2 new books on developing with PowerBuilder
http://www.pb9books.com
Which can now be pre-ordered through Amazon.com
http://www.amazon.com/exec/obidos/tg/detail/-/0672325004
http://www.amazon.com/exec/obidos/tg/detail/-/0672324997...