You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
(10) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <che...@16...> - 2015-06-05 13:50:40
|
Dear My friend Top Selection! R&B Eyewear Only 22.59 95% Off Sung1asses Online. Lowest Prices Listed - Save Now! Free Shipping On Order 50USD www.hggmx.top Best wishes Arvin |
|
From: dbessey <db...@ad...> - 2003-07-27 15:06:23
|
Your product differ from Jeenius? http://jeenius.sourceforge.net/ <outbind://13/Desktop/icons/scorp.gif> Dana Bessey www.ymsn.net <http://www.ymsn.net/> |
|
From: Christophe B. <dz...@ho...> - 2002-09-19 06:59:34
|
Hi Sudha, I am in the process of defining the specification for the JPass Server. I will post these sometime the coming weeks. Please feel free to chat with me on Yahoo Messenger ID: dzonekl. You might have some questions you want to ask. Cheers / Christophe >From: Sudha Maddala <sud...@ya...> >To: dz...@ho... >Subject: RE: Servlet programmer >Date: Wed, 18 Sep 2002 21:49:34 -0700 > >Hi , > > My name is Sudha Maddala. My sourceforge user name >is sudhahari. > > I have 2 years of experience in Java and have good >skills in Servlets, JSP, EJB, JDBC, JavaScript, XML, HTML >and Oracle. > >Right now, I am looking for a job. Meanwhile, I want to >do some volunteer work and am very much interested in >your JPass project. If you still have a need, please send >me an email to "sud...@ya...". > >Thanks, >Sudha _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
|
From: Christophe B. <dz...@ho...> - 2002-05-14 06:02:43
|
Hi Riann, Sorry for the late reply, busy here aswell..., Your approach is correct, you shpuld send back the requested information as included in the SOAP message. As I said, I will have some code soon, which you will be able to use to send the SOAP messages. You will be able to see what is requested and act upon the request. Last week I spend some time to write a parser, which interprets XML schemas. After defining, the SOAP XML schemas. I will use this code to build the SOAP message body automaticly! It will include the tags, namespace definitions etc... The actual values, will still have to be provided manually. The new source is called wpXSDEngine and wpSOAPapi (available soon). I also defined a new class called wpXSDobj, which contains the actual information. It's using recursive methods to "walk trough" the XSD file. I had a fun time coding this, as it can get very challenging to write recursive code :-) BTW, I am surprissed the other developers are very quiet. I hope it's not lack of direction from my side. I hope you can all understand that the concept is not fully developed and need exploration from everyone involved. Basically what I am saying is that there are only limited rules. Feel free to add anything you think is appropriate to the project. However, if you lost interest or to busy , just let me know aswell. Cheers / Christophe >From: Riaan Minne <ar...@in...> >To: dz...@ho... >Subject: SOAP Messages >Date: Fri, 10 May 2002 04:07:57 -0700 > >Hi Chris, > >I have taken a look on how XML Schemas work and i think i got the >hand of it. Am i supposed to return the results of the SOAP methods in xml >(using String class) that complies to this format? I belove to code a >simple JBean that access a RDBMS to save and retrieve the data is very >simple. I just unsure on how it should send the results... > >I have been >really busy at work this past week, i'm trying to free up some >time. > >Riaan. _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
|
From: Christophe B. <dz...@ho...> - 2002-05-06 09:02:18
|
Hi Riaan, I agree it could be confusing. Let me try to re-phrase the concept. The JPass server is the application which runs the SOAP methods and accepts the SOAP messages from the network. The server can be 1. Running on a trusted server on the internet. (Actually I would like to have a sample server on the internet where we can demonstrate the functionality, .....once ready of course:-). 2. On your home PC. This option seems very attractive, as you can manage the service, yourselve and don't need to trust on anyone else . The disadvantages I see however are that you need to install both the JPass server, Tomcat and a database like MySQL. BTW Michael is currently investigating a leigthweight database which could store native XML or potentially convert to SQL. The JPass client application can be: 1. a desktop client (like the current J2SE client, but could also be a win32 client). 2. a MIDP client application on a mobile 3. a Server side script, like JSP (Java Server Pages). 4. An embedded client which runs on the web server you wich to access. I am working on the client SOAP api. and an XSD traversal API. (To learn XML schemas and create XML). The SOAP api will be able to generate SOAP messages according to the JPass spec. (I hope to have some pre-alpha ready with a couple of weeks). When coding the server (1), you could start by writing the methods which receive the SOAP messages. The methods are equal to the SOAP messages. example: The getWSPlist SOAP message would look like: <?xml version='1.0'?> <env:Envelope xmlns:env="http://www.w3.org/2001/12/soap-envelope"> <env:Body> <wsp:getWSPlist xmlns:wsp="http://jpass.sourceforge.net" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jpass.sourceforge.net/getWSPlist.xsd"> <wsp:Master_User></wsp:Master_User> <wsp:Master_Password></wsp:Master_Password> <wsp:wsData> <wsp:URL></wsp:URL> <wsp:ServiceCharge></wsp:ServiceCharge> </wsp:wsData> </wsp:getWSPlist> </env:Body> </env:Envelope> The method, handling this soap message is also called: public void getWSPlist() { // 1. code reading the SOAP message // 2. query the DOM with WSP examples. // 3. return a list of WSP's. } It's important to get the Deployment descriptors right, which point to the proper methods. (I hope you can put these in cvs), and Second you need to load a DOM, with example XML from the webservice-profile-jpass.xsd XML schema. After that you can try to create a class which looks up the SOAP request in the DOM. You can propably reuse the wpDOMengine file, like the Search method to get the right node back from the DOM. I will create an XML sample from the ws-jpass.xsd file, as I need it for the client aswell. ( i use the tool XML writer to create .XSD and XML but my trial license ran out....@$@%#... need an opensource XML editor. ) Any ideas from your side are of course most welcome. Cheers / Christophe >From: "Riaan Minne" <ar...@in...> >To: "Pietje puk" <dz...@ho...> >Subject: SOAP Specification >Date: Mon, 6 May 2002 00:07:54 +0200 > >Hi, hows it going? > >I went through our website, and somethings are a bit confusing. Looking at >the page explaining the server side development, it seems to suggest that >the service is running on the clients machine itself (looking at the first >diagram on the page). I also nee dinfo on the storage of these Profiles. >What DB are we using. Could you also send the necessary details on what >methods are needed, and the strucure on the data that is used as parameters >and returned by these methods. > >Just to set things clear. My knowledge of SOAP is more system orientated, >like networking and transport and how to use it in Java, not in the usage >xsd and xmi and so on (but i'm working on that). > >I got Tomcat and Apache SOAP working and has been coding simple server and >client using the samples as a base. > >I'm eager to hear from you again... > >Riaan Minne. > > _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
|
From: Christophe B. <dz...@ho...> - 2002-05-02 05:50:02
|
Hi , IBM and MS have released a framework for webservice security. One specific part (Security Token Service) really looks like what JPass is all about. Have a look, and let me know what you think: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnwssecur/html/securitywhitepaper.asp Cheers / dzone _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com |
|
From: Pietje p. <dz...@ho...> - 2002-04-30 04:13:37
|
Hi Riann, I published the doc, mentioned before, on jpass.sourceforge.net/index.htm (yet we have a website now). have a look at the document: Web-service description. Defining web-services is new for me, hopefully you can review this specification and give me some feedback. (I will assign a task to you). I hope this is sufficient to start coding the server soap methods. and the XML SOAP messages. Are you OK with Apache Tomcat? Would you also like to define the service in WSDL? Cheers / Christophe >From: Riaan Minne <ar...@in...> >To: dz...@ho... >Subject: So what up? >Date: Mon, 29 Apr 2002 04:37:19 -0700 > >Hey man, i remembered you told me that you send some docs. >Still waiting ;-) so what is happinning, thing seems to be >a little quite around here? _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com |
|
From: Pietje p. <dz...@ho...> - 2002-04-22 11:01:33
|
OK, I shouldn't have changed it than...... I am afraid it's a bit late to change it back. perhaps I should claim webpass.com sorry, I coundn't look at the screenshots you have send me before. I am at a conference now, and don't have a lot of time. I have the idea to define an API for the JPass client. which the current client could useaswell. defining the client API will allow jpass to be access from different environment (.jsp, Swing, ASP etc....)' The other thing I am doing is to work out the jpass soap messages and methods on the server. I am progressing , but it's still not ready to be reviewed yet. (let me know if you would like to review the client API and server SOAP messages/methods. ) regarding your offer to help document, It's OK with me , it's just that the client will migrate to a more generic API, so perhaps we shoudn't bother documenting the current source. (let me come back to you about this). Cheers / dzone. >From: "Michael Taft" <mic...@ea...> >To: "Pietje puk" <dz...@ho...> >Subject: JPass >Date: Sun, 21 Apr 2002 14:54:57 -0700 > >BTW - I like the name "Webpass" much better than "JPass." It sounds a lot >cooler. >M. > _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
|
From: Pietje p. <dz...@ho...> - 2002-04-21 16:36:33
|
can you paste me the error messages you get? also some screenshots of your settings could help. I am struggling with javadoc at the moment , trying to make the jpass client sources readable ;-) Cheers / dzone. >From: "Michael Taft" <mic...@ea...> >To: "Pietje puk" <dz...@ho...> >Subject: RE: SSH >Date: Sun, 21 Apr 2002 03:59:57 -0700 > >God, I am so close. I can get perfect access with ssh, but keep being >denied >access through cvs. Frustrating. I've read the documents on sourceforge. >This has the "smell" of something very simple that I'm overlooking. Still >searching for it... I got the identity thing worked out now. But it's still >not letting me in! > > > -----Original Message----- > > From: Pietje puk [mailto:dz...@ho...] > > Sent: Sunday, April 21, 2002 3:38 AM > > To: mic...@ea... > > Subject: RE: SSH > > > > > > The identity file is used for key-exchange in ssh. It should matter > > for 'checking out'. you can get rid of it by removing the > > reference in the ssh settings (Admin->preferences->ssh settings) > > disable RSA identity. > > > > you can read more about cvs/ssh on: > > > > https://sourceforge.net/docman/display_doc.php?docid=767&group_id=1 > > > > Cheers / Christophe > > > > > > >From: "Michael Taft" <mic...@ea...> > > >To: "Pietje puk" <dz...@ho...> > > >Subject: RE: SSH > > >Date: Sun, 21 Apr 2002 03:19:50 -0700 > > > > > >The DOS window opens, as it should and asks me for a password, > > but it also > > >contains a warning: "Identity file michaeltaft does not exist." > > >This doesn't happen when I check in to SSH without any CVS. Do > > you have any > > >idea what this means? > > >M. > > >PS - I'll check out the XML-schema. > > > > > > > -----Original Message----- > > > > From: Pietje puk [mailto:dz...@ho...] > > > > Sent: Sunday, April 21, 2002 3:14 AM > > > > To: mic...@ea... > > > > Cc: jpa...@ls... > > > > Subject: RE: SSH > > > > > > > > > > > > Hi Michael, > > > > > > > > You don't need to login! this will only be needed if you use >pserver. > > > > In our case we use ssh. You will be requested to fill in password > > > > when you 'check out'. that's cvs terminology for 'download the >latest > > > > sw vesion'. > > > > > > > > You can find CO (checkout) in the menu create->checkout module. > > > > The module name is: jpass_resources > > > > > > > > Just select a directory on your PC and a DOSbox will be openened and > > > > ask you for a password. > > > > > > > > Cheers / Christophe > > > > BTW i don' use MSN.....yet > > > > BTW-2 I attached the JPass-XML schema (.xsd) > > > > > > > > >From: "Michael Taft" <mic...@ea...> > > > > >To: "Pietje puk" <dz...@ho...> > > > > >Subject: RE: SSH > > > > >Date: Sat, 20 Apr 2002 21:24:17 -0700 > > > > > > > > > >Well, I'm able to get into using just SSH and a DOS window. > > Now to do > > >it > > > > >using WinCVS. Your version of WinCVS looks very different from > > > > mine (I have > > > > >1.2). Whenever I try to login, I get an error saying I need to set >my > > > > >password authentication in preferences. This doesn't make sense. > > > > Working on > > > > >it... > > > > >M. > > > > > > > > > > > -----Original Message----- > > > > > > From: Pietje puk [mailto:dz...@ho...] > > > > > > Sent: Saturday, April 20, 2002 8:31 PM > > > > > > To: mic...@ea... > > > > > > Subject: Re: SSH > > > > > > > > > > > > > > > > > > Hi Michael, > > > > > > > > > > > > hopefuly the attached doc will help! Good luck ( Make > > sure you are > > >not > > > > > > behind a firewall). > > > > > > > > > > > > Cheers / Christophe > > > > > > > > > > > > > > > > > > > > > > > > >_________________________________________________________________ > > > > > > Join the worlds largest e-mail service with MSN Hotmail. > > > > > > http://www.hotmail.com > > > > > > > > > > > > > > > > > > > > > > > _________________________________________________________________ > > > > Get your FREE download of MSN Explorer at > > > > http://explorer.msn.com/intl.asp. > > > > > > > > > > > > > _________________________________________________________________ > > MSN Photos is the easiest way to share and print your photos: > > http://photos.msn.com/support/worldwide.aspx > > > _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. |
|
From: Pietje p. <dz...@ho...> - 2002-04-19 11:12:16
|
Hi Michael, You have been added to the project. Good luck de-ciphering the JPass XML schema. Cheers / CHristophe >From: "Michael Taft" <mic...@ea...> >To: "Pietje puk" <dz...@ho...> >Subject: RE: WinCVS >Date: Thu, 18 Apr 2002 07:39:18 -0700 > >my userId is: michaeltaft > > > -----Original Message----- > > From: Pietje puk [mailto:dz...@ho...] > > Sent: Thursday, April 18, 2002 2:28 AM > > To: mic...@ea... > > Subject: Re: WinCVS > > > > > > I don't use pserver but ssh instead. > > in the username field, you need to put anonymous only I think. > > > > You better use ssh instead (www.openssh.com) I will need to add > > you to the > > project first cvs won't let you in otherwise. so I need your sourceforge > > userid/UNIX name/shortname (all the same thing). You will also need to > > install ssh and configure winCVS to use the ssh client. It's > > pretty easy to > > configure. > > > > I also included the XML schema, as I haven't stored it in cvs yet. > > > > Cheers / Christophe > > > > > > > > > > > > > > > > >From: "Michael Taft" <mic...@ea...> > > >To: "Pietje puk" <dz...@ho...> > > >Subject: WinCVS > > >Date: Wed, 17 Apr 2002 21:08:00 -0700 > > > > > >Dear Christophe - > > > > > >So, I'm trying to login on anonymous psever access at SourceForge. I'm > > >attempting to follow your instructions on the jpass homepage, but I >keep > > >getting rejected. Here is the error code I am receiving: > > > > > >------------------------------------- > > >NEW CVSROOT: >d:pserver:ano...@cv...:/cvsroot/jpass > > >login (password authentication) > > >cvs login > > >(Logging in to d:pserver:ano...@cv...) > > >Fatal error, aborting. > > >d:pserver:anonymous: no such user > > >cvs login: authorization failed: server > > cvs.jpass.sourceforge.net rejected > > >access to /cvsroot/jpass login for user d:pserver:anonymous > > > > > >*****CVS exited normally with code 1***** > > >-------------------------------------- > > > > > >I don't know what the problem is. Perhaps you could clue me in as to >the > > >proper WinCVS settings? > > >M. > > > > > > > > > _________________________________________________________________ > > Get your FREE download of MSN Explorer at >http://explorer.msn.com/intl.asp. > _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com |
|
From: Pietje p. <dz...@ho...> - 2002-04-18 09:40:15
|
Hi all, I will document the .java files soon. I am also redesigning the JPass data structure and SOAP messages using XML schemas I will post the JPass client and server specifications soon. This can be used to start coding the server. Please find the new schema attached. (post it in cvs later). Cheers / Christophe >From: "alok chugh" <chu...@ho...> >To: dz...@ho... >Subject: Re: ssh & cvs >Date: Wed, 17 Apr 2002 10:47:12 +0000 > >Hi Christophe, > >I am doing fine how do you do? >Well I will be interested in something that will involve XML parsing and >SOAP API .If you can assign me some task related to this it would be great. > >Thanks, >Alok. > > >>From: "Pietje puk" <dz...@ho...> >>To: chu...@ho... >>Subject: Re: ssh & cvs >>Date: Wed, 17 Apr 2002 17:47:47 +0800 >> >>Hi Alok, >> >>How are you ? Do you knwo which area you want to work on? >>Please let me know, >> >>Cheers / Christophe >> >> >>>From: "alok chugh" <chu...@ho...> >>>To: dz...@ho... >>>Subject: Re: ssh & cvs >>>Date: Mon, 08 Apr 2002 15:14:04 +0000 >>> >>>Hi Christophe, >>> >>>Sorry for not being able to reply for past few days.. >>>a project release was there. and it was so hectic.. >>>I am finally able to checkout the jPass files. >>>I think by tomorrow I will be ready to get started with it. >>> >>>Thanks, >>>Alok. >>> >>> >>>>From: dzone <dz...@ho...> >>>>To: chu...@ho... >>>>Subject: ssh & cvs >>>>Date: Thu, 04 Apr 2002 05:24:52 -0800 >>>> >>>>Hi Alok, >>>> >>>>How is it going? do you ssh & cvs working now. >>>>BTW I imported a clean version of jpass, in cvs. >>>>it's called jpass_resources >>>> >>>>Cheers / Christophe >>> >>> >>> >> > > > _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com |
|
From: Pietje p. <dz...@ho...> - 2002-04-17 09:42:48
|
ignore _________________________________________________________________ Join the worlds largest e-mail service with MSN Hotmail. http://www.hotmail.com |
|
From: Feynman D. <dr_...@ya...> - 2002-04-16 15:51:44
|
hello, I agree with alok. dzone told me, he was working on something like this. As for me, i've finished studying sax Api and am getting my feet wet with the dom api (JAXP). Once i get a good feel for it, i think i can start contributing. Also i need some help from u guys with setting up and using JBuilder. I've never used it, but am trying to learn. best, VJ --- alok chugh <chu...@ho...> wrote: > > > Hi All, > > Here is my posting. > I am ready for coding but a brief description about > each file in CVS ie what > it does will be really helpful. > That will make understanding the existing code > easier. > > Thanks, > Alok. > > >From: "Pietje puk" <dz...@ho...> > >To: jpa...@li... > >Subject: [Jpass-cvs] Test, please reply > >Date: Mon, 15 Apr 2002 17:48:58 +0800 > > > >Hi Guys, > > > >We have a mailing list now! Please reply to confirm > the list is working > >properly etc..... > > > >I wonder how you all progressing regarding jpass? > Please update me on > >which stage you are and perhaps ready to start > coding? > > > >I hope you will be ready to produce code soon so we > can see jpass evolve. > > > >Cheers / dzone > > > >_________________________________________________________________ > >MSN Photos is the easiest way to share and print > your photos: > >http://photos.msn.com/support/worldwide.aspx > > > > > >_______________________________________________ > >Jpass-cvs mailing list > >Jpa...@li... > >https://lists.sourceforge.net/lists/listinfo/jpass-cvs > > > > > _________________________________________________________________ > Chat with friends online, try MSN Messenger: > http://messenger.msn.com > > > _______________________________________________ > Jpass-cvs mailing list > Jpa...@li... > https://lists.sourceforge.net/lists/listinfo/jpass-cvs __________________________________________________ Do You Yahoo!? Yahoo! Tax Center - online filing with TurboTax http://taxes.yahoo.com/ |
|
From: alok c. <chu...@ho...> - 2002-04-16 03:55:02
|
Hi All, Here is my posting. I am ready for coding but a brief description about each file in CVS ie what it does will be really helpful. That will make understanding the existing code easier. Thanks, Alok. >From: "Pietje puk" <dz...@ho...> >To: jpa...@li... >Subject: [Jpass-cvs] Test, please reply >Date: Mon, 15 Apr 2002 17:48:58 +0800 > >Hi Guys, > >We have a mailing list now! Please reply to confirm the list is working >properly etc..... > >I wonder how you all progressing regarding jpass? Please update me on >which stage you are and perhaps ready to start coding? > >I hope you will be ready to produce code soon so we can see jpass evolve. > >Cheers / dzone > >_________________________________________________________________ >MSN Photos is the easiest way to share and print your photos: >http://photos.msn.com/support/worldwide.aspx > > >_______________________________________________ >Jpass-cvs mailing list >Jpa...@li... >https://lists.sourceforge.net/lists/listinfo/jpass-cvs _________________________________________________________________ Chat with friends online, try MSN Messenger: http://messenger.msn.com |
|
From: Pietje p. <dz...@ho...> - 2002-04-15 09:52:36
|
Hi Guys, We have a mailing list now! Please reply to confirm the list is working properly etc..... I wonder how you all progressing regarding jpass? Please update me on which stage you are and perhaps ready to start coding? I hope you will be ready to produce code soon so we can see jpass evolve. Cheers / dzone _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
|
From: Christophe B. (ECM) <Chr...@ec...> - 2002-04-12 04:00:01
|
delete |