You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(4) |
Aug
|
Sep
|
Oct
(5) |
Nov
(7) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
(2) |
Mar
(3) |
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(18) |
Dec
(25) |
2006 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2007 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
(4) |
Feb
(6) |
Mar
|
Apr
|
May
|
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Gene B. <ge...@de...> - 2009-03-30 16:45:15
|
In compiling the d3client program, I get two compiler warnings: WARNING: SKT$STREAM is not assigned a value WARNING: SKT$TCP is not assigned a value These two variables are used on line 168 of d3client: sock = CREATE.SERVER.SOCKET("", listen.port,SKT$STREAM + SKT$TCP) They're defined in the commercial version of QM, but not the GPL version of OpenQM. I've added them to the keys.h file in SYSCOM, but I don't know if that's all that is required. I'll need to check the C source to make sure it's handled properly there as well. I'll post more when I've had a chance to examine the C code. g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. OpenQM - A Multi-Value database for the masses, not the classes. http://gpl.openqm.com - Get it _today_! |
From: Jose E. S. <sua...@gv...> - 2008-06-25 07:33:26
|
In the client side, i ´ve two type of connecion : CONNECTION_TCP and CONNECTION_TCP_PROXY. CONNECTION_TCP runs, but CONNECTION_TCP_PROXY not... El 24/06/2008, a las 15:04, Cedric Fontaine escribió: > You can try to tandem on the jd3 server line and see what happens. > You can run either jd3 in verbose mode I see in the docs.. For debugging : you can "tandem" on the phantom line to see the message print by the subroutine or start a tread with the -d option but the debug mode only says.. :d3server -d Serveur started on pid 0 Starting 2 threads... One thread started on port 30000 Starting child with D3Client -port 30000 -s 0 -d One thread started on port 30001 Starting child with D3Client -port 30001 -s 0 -d Server ready on port 20002 New connection from 192.168.10.226 Connection client on 30000 I´ve reading the code i see this: (d3server line 287) *------------------------------------------------------------ * Send the number of port to the client, if we got one *------------------------------------------------------------ if next.port # "" then if next.port < 0 then buffer = "-":oconv(abs(next.port),"mr%7") end else buffer = oconv(next.port,'mr%8') end if debug then print "Connection client on ":next.port %send(fd, buffer, 8 ,0) end if UnixHost then %close(fd) end else %closesocket(fd) end well... this mean that the protocol closes the connection(therefore runs correctly), sending first the new port to continue talking with the client... but in the client side don´t respect this behaviour? Reading the client side, I see that the ptype variable store the integer 2,this is the CONNECTION_TCP_PROXY value...but the client side dont´t manages this parameter class D3Connection: [...] def __initTcp(self): newport = self.__port sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM) # Try to get the port number of a D3Client if self.__type == CONNECTION_TCP : try: sock.connect((self.__server,newport)) buf = sock.recv(8) newport = int(buf) + 0 sock.close() except: print "Connection error to main server " + self.__server + ":%i" % newport return(D3_ERR) self.__port = newport try: sock = socket.socket(socket.AF_INET,socket.SOCK_STREAM) sock.connect((self.__server,newport)) self.__socket = sock except: print "Connection error to D3Client " + self.__server + ": %i" % newport return(D3_ERR) return(D3_OK) [...] What is the difference between CONNECTION_TCP and CONNECTION_TCP_PROXY? Jose Ernesto Suarez UPV- PoLinuX http://www.polinux.upv.es |
From: Jose E. S. <sua...@gv...> - 2008-06-24 10:38:12
|
I´m trying to run the jd3 python module,but i get a RST in the connection from the server side...this is the data captured with tcpdump Firstly, i´m trying to log in... 0000 00 01 02 03 04 10 00 16 3e 6d fb 2d 08 00 45 00 ........>m.-..E. 0010 00 47 fe 3b 40 00 40 06 a5 fa c0 a8 0a e2 c0 a8 .G.;@.@......... 0020 0a 48 95 f7 4e 22 f2 6b 00 a7 ff 9c f9 91 80 18 .H..N".k........ 0030 00 2e 96 b4 00 00 01 01 08 0a 25 1c fe 9f 11 b2 ..........%..... 0040 14 61<-----Packet headers... data---------- >30 30 30 30 30 30 31 31 31 01 73 79 73 70 .a000000111.sysp 0050 72 6f 67 01 01 rog.. ...the server sends the response 0000 00 16 3e 6d fb 2d 00 01 02 03 04 10 08 00 45 00 ..>m.-........E. 0010 00 3c ed f0 40 00 40 06 b6 50 c0 a8 0a 48 c0 a8 .<..@.@..P...H.. 0020 0a e2 4e 22 95 f7 ff 9c f9 91 f2 6b 00 a7 80 18 ..N".......k.... 0030 01 6a 03 da 00 00 01 01 08 0a 11 b2 14 61 25 1c .j...........a%. 0040 fe 9f<-----Packet headers... data---------- >30 30 30 33 30 30 30 30 ..00030000 and secondly,the server closes the connection sending me a RST I´m using the sysprog credentials with no password.In some(rare) cases the server accepts the connection...moreover, the checksum 0030 0x96b4 should be 0030 0x11b1, but i think that this isn´t relevant Have someone any idea? Jose Ernesto Suarez UPV- PoLinuX http://www.polinux.upv.es |
From: Frank E. <Fra...@ba...> - 2008-06-13 01:36:41
|
I sent this message almost five years ago. Curious if there is anyone has ported to Unidata since I sent the last email? Frank E. Eperjesi (714) 998-6600 x205 Fr...@ba... > Hi: > > I have been following jd3 for a couple of years for possible use in some > Non-persistent Web programs I have been playing with. > > I found a number of good persistent telnet based applications, but jd3 seems > like a good one for Non-persistent use. > > What stopped me is I am not a great system programmer and the majority of my > client's are on Unidata. > > Is there a Unidata version of the host code anywhere? I am sure Unidata > supports all the same functions but obviously the syntax is different. > > Thanks, > > Frank E. Eperjesi > > (714) 998-6600 x205 > Fr...@ba... -----Original Message----- From: Christophe Marchal [mailto:mcc...@ya...] Sent: Tuesday, November 04, 2003 12:33 PM To: jd3...@li... Subject: Re: [Jd3-devel] Any Unidata users out there? Hi, I'm sorry, but I don't know if anyone has translated jd3 to unidata basic. I come from D3 which is well known to offer minimum connectivity, and I wanted to get data from D3 to my Java program so I had to do this work myself (thanks to Bryan B. for his help :-). But I know that unidata/universe have a lot of possibility to connect themselves to any langage. Maybe some "native" tools could suite better than jd3... depends on which langage you plan to work. Myabe I'll get some times to port jd3, but it is not sure. If some one want to try... --- Frank Eperjesi <fr...@ba...> a écrit : > Hi: > > I have been following jd3 for a couple of years for possible use in some > Non-persistent Web programs I have been playing with. > > I found a number of good persistent telnet based applications, but jd3 seems > like a good one for Non-persistent use. > > What stopped me is I am not a great system programmer and the majority of my > client's are on Unidata. > > Is there a Unidata version of the host code anywhere? I am sure Unidata > supports all the same functions but obviously the syntax is different. > > Thanks, > > Frank E. Eperjesi > > (714) 998-6600 x205 > Fr...@ba... > > ___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Jd3-devel mailing list Jd3...@li... https://lists.sourceforge.net/lists/listinfo/jd3-devel |
From: Cedric F. <cfo...@sp...> - 2008-06-13 01:08:40
|
Jose Ernesto Suarez wrote: > In the D3Item Class i found > > def replace(self,newval,am = 0, vm = 0, svm = 0): > if am == 0: > return > > if vm == 0: > svm == 0 <---------posible error > [...] > > I think that this statement would say anything like this: > > def replace(self,newval,am = 0, vm = 0, svm = 0): > if am == 0: > return > > if vm == 0: > svm = 0 <---------posible correction > > Is correct? I ll correctit and but a new release. jd3 is a great product we re using it in production environment. We re also working on a port to OpenQM -- Cordialement, Cedric Fontaine www.terroirsquebec.com & blogs www.terroirsquebec.com/blog www.ste-catherine.ca/maville &twit www.twitter.com/CedricFontaine |
From: Christophe M. <mcc...@ya...> - 2008-06-10 12:09:21
|
Hi everyone, Didn't know there was still someone reading this list ^-^ I had somes problems with my sourceforge account, so I wasn't able to manage the list. This "bug" is a really true one. Usual newbie mistake... And for your question about any documentation, I'm sorry to say that there is no one else the code itself. The JD3 library is a two components library who comunicate through network connection, talking the same langage. So if you've got the server one (i'm sure you did), it contains a protocol.txt that explain ... the protocol between client and server components. All you have to make a ruby client is to establish a network communication with an existing D3 server and talk to him using this protocol. The class hierarchy is yours, as the translation of a D3String with separator to a ruby object. You don't have to respect the same as PHP or Python that we wrote earlier, it surly must exist à more rubish way to do it ;) I don't know ruby, so I could not really help you. But you can ask any question here, I'll always try to do my best. Regards, Christophe ----- Message d'origine ---- De : Jose Ernesto Suarez <sua...@gv...> À : jd3...@li... Envoyé le : Mardi, 10 Juin 2008, 10h44mn 33s Objet : [Jd3-devel] Possible error in D3.py code In the D3Item Class i found def replace(self,newval,am = 0, vm = 0, svm = 0): if am == 0: return if vm == 0: svm == 0 <---------posible error [...] I think that this statement would say anything like this: def replace(self,newval,am = 0, vm = 0, svm = 0): if am == 0: return if vm == 0: svm = 0 <---------posible correction Is correct? ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ Jd3-devel mailing list Jd3...@li... https://lists.sourceforge.net/lists/listinfo/jd3-devel _____________________________________________________________________________ Envoyez avec Yahoo! Mail. Une boite mail plus intelligente http://mail.yahoo.fr |
From: Jose E. S. <sua...@gv...> - 2008-06-10 08:44:57
|
In the D3Item Class i found def replace(self,newval,am = 0, vm = 0, svm = 0): if am == 0: return if vm == 0: svm == 0 <---------posible error [...] I think that this statement would say anything like this: def replace(self,newval,am = 0, vm = 0, svm = 0): if am == 0: return if vm == 0: svm = 0 <---------posible correction Is correct? |
From: Dominique d. <dom...@oo...> - 2008-06-09 07:34:08
|
Hi Jose, We are using JD3 with our D3 system to provide integration adapter type capabilities with our Oracle ESB. Unfortunately we haven't found any other documentation. Good luck bloke! Dominique -----Original Message----- From: jd3...@li... [mailto:jd3...@li...] On Behalf Of Jose Ernesto Suarez Sent: 06 June 2008 13:39 To: jd3...@li... Subject: [Jd3-devel] Ruby Bindings It´s the mail-list alive? i´m new user in the d3 environment and i would like to help in the deployment for ruby bindings...¿has any other documentation aside the sourceforge documentation category? Best Regards, --- Jose Ernesto Suarez ETSIA - PoLinuX http://www.polinux.upv.es ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ Jd3-devel mailing list Jd3...@li... https://lists.sourceforge.net/lists/listinfo/jd3-devel |
From: Jose E. S. <sua...@gv...> - 2008-06-06 11:39:46
|
It´s the mail-list alive? i´m new user in the d3 environment and i would like to help in the deployment for ruby bindings...¿has any other documentation aside the sourceforge documentation category? Best Regards, --- Jose Ernesto Suarez ETSIA - PoLinuX http://www.polinux.upv.es |
From: Christophe M. <mcc...@ya...> - 2008-02-06 19:17:07
|
That's really strange that some d3client can start normaly and other can't. Maybe you can modify the D3client to add somme debug info to see where it get trouble. You have to write this debug info in a file on a record per pick line, because you can't get tandem on each one. The other problem comes from the network port that are not always release correctly, even if you logoff the phantom line. Sorry, can't help more. ----- Message d'origine ---- De : Gene Buckle <ge...@de...> À : Christophe Marchal <mcc...@ya...> Cc : jd3...@li... Envoyé le : Mercredi, 6 Février 2008, 17h32mn 41s Objet : Re: [Jd3-devel] Re : client startup problem... > We've also some problems with phantom, not only with jd3 but also with > flashconnect (rainning data's product). > And I know that rainning data has added a new "features" : every network > connection (in or out) consume a licence. Not only a phantom licence, > but a "user" one. So, my first gess is to check this. That's not the case. I've got plenty of seats on both sides. I'm also using 7.4.0. (I can't update to 7.5.3 until the assembler modes for Screen Gen & Vision are updated) > What else ? Really, I don't know. If the d3server start one child, > that's > working. So why not another child ? Maybe you can check the "list-jobs" > tcl command, it will show you all phantom even each "pending" or > "waiting" > something to start (like a free licence ). Thanks for the tip. The status column is chock full of "error". *sigh* Of course the documentation doesn't mention what "error" is (or at all!). g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. _____________________________________________________________________________ Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail http://mail.yahoo.fr |
From: Gene B. <ge...@de...> - 2008-02-06 16:32:53
|
> We've also some problems with phantom, not only with jd3 but also with > flashconnect (rainning data's product). > And I know that rainning data has added a new "features" : every network > connection (in or out) consume a licence. Not only a phantom licence, > but a "user" one. So, my first gess is to check this. That's not the case. I've got plenty of seats on both sides. I'm also using 7.4.0. (I can't update to 7.5.3 until the assembler modes for Screen Gen & Vision are updated) > What else ? Really, I don't know. If the d3server start one child, > that's > working. So why not another child ? Maybe you can check the "list-jobs" > tcl command, it will show you all phantom even each "pending" or > "waiting" > something to start (like a free licence ). Thanks for the tip. The status column is chock full of "error". *sigh* Of course the documentation doesn't mention what "error" is (or at all!). g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. |
From: Christophe M. <mcc...@ya...> - 2008-02-06 07:00:44
|
We've also some problems with phantom, not only with jd3 but also with flashconnect (rainning data's product). And I know that rainning data has added a new "features" : every network connection (in or out) consume a licence. Not only a phantom licence, but a "user" one. So, my first gess is to check this. What else ? Really, I don't know. If the d3server start one child, that's working. So why not another child ? Maybe you can check the "list-jobs" tcl command, it will show you all phantom even each "pending" or "waiting" something to start (like a free licence ). Christophe ----- Message d'origine ---- De : Gene Buckle <ge...@de...> À : jd3...@li... Envoyé le : Mardi, 5 Février 2008, 19h49mn 34s Objet : [Jd3-devel] client startup problem... I've got a weird one for you folks... I execute the server with: j-startup -c 5 j-status returns: PID Port Status Startup Date/Time From IP Last Server Status : 224 20002 Waiting 09:59:41 02/05/08 09:59:42 02/05/08 Child Status : ( I snipped some of the title text and the "---" lines) As you can see, no child is apparent. Connection attempts result in an error. When I start it using d3server -c 5, I get this: Starting 5 Child Processes. Starting child with D3Client -port 30000 -s 20 Starting child with D3Client -port 30001 -s 20 Starting child with D3Client -port 30002 -s 20 Starting child with D3Client -port 30003 -s 20 Starting child with D3Client -port 30004 -s 20 and j-status reports: PID Port Status Startup Date/Time From IP Last Server Status : 20 20002 Waiting 10:01:19 02/05/08 10:01:20 Child Status : 224 30000 Waiting 10:01:20 02/05/08 10:01:20 226 30001 Waiting 10:01:20 02/05/08 10:01:20 Apparently, Its only starting 2 children instead of the 5 specified. I've mostly seen it only spawn 1 child when 5 were specified. I've got my system configured to accomodate 100 phantom processes (nphts = 100) and I've got plenty of licenses for phantoms (6 used out of 130 allowed) I'm kind of in a time crunch with this, so any help will be greatly appriciated! Thanks all! g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jd3-devel mailing list Jd3...@li... https://lists.sourceforge.net/lists/listinfo/jd3-devel _____________________________________________________________________________ Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail http://mail.yahoo.fr |
From: Gene B. <ge...@de...> - 2008-02-05 18:50:01
|
I've got a weird one for you folks... I execute the server with: j-startup -c 5 j-status returns: PID Port Status Startup Date/Time From IP Last Server Status : 224 20002 Waiting 09:59:41 02/05/08 09:59:42 02/05/08 Child Status : ( I snipped some of the title text and the "---" lines) As you can see, no child is apparent. Connection attempts result in an error. When I start it using d3server -c 5, I get this: Starting 5 Child Processes. Starting child with D3Client -port 30000 -s 20 Starting child with D3Client -port 30001 -s 20 Starting child with D3Client -port 30002 -s 20 Starting child with D3Client -port 30003 -s 20 Starting child with D3Client -port 30004 -s 20 and j-status reports: PID Port Status Startup Date/Time From IP Last Server Status : 20 20002 Waiting 10:01:19 02/05/08 10:01:20 Child Status : 224 30000 Waiting 10:01:20 02/05/08 10:01:20 226 30001 Waiting 10:01:20 02/05/08 10:01:20 Apparently, Its only starting 2 children instead of the 5 specified. I've mostly seen it only spawn 1 child when 5 were specified. I've got my system configured to accomodate 100 phantom processes (nphts = 100) and I've got plenty of licenses for phantoms (6 used out of 130 allowed) I'm kind of in a time crunch with this, so any help will be greatly appriciated! Thanks all! g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. |
From: Gene B. <ge...@de...> - 2008-02-05 18:46:07
|
(test, please ignore) g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. |
From: Gene B. <ge...@de...> - 2008-02-05 18:09:37
|
I've got a weird one for you folks... I execute the server with: j-startup -c 5 j-status returns: PID Port Status Startup Date/Time From IP Last Server Status : 224 20002 Waiting 09:59:41 02/05/08 09:59:42 02/05/08 Child Status : ( I snipped some of the title text and the "---" lines) As you can see, no child is apparent. Connection attempts result in an error. When I start it using d3server -c 5, I get this: Starting 5 Child Processes. Starting child with D3Client -port 30000 -s 20 Starting child with D3Client -port 30001 -s 20 Starting child with D3Client -port 30002 -s 20 Starting child with D3Client -port 30003 -s 20 Starting child with D3Client -port 30004 -s 20 and j-status reports: PID Port Status Startup Date/Time From IP Last Server Status : 20 20002 Waiting 10:01:19 02/05/08 10:01:20 Child Status : 224 30000 Waiting 10:01:20 02/05/08 10:01:20 226 30001 Waiting 10:01:20 02/05/08 10:01:20 Apparently, Its only starting 2 children instead of the 5 specified. I've mostly seen it only spawn 1 child when 5 were specified. I've got my system configured to accomodate 100 phantom processes (nphts = 100) and I've got plenty of licenses for phantoms (6 used out of 130 allowed) I'm kind of in a time crunch with this, so any help will be greatly appriciated! Thanks all! g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. |
From: Gene B. <ge...@de...> - 2008-01-30 20:01:32
|
On Wed, 30 Jan 2008, Christophe Marchal wrote: > Hi, No, the project has not moved anywhere. That's just we have not add > functionnality for a long time now. Maybe because it is just working for > us and nobody ask or propose new add. > > And I'm glad to see that there is still someone who use it ;) I'm just getting into it. I did find a bug in that you can totally hang a phantom port. Unfortunately, I can't recall exactly how I stumbled across it. It had something to do with my lack of understanding on how the select list functions worked. I called the wrong one with an empty parameter and the d3client went nuts. Even after killing the unix process, I coudln't get the port back and I had to restart the whole system to get things back to normal. I don't recall the _exact_ circumstances because it's been over a month since I last looked at the code. I ended up with a pile of year-end things to handle and the client app fell on the floor for a while. g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. |
From: Christophe M. <mcc...@ya...> - 2008-01-30 19:49:06
|
Hi,=0A=0ANo, the project has not moved anywhere. That's just we have not ad= d functionnality for a long time now. Maybe because it is just working for = us and nobody ask or propose new add. =0A=0AAnd I'm glad to see that there = is still someone who use it ;)=0A=0AChristophe=0A=0A----- Message d'origine= ----=0ADe : Gene Buckle <ge...@de...>=0A=C3=80 : jd3-devel@lists.s= ourceforge.net=0AEnvoy=C3=A9 le : Mercredi, 30 Janvier 2008, 18h51mn 50s=0A= Objet : [Jd3-devel] Anyone home?=0A=0AI =0Asee =0Athe =0Acode =0Ahasn't =0A= been =0Aupdated =0Ain =0Aa =0ALONG =0Atime. =0AHas =0Athe =0Aproject =0Amo= ved =0Afrom =0ASF =0Aor =0Ahas =0Ait =0Abeen =0Aabandoned?=0A=0AI've =0Aadd= ed =0Asome =0AD3 =0AODBC =0Acompatability =0Afunctions =0Ato =0Athe =0AC# = =0Alibrary =0Aas =0Awell =0Aas =0Aan =0A"open =0Adict" =0Afunction. =0AAny= one =0Ainterested?=0A=0Ag.=0A=0A=0A-- =0AProud =0Aowner =0Aof =0AF-15C =0A8= 0-0007=0Ahttp://www.f15sim.com =0A- =0AThe =0Aonly =0Aone =0Aof =0Aits =0Ak= ind.=0A=0A-----------------------------------------------------------------= --------=0AThis =0ASF.net =0Aemail =0Ais =0Asponsored =0Aby: =0AMicrosoft= =0ADefy =0Aall =0Achallenges. =0AMicrosoft(R) =0AVisual =0AStudio =0A2008.= =0Ahttp://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/=0A______________= _________________________________=0AJd3-devel =0Amailing =0Alist=0AJd3-deve= l...@li...=0Ahttps://lists.sourceforge.net/lists/listinfo/jd3-= devel=0A=0A=0A=0A=0A=0A=0A ___________________________________________= __________________________________ =0ANe gardez plus qu'une seule adresse m= ail ! Copiez vos mails vers Yahoo! Mail http://mail.yahoo.fr |
From: Dominique d. <dom...@mo...> - 2008-01-30 18:26:45
|
Hi all, While we haven't been able to add to the project we are very grateful for the incredible effort that has created JD3! It has made an enormous difference to us on many levels and always really appreciate what's been done here! Dominique -----Original Message----- From: jd3...@li... [mailto:jd3...@li...] On Behalf Of Gene Buckle Sent: 30 January 2008 07:52 PM To: jd3...@li... Subject: [Jd3-devel] Anyone home? I see the code hasn't been updated in a LONG time. Has the project moved=20 from SF or has it been abandoned? I've added some D3 ODBC compatability functions to the C# library as well=20 as an "open dict" function. Anyone interested? g. --=20 Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. ------------------------------------------------------------------------ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Jd3-devel mailing list Jd3...@li... https://lists.sourceforge.net/lists/listinfo/jd3-devel |
From: Gene B. <ge...@de...> - 2008-01-30 17:51:59
|
I see the code hasn't been updated in a LONG time. Has the project moved from SF or has it been abandoned? I've added some D3 ODBC compatability functions to the C# library as well as an "open dict" function. Anyone interested? g. -- Proud owner of F-15C 80-0007 http://www.f15sim.com - The only one of its kind. |
From: <com...@wh...> - 2006-02-05 23:17:23
|
gaGBoIGhgUCDUoN+g4WDaoNlg0KBW4FFg0eDk4NegVuDZYNDg4GDk4NnIIGhgaCBoQ0KgaCBoYGg IINcgVuDVoODg4uDbINig2eDj4Fbg0yDk4NPg1SDQ4NngsmOUYnBgrWCxILdgtyCuYLxgqmBSCCB oIGhgaANCg0Kg4GDk4NvgVuC5oLoj7WR0oKzguqCvZX7gsyC3YLFjVyQrIKzguqCxIKigumI14FB iMCQU4n1k0shIQ0Kg3yDQ4OTg2eR44FFl7+L4JOZgs2I6pDYjOSNwIKigtyCuYLxgUKRU4LElrOX v4LFgqiOZ4KigsmCyILqgtyCt4FJDQoNCmh0dHA6Ly9lLWx1djAwMDQubmV0L2NvbW11Mg0Kg2WD jINygUWOR46PgsWYYpHogUmXTJa8jHyUXJBsgsyDdYONg0+BQY7KkF6TmYLwkVOCxJazl7+CxYKy l5eCyYLIguqC3IK3gUkNCg0KgaGCsYLqgtyCxYLMl0aQbIrWjFeC8IqIkKuJu4LFgquC6Q0KkE2X ioLFgquC6YuMkm2CzJdGkGyBQYKokm2C6I2HgqKCxoLMgqiVdIKrjYeCooLMioiQq4m7gvCQfYLp grOC3IK0gtyCyA0Kg2OBW4OLgvCCspdwiNOCtYLEgqKC3IK3gUINCg0KgaGBdZdGkGyCzJdGkGyB doLGjPCXrILFgquC6YFFjHyUXJBsgUGDQYNDg2iDi4FBlG+XRILGl0aSQoLJgsiC6oLpgUkNCg0K l0aQbJOvjm2CzINsg2KDZ4OPgVuDToLwgr2Cx4LBgsSBdZdGkGyCzJdGkGyBdoLGgsyM8JesgqoN CorIklCCyYLFgquC3IK3gUKCu4KxgsmCzYKggsiCvYLMl0aQbIKpgueMcYKqgumQTZeKgsWCq4Lp g2yDYoNng4+BW4NOgqoNCoxgkKyCs4LqgsSCooLcgreBQoLHgrGCqYLFjHGCqoLBgsSCooLpkGyT r45tgqqPV4LcgumDUoN+g4WDaoNlg0KBWw0KgsWCoILogUGCsYLqgqqDXIFbg1aDg4OLg2yDYoNn g4+BW4NMg5ODT4LMk8GSpYLFgreBQg0KDQqDZYOMg3KBRY5Hjo+CxZhikeiBSYKyl5iXcJe/i+CB RZNvmF6Xv4LNiOqQ2IzkjcCCooLcgrmC8YFJkVOCxJazl7+CxYKojmeCooLJgsiC6oLcgreBQg0K DQqP7pXxgUWDUoN+g4WDaoNlg0KBW4LJjcWTS4FJDQpodHRwOi8vZS1sdXYwMDA0Lm5ldC9jb21t dTINCg0KgruC6oLFgs2BQY5RicGC8JBTguaC6IKokdKCv4K1gsSCqILogtyCt4FCDQqBpjIwMDYv MDIvMTKC3ILFl0yM+A== |
From: <wom...@bl...> - 2006-01-10 10:42:25
|
k8uRUoLMg4GBW4OLgsmC4IrWgu2C54K4g4GBW4OLgvCKSpWVgrWCxJK4gquQvYLJgqCC6IKqgsaC pIKygrSCooLcgreBQg0Ki7uWoYLwjp2CwYLEkriCr4K9lfuCzILdgrKP0InugvCCs4K5gsSSuIKi gsSCqILogtyCt4FCDQoNCpJqj5eCxoLggsmLu5ahgsyCyIKilfuCyYLNi+qSyYLMg4GBW4OLgsaC yILogqaC3IK5gvGCzILFgUGCsYLMg4GBW4OLgs2KSpWVgrWCxJK4gq+CvZX7gsyC3YLJkZeQTYKz grmCxJK4gqKCxIKoguiC3IK3gUINCo6EgseC4ILMi0uW8YLJgs2BdY7okJSXv4FFj9CJ7pe/gUWT b5helO+XcIF2k5mCzJe/i+CCzYjqkNiCsoK0gqKC3IK5gvGBQg0KkmqQq4LMikaXbILJgs2J74j1 lO+TmYLwkriCrY6WgsiCrYKyj9CJ7oLFgquC6ZHMkKeC8JCugqaCxIKoguiC3IK3gUENCoFAgrGC 6oLggt2CyIKoi+CCzYKggumCzILJj2+J74KigqqCyIKiISGDWoNig06DWIOMg1iCyI7llXeBQZJQ kGdPTIFBj5eOcZHlkLaBQYLIgseCyILHg0yDg4OKg0GDRYFbg32Dk4Lwkb2QlI9Xgt+C6YNSg2eC qo9vl4iC6YKpgueCxYK3gUINCg0KgruC6oKqj2+XiILpgsyCzY6EgseC4IF1ipSOronvjtCBQFdN RoF2gsyRvILIguiC3IK5gvGBQg0KDQqNoYLNjGaN2phngvCCqI7YguiCtYLEj9CJ7oKzgrmCxJK4 gqKCxIKoguiC3IK3gUINCmh0dHA6Ly9rYWtpa29taS5uZXQvZnJlZV9wYXNzgUCCsYK/gueC5oLo kJSWvILMj5eQq4LwgrKP0InugrOCuYLEkriCq4LcgreBQg0KDQoxgUaK+Y2ljuWVd4FAg16DSoNu g1aXbIFAlE6X7jM4jc6BQIqEguiQ2ILoivOWXYFAgWmDVIN8gVuDZ5e/i+CBQJGKkmuBag0KDQoy gUaSUJBnT0yBQIFAg0ODZ4NFl2yBQIFAlE6X7jI4jc6BQINmgVuDZ4rzll2BQIFAgWmDVIN8gVuD Z5e/i+CBQDEwlpyBYIFqDQoNCjOBRor5jaWO5ZV3gUCDUoNDg1mDfpdsgUCUTpfuMjWNzoFAioSC 6JDYguiK85ZdgUCBaYNUg3yBW4Nnl7+L4IFAMzCWnIFggWoNCg0Kkm6I5oLwjLWRSYK1gsSCzI/Q ie6CxoLIguiC3IK3gUGOhILHguCBdVdNRoF2gs2RvILMkm6I5oLFgsyP0InugvCNc4KkjpaCzYjq kNiCsoK0gqKC3IK5gvGBQg0KDQqNoYy7jd2BQY+XkKuJ74j1l2yBQDIwNTeWvIKqjd2Q0IKzguqC xIKoguiC3IK3gsyCxYKyivOWXYKqgqCC6oLOjUSC3YLJiYiCwYK9j9CJ7oLgicKUXILGgsiCwYLE gqiC6ILcgreBQg0KDQqTy5FSgsyDgYFbg4uCxYKylsCYZoKpguCCtYLqgtyCuYLxgqqBQYOKg3OB W4Nnl6Y3MIGTgsyBdVdNRoF2gvCQTYK2grKYQZeNgq2CvoKzgqKC3IK5gUINCg0KipSOronvjtCB QFdNRpHjlVyBQJWQk2OBQJDnjGKU/CA= |
From: <abe...@ex...> - 2005-12-28 12:29:53
|
始めまして、急なご連絡でご迷惑お掛けします。阿部と申します。 今回、このような形でご連絡させて頂きましたが、迷惑であれば今後このようなメールをお送りする事は一切致しません。 私、安部は男性の方には女性を女性の方には男性を紹介させて頂いて降ります、もちろん全ての完全に無料でご紹介させていただきます。 (嘘・偽り・詐欺等は一切ありませんよ) 個人でやっておりますので、掲示板だけでは人も集まらずこのような形でご連絡させて頂くことになってしまいました。大変申し訳なく思っています。 貴方様のアドレスは地域掲示板より検索させて頂きました。深くお詫び申し上げます。 もしまだお相手の方が決まってないようであれば一度、私の掲示板を見て頂けないでしょうか。 http://ranran.101main.com/p/b/index.html 今、現在同じ地域ですと3名の女性を紹介する事が出来ます、(悦子様)(千恵様)(貴子様)になります。 プロフィール等もございますので、時間があれば見てください。 (悦子様に関してはサポートがあります) 最後になりますが、紹介で料金が掛かる事は一切ございません。 完全に無料でご紹介させて頂きますので安心してください。 今夜でも大丈夫な人は千恵さんです! どうぞ宜しくおねがいします。 |
From: <o_h...@ma...> - 2005-12-27 23:37:14
|
=82=CD=82=B6=82=DF=82=DC=82=B5=82=C4=81A=89=9C=8ER=81@=90m=94=FC=82=C6=82=A2= =82=A2=82=DC=82=B7=81B =8B}=82=C9=83=81=81[=83=8B=82=F0=82=B7=82=E9=82=C6=8E=B8=97=E7=82=BE=82=C6=8E= v=82=A2=82=DC=82=B5=82=BD=82=CC=82=C5=81A=8Cf=8E=A6=94=C2=82=CC=95=FB=82=A9=82= =E7=88=EA=93x=83=81=83b=83Z=81[=83W=82=F0=91=97=82=E8=82=DC=82=B5=82=BD=82=AA= =93=CD=82=A2=82=C4=82=A2=82=BD=82=C5=82=B5=82=E5=82=A4=82=A9=81H =83v=83=8D=83t=83B=81[=83=8B=82=F0=88=EA=8F=8F=82=C9=91=97=82=C1=82=BD=82=CC= =82=C5=8Am=94F=82=B5=82=C4=92=B8=82=AF=82=E9=82=C6=8A=F0=82=B5=82=A2=82=C5=82= =B7=81B =91O=82=C9=8Eg=82=C1=82=C4=82=BD=8Cf=8E=A6=94=C2=82=BE=82=C6=92=BC=90=DA=98A= =97=8D=82=B7=82=E9=8E=96=82=E0=8Fo=97=88=82=C8=82=A9=82=C1=82=BD=82=CC=82=C5= =95s=95=D6=82=BE=82=C6=8Ev=82=A4=82=F1=82=C5=82=B7=81B =82=E0=82=B5=97=C7=82=AF=82=EA=82=CE=92=BC=90=DA=98A=97=8D=82=B3=82=B9=82=C4= =82=E0=82=E7=82=A8=82=A4=82=C6=8Ev=82=A2=81A=8D=DA=82=C1=82=C4=82=E9=83A=83h= =83=8C=83X=82=C9=83=81=81[=83=8B=82=B3=82=B9=82=C4=92=B8=82=AB=82=DC=82=B5=82= =BD=81B =8B}=82=C8=83=81=81[=83=8B=82=C9=82=C8=82=C1=82=C4=82=B5=82=DC=82=A2=96{=93=96= =82=C9=90\=82=B5=96=F3=82=A0=82=E8=82=DC=82=B9=82=F1=81B =92=BC=82=AE=82=C9=89=EF=82=A2=82=BD=82=A2=82=C6=82=A2=82=A4=96=F3=82=C5=82=E0= =82=A0=82=E8=82=DC=82=B9=82=F1=82=CC=82=C5=81A=82=B1=82=EA=82=A9=82=E7=82=A8= =8C=DD=82=A2=82=CC=83R=83g=82=F0=8F=AD=82=B5=82=B8=82=C2=82=ED=82=A9=82=C1=82= =C4=82=A2=82=AF=82=BD=82=E7=82=A2=82=A2=82=C8=82=C1=82=C6=8Ev=82=C1=82=C4=82= =DC=82=B7 =82=C6=82=B1=82=EB=82=C5=98b=82=CD=95=CF=82=ED=82=C1=82=C4=82=B5=82=DC=82=A2= =82=DC=82=B7=82=AA=81A=8Cf=8E=A6=94=C2=82=C8=82=C7=82=CD=82=DC=82=BE=8Eg=82=C1= =82=C4=82=DC=82=B5=82=BD=82=A9=81H=82=ED=82=BD=82=B5=82=CD=82=E0=82=A4=8E=AB= =82=DF=82=C4=82=B5=82=DC=82=C1=82=C4=82=E9=82=CC=82=C5=91O=82=CC=8Cf=8E=A6=94= =C2=82=A9=82=E7=95=D4=8E=96=82=F0=92=B8=82=A2=82=C4=82=E0=98A=97=8D=82=AA=95= t=82=A9=82=C8=82=A2=82=F1=82=C5=82=B7=81A=82=BB=82=EA=82=BE=82=AF=82=CD=90\=82= =B5=96=F3=82=A0=82=E8=82=DC=82=B9=82=F1=82=AA=81A=82=A8=82=CB=82=AA=82=A2=82= =B5=82=DC=82=B7=81B =90V=82=B5=82=A2=8F=8A=82=C6=82=B5=82=C4=82=CDhttp://kakikomi=2Enet/renai=81= @=82=B1=82=BF=82=E7=82=CC=83t=83=89=83=8F=81[=83t=83=8A=81[=8Cf=8E=A6=94=C2=82= =F0=8Eg=82=C1=82=C4=82=DD=82=E6=82=A4=82=A9=82=C6=8Ev=82=C1=82=C4=82=DC=82=B7= =81A=8A=AE=91S=96=B3=97=BF=82=C6=82=A2=82=A4=8E=96=82=E0=82=A0=82=E8=82=DC=82= =B5=82=C4=81A=82=A8=8C=DD=82=A2=92=BC=90=DA=98A=97=8D=82=F0=8E=E6=82=E9=82=B1= =82=C6=82=AA=8Fo=97=88=82=E9=82=E6=82=A4=82=C5=82=B7=81B =82=A8=8E=9E=8A=D4=82=AA=82=A0=82=E9=82=E6=82=A4=82=C5=82=B5=82=BD=82=E7=81A= =82=B1=82=BF=82=E7=82=C5=82=A8=98b=82=B3=82=B9=82=C4=92=B8=82=AF=82=C8=82=A2= =82=C5=82=B5=82=E5=82=A4=82=A9=81H =8A=E7=82=AA=82=ED=82=A9=82=E7=82=C8=82=A2=82=C6=95s=88=C0=82=E0=82=A0=82=E8= =82=DC=82=B7=82=AA=81A=83C=83=81=81[=83W=82=E2=91z=91=9C=82=C5=83h=83L=83h=83= L=82=B7=82=E9=82=E0=82=CC=82=F0=8A=B4=82=B6=82=E9=83R=83g=82=AA=82=A0=82=E8=82= =DC=82=B7=81B =8E=CA=90^=82=CC=8C=F0=8A=B7=82=C8=82=C7=82=CD=82=B2=93s=8D=87=82=C9=82=A8=94= C=82=B9=82=B5=82=DC=82=B7=82=CC=82=C5=81A=82=B1=82=EA=82=A9=82=E7=82=B1=82=BF= =82=E7=82=C5=98b=82=AA=8Fo=97=88=82=EA=82=CE=8A=F0=82=B5=82=A2=82=C5=82=B7=81= B =98A=97=8D=82=A8=91=D2=82=BF=82=B5=82=C4=82=A8=82=E8=82=DC=82=B7=81B |
From: <ser...@ma...> - 2005-12-22 08:26:54
|
grGCzJN4gs2DWoOMg3WL5Ip5lZSC8IKyjmeXcILJgsiC54LqgtyCtYLEgtyC sYLGgsmCoILogqqCxoKkgrKCtIKigtyCt4FCDQoNConvjHaOlpaxklOTloFA iMmToZK8jveCxYK3gUINCg0KgaaQVY2egt2XXJLogvCKbZRGknaCtYLcgreB Qg0KDQqCqItxl2yCyYLNkeWVz4KylsCYZoLwgqiKfIKvgrWCxIKigumCxo52 gqKC3IK3gqqDVoNYg2WDgI/jgUGMb5edgqqR5ZXPjayOR4K1gsSCqILogtyC t4FCDQqDWoOMg3WC5oLojp+J8YLMi+SKeZWUjuiQlJe/gsyQtI5al1yS6JP6 gs2Xgo9UjI6XaoLGgrOCuYLEkriCooLEgqiC6ILcgreBQg0KDQqT/Ivgl1yS 6ILMgqCC6ZX7gsyC3YLJg4GBW4OLgvCCqJGXguiCs4K5gsSSuIKigsSCqILo gtyCt4FCDQoNCpJqkKuJ74j1l2yCqo9XgtyC54K4gsmRvZZagsiP0InugvCC s4K5gsSSuIKigsSCooLpgsaOdoKigtyCt4FCkeWVz4KylsCYZoLwgqiKfIKv grWCxIKoguiC3IK3gUINCpOWg1qDjIN1i+SKeZWUgs2MwpBsj+6V8YLwjueC 6IFBiMCRU4FFiMCQU4FFkE2XioLwg2WBW4N9gsmQaYLfgsSCqILogtyCt4FC DQoNCg0Kk5aDfYNfg4CDToOJg3WCzYKoi3GXbILMkE2XipHmiOqCxY1sgqaC sphBl42Cs4K5gsSSuIKigsSCqILogtyCt4KqgUGVc5T1gsiTX4KqgrKCtIKi gtyCtYK9gueBQZK8gq6CyYKymEGXjYKtgr6Cs4KigtyCt4LmgqSCqIrogqKS doK1gtyCt4FCDQoNCoNag4yDdYvkinmVlILGgrWC3IK1gsSQdpGsgsiRzome gqqPb5eIgtyCt4LmgqSTd5fNgrOCuYLEkriCooLEgqiC6ILcgreBQg0KDQoN CoGmgreC14LEgsmCqIKigsSMb5Tvgs2I6pDYinyCqYLogtyCuYLxgaYNCg0K DQqBeYqukVOWs5e/g1qDjIN1j9CJ7o+KgXoNCmh0dHA6Ly9tZWxsb3ctbGFr ZS5jb20vcmVuYWkNCg0KDQoNCg0KIIGdIINag4yDdYvkinmVlIFJkWaTR4LI j2+J74KiiYmPb4Kigr2CtYLcgreBXg0KIISsgV6BX4SqhKqEqoSqhKqEqoSq hKqEqoSqhKqEqoSqhKqEqoSqhKqEqoSqhKqEqoSqhKo+Pj4+hJ+En4SfhJ+B qIGdhJ8NCiCBXoqukVOBX4FAhKCBQIFAgUCBQIFAgUCBQIFAgUCBQIFAgUCB QIFAgUCBQIFAgUCBQIFAgUCBQIFAgUCBQIFAgUCBQIFfDQoggV+BQJazgUCB X4SggUCBQIFAgUBzZXJlYl9pbmZvQGluZm9zZWVrLmpwICAgICCBQIFAICAg gUAgIIFAgUCBQIFAgUCEqw0KIISrgV+BQJe/gV6EoIFAgUCBQIFAgUCBQIFA gUCBQIFAgUCBQIFAgUCBQIFAgUCBQIFAgUCBQIFAgUCBQIFAgUCBQIFAhKsN CiCEr4SqgV+BXoSqhKqEqoSqhKqEqoSqhKqEqoSqhKqEqoSqhKqEqoSqhKqE qoSqhKqEqoSqhKqEqoSqhKqEqoSqhKqEqoSuDQo= |
From: <ser...@in...> - 2005-12-21 09:42:50
|
j1SWloLJie+CpoLplfuC8IKyj9CJ7oKzgrmCxJK4gquC3IK3gUKWe5P6gqiW 8ZGpgvCMiILfgr2CooLGmEGXjYKqk/yC6ILcgrWCvYFCDQoNCovJlOmCxYLM grKP0InugsmCyILogtyCt4FCkaaMiILMgqiW8ZGpgsWCt4LMgsWXv4vggs2W e5P6kriCooLEgqiC6ILcgreBQg0KgqiX54vggs0zMJacgvCRT5WlgqKCxYKo jniVpYKiknaCtYLcgreBQg0KDQqRb5X7gqmC54LMgrKYQZeNgvCKbZRGjp+R 5oKokFWNnoLdgqqJwpRcgsmCyILogtyCt4FCDQoNCg0KgXWWe5P6gsyDWoOM g3WCyYLNgrGCv4LngsyMZo6mlMKC8I/Qie6Cs4K5gsSSuIKigsSCqILogtyC t4F2DQpodHRwOi8vbWVsbG93LWxha2UuY29tL3JlbmFpDQqWs5e/gsWCqI5n gqKSuIKvgtyCt4LMgsWBQZK8kNqCsphBl42SuIKrgtyCtYLEgqiW8ZGpgvCC qIyIgt+CrYK+grOCooFCDQoNCo/ji0yLTI3agsyTYIy+lMKCzZP8ie+J74j1 kJSCqoy1kUmCs4LqgUGQp4zAgrOC6oLEgqiC6ILcgreBQg0KguCCtYKok/yC 6ILJgsiC54LqgsiCoo/qjYeCzYKxgr+C54LmguiCsphBl42CrYK+grOCooFC DQoNCpZ7k/qCso/Qie6Cs4K5gsSSuIKtg1qDjIN1gsmCzZPxgsKCzIxmjqaU woLwj9CJ7oKzgrmCxJK4gquCqJHSgr+SuIKigsSCqILogtyCt4FCDQoNCmh0 dHA6Ly9tZWxsb3ctbGFrZS5jb20vcmVuYWkNCg0KDQqProOBg2KDWoFbg1eC qpPNgqmCyIKij+qNh4LNjcSTeI6eitSC8JJ1gquC3IK1gsSCqYLnguCCpIjq k3iCqI6OgrWCrYK+grOCooFCDQoNCpFvlfuCqYLngsyRgYr6gsyYQZeNgvCC qJHSgr+CtYLEgqiC6ILcgreBQg0Kib2RsoFBi1iCtYKtgqiK6IKiknaCtYLc greBQg0KDQoNCoFcIINag4yDdYvkinmVlCCBXIFcgVyBXIFcgVyBXIFcgVyB XIFcgVyBXIFcgVyBXIFcgVwNCo9vie+CooLMg0eDk4NegVuDZYNDg4GDk4Nn IFuDWoOMg3WL5Ip5lZRdDQqBQIFAgUCBQIFAgUCBQINJgVuDaYFbgUCW2JOH DQpzZXJlYl9pbmZvQGluZm9zZWVrLmpwDQqBXIFcgVyBXIFcgVyBXIFcgVyB XIFcgVyBXIFcgVyBXIFcgVyBXIFcgVyBXIFcgVyBXIFc |