Search the web
Sign In
New User? Sign Up
djug-discuss · Denver JUG Discussion Forum
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 589 - 618 of 658   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#618 From: "k maheshwari" <kkmsun@...>
Date: Tue Sep 2, 2008 5:01 pm
Subject: Re: Bea to JBoss
kkmsun@...
Send Email Send Email
 
Octavia,

What type of application are you developing/migrating? Is this a production app? Does it support large amounts of users/interactions?

Some applications would be more suitable for a move to JBoss platform than others especially if there are lot of open source packages being used. JNDI is standard J2EE so should not be an issue in JBoss.

Logging - Log4J should work well
JDBC Driver - most are supported
Downloads - http://www.jboss.com/downloads/index

If you need further help/clarification, you can write to me personally.

HTH, k

On Tue, Sep 2, 2008 at 10:19 AM, Octavia Taranu <octavia_taranu@...> wrote:

At my work I need to convert a Web Java-J2EE Struts application from Bea 9.2 to JBoss 4.2.  I would appreciate if you could help me to find answers/ information regarding the following:
1.
Do you know, please, the best/ safest path where I can free download JBoss 4.2?
2.
Is Java Struts 1.2.9 compatible with JBoss 4.2?
3.
Does JBoss 4.2 allow data sources and connection pools defined at the console level in a similar way that Bea WebLogic does?
4.
Which Oracle driver does JBoss 4.2 accept in order to connect to an Oracle 9i/ 10g database?
Where could I download the driver? At the Bea console level I use Oracle's Driver (Thin) Versions 9.0.1, 9.2.0, 10 so I would like to find, please, the JBoss corresponding Oracle driver!
5.
I would like to know the JBoss corresponding Java framework for:
import weblogic.logging.NonCatalogLogger;
and weblogic.jndi.WLInitialContextFactory.
6.
Does JBoss accept the below Java framework/ statements?
import javax.naming.Context; import javax.naming.InitialContext;
private static String thinDriver = "jdbc:oracle:thin";
Context ctx =
new InitialContext(); ctx = javax.sql.DataSource ds = (javax.sql.DataSource) ctx lookup("jdbc/CoGDataSource");
Connection dbConn;
dbConn.commit(); dbConn.rollback();
Any information, links or recommended books regarding the above issues would be highly appreciated!
 
Thank you very much,
Octavia Taranu




--
Join me at http://www.linkedin.com/in/kamalm

#617 From: Brian Pontarelli <brian@...>
Date: Tue Sep 2, 2008 4:27 pm
Subject: Re: Bea to JBoss
brokenwren
Offline Offline
Send Email Send Email
 

On Sep 2, 2008, at 10:19 AM, Octavia Taranu wrote:

At my work I need to convert a Web Java-J2EE Struts application from Bea 9.2 to JBoss 4.2.  I would appreciate if you could help me to find answers/ information regarding the following:
1. Do you know, please, the best/ safest path where I can free download JBoss 4.2?

http://www.jboss.org is the best place. ;)


2. Is Java Struts 1.2.9 compatible with JBoss 4.2?

Yes.

3. Does JBoss 4.2 allow data sources and connection pools defined at the console level in a similar way that Bea WebLogic does?

Yes. You need to define the DataSource using the JBoss -ds.xml files. But I believe the JBoss console can generate these for you.

4. Which Oracle driver does JBoss 4.2 accept in order to connect to an Oracle 9i/ 10g database? Where could I download the driver? At the Bea console level I use Oracle's Driver (Thin) Versions 9.0.1, 9.2.0, 10 so I would like to find, please, the JBoss corresponding Oracle driver!

The drivers from Oracle would be your best bet. JBoss might ship with these, though I haven't downloaded JBoss in a while. Otherwise, just head over the the Oracle website and grab the latest drivers from there.

5. I would like to know the JBoss corresponding Java framework for:
import weblogic.logging.NonCatalogLogger; and weblogic.jndi.WLInitialContextFactory.

I'd avoid using all internal APIs and instead use standard JDK and JEE APIs whenever possible. For logging, just JDK logging or Log4J. For JNDI use the javax.naming classes.

6. Does JBoss accept the below Java framework/ statements?
import javax.naming.Context; import javax.naming.InitialContext;
private static String thinDriver = "jdbc:oracle:thin";
Context ctx = new InitialContext(); ctx = javax.sql.DataSource ds = (javax.sql.DataSource) ctx lookup("jdbc/CoGDataSource");
Connection dbConn; dbConn.commit(); dbConn.rollback();
Any information, links or recommended books regarding the above issues would be highly appreciated!

Yes. These are standard APIs that ship with the JDK. You just need to setup your JDBC DatabaseSource into the correct location in the JNDI tree.

You might want to consider reading the various JEE books and the JBoss books out there. I'd also suggest reading up on JNDI, JDBC and the various Java books as well.

Good luck! Let me know if you need any onsite assistance. Inversoft would be glad to help out. ;)

-bp


#616 From: Octavia Taranu <octavia_taranu@...>
Date: Tue Sep 2, 2008 4:19 pm
Subject: Bea to JBoss
octavia_taranu
Offline Offline
Send Email Send Email
 
At my work I need to convert a Web Java-J2EE Struts application from Bea 9.2 to JBoss 4.2.  I would appreciate if you could help me to find answers/ information regarding the following:
1. Do you know, please, the best/ safest path where I can free download JBoss 4.2?
2. Is Java Struts 1.2.9 compatible with JBoss 4.2?
3.
Does JBoss 4.2 allow data sources and connection pools defined at the console level in a similar way that Bea WebLogic does?
4. Which Oracle driver does JBoss 4.2 accept in order to connect to an Oracle 9i/ 10g database?
Where could I download the driver? At the Bea console level I use Oracle's Driver (Thin) Versions 9.0.1, 9.2.0, 10 so I would like to find, please, the JBoss corresponding Oracle driver!
5. I would like to know the JBoss corresponding Java framework for:
import weblogic.logging.NonCatalogLogger;
and weblogic.jndi.WLInitialContextFactory.
6. Does JBoss accept the below Java framework/ statements?
import javax.naming.Context; import javax.naming.InitialContext;
private static String thinDriver = "jdbc:oracle:thin";
Context ctx =
new InitialContext(); ctx = javax.sql.DataSource ds = (javax.sql.DataSource) ctx lookup("jdbc/CoGDataSource");
Connection dbConn;
dbConn.commit(); dbConn.rollback();
Any information, links or recommended books regarding the above issues would be highly appreciated!
 
Thank you very much,
Octavia Taranu


#615 From: "milehighheadhunter" <jburquest@...>
Date: Mon Sep 1, 2008 10:12 pm
Subject: UI Engineer (Denver)
milehighhead...
Offline Offline
Send Email Send Email
 

 

It's not about cubicles, endless meetings and rigid communication protocols. Instead we thrive on a fun, casual atmosphere and the creativity that can only be found in loving what we do.

At Local Matters, headquartered in a historic LoDo warehouse, we're building a team of the smartest, nicest, funniest, coolest, hippest… you get it… people in the tech industry. Our management team includes former Mapquest, Trip.com, The Onion, and Yelp personnel.

We strive to create and maintain best-of-breed web applications, using state-of-the-art technologies at every level. As one of our UI Engineers, your work will be seen by millions of users per day, all over the world.

You might be a great addition to our team if you:
Are the best UI engineer that you know.
Are willing to learn and use bleeding-edge web technologies.
Understand the intricacies and insanities of cross-browser development.
Want to work in a highly challenging and fun environment.
Would enjoy knocking off work at 3pm on Fridays for happy hour.

Our tight-knit team uses Agile in 2-week iterative development cycles, working closely on multiple projects with other team members to meet aggressive schedules. 10% of their time is spent on research and development, including contribution back to open-source software projects.

Qualifications:
3+ years with core web technologies (HTML, Javascript/DOM, CSS).
Some experience with prevalent Javascript toolkits/frameworks.
Experience with mixed-markup languages (JSP/JSTL, PHP, ASP).
Knowledge of web standards principles and practices.
An eye for design and layout.
Ability to work independently from assignment through completion.
Experience with Agile Methodology is a plus.
Ability to work with Product Managers, Designers and Information Architects.



#614 From: "thomasamarrs" <thomasamarrs@...>
Date: Thu Aug 28, 2008 11:16 pm
Subject: Need Advice on Image Maps
thomasamarrs
Offline Offline
Send Email Send Email
 
I need to implement an Image Map inside a Portlet. The user would click
on a certain region of the U.S. map, and then they would see that region
highlighted and they would also see the appropriate data for that region in a
table next to the map.

The client has WebLogic Portal 8.x, so they're using J2EE 1.4. For
previous AJAX-related work, I've used client-side APIs like Prototype and
Scriptaculous to avoid any Java version compatibilities. Besides, I think this
is strictly a client-side thing, so it's also about separation of concerns.

So, I have Prototype and Scriptaculous in place as a base AJAX Engine,
and I have a few other APIs on top of them to support tooltips, sortable
tables, and progress bars.

Getting back to the Image Map, here are my questions:
1) What are the basic steps in creating/developing an Image Map?

2) What's the best way to go about this?

3) Would it make sense to an Open Source Image Mapper tool to generate
the base HTML and JavaScript?

4) Could I use GWT? If so, would it cause compatibility problems with
Prototype and Scriptaculous?

5) How do I layer the images (basic U.S., U.S. with North East
highlighted, andso on)? What about the performance of loading all those images?

6) How do I create AJAX events based on the user's button clicks? I
don't want the page to flicker.

7) Have I missed anything?
8) Are there any books or articles I can read on this topic?

I'm just looking for an overall approach to the problem that works
within my architectural constraints.

Thanks for all your help.

Tom

#613 From: "Evin Berman" <eberman@...>
Date: Mon Aug 18, 2008 8:33 pm
Subject: Sr. Integration Developer: Ft. Collins- Contract to Hire (Webservices)
evinb12
Offline Offline
Send Email Send Email
 
Our customer is a HR large business services company. They are looking
for a very skilled Java/J2EE Developer to join their team in their Fort
Collins, Colorado office. This will initially be a three to four month
engagement and will eventually be a permanent role.

The team this individual is joining is responsible for developing the
integration components to integrate a Java web based HR product into
other outside systems. The technology expertise required for this
position is Java, webservices, WSDL creation, XML. Experience with SAML
is a big plus.

The environment also consists of Java/J2EE, webservices, SOA, WSDL,
Spring, AXIS, Jboss, Eclipse, POJO, JDBC, Apache Axis, ESB hub and
spoke topology, Stored Procedures, PL/SQL, MQ, JAXB, JMS and Oracle
10g.

*Local Candidates highly preferred*
Please contact eberman@...

#612 From: Robert E Smith <rsmith@...>
Date: Thu Aug 14, 2008 8:02 pm
Subject: Robert E Smith is out of the office.
rsmith@...
Send Email Send Email
 
I will be out of the office starting  08/13/2008 and will not return until
08/18/2008.

I will respond to your message when I return. If you need immediate
assistance, however, please contact Mary Temple, Chris Maradie, Susan
McCarthy, or Nathan DePonte.

#611 From: "Greg Ostravich" <greg.ostravich@...>
Date: Thu Aug 14, 2008 3:13 pm
Subject: Jared Richardson - DJUG speaker in September
gostrav
Offline Offline
Send Email Send Email
 
This is a reminder that Jared Richardson is our speaker next month.
If there's a particular talk you're interested in let us know.
He wrote a book called "Ship It!" that is published under the Pragmatic label which talks about how to ship software.
I have the book and think it's pretty comprehensive.

I've been to some of his talks and really enjoyed it.

I'm sending this message to both JUG groups - just reply directly to me at greg.ostravich at gmail.com

Here are some of his talks:

Presentations by Jared Richardson

Credit Card Software Development: Recognizing and Repaying Technical Debt

Technical debt has long been recognized in technical circles for years, but convincing your manager to budget time to repay "technical debt" has always been problematic. Let's couch the term technical debt concept in language more familiar to our managers: credit card debt.

Gradual Agile: The Secret to Introducing Agile Practices

Agile practices are popular because they work, but getting people to take that first step can be tricky.

Techniques 2008

There are a number of great techniques you can use across technologies and projects. Come hear some of my favorites and contribute a few of your own. We'll discuss topics from DRY to creating a zone defense for your product.

Continuous Integration with Cruise Control

Continuous Integration is increasingly recognized as a vital practice in an Agile software shop. Traditionally it's been difficult to set up and administer. Today, that's no longer the case.

Build Teams, Not Products

A great team builds great software, but how do you build a great team?

Agile Software Testing Strategies

Creating and maintaining a solid automated test suite is critical to an Agile strategy, but often we're just told to "Do it." In this talk we'll look at several pragmatic strategies for creating and building your suite.

Be Heard: Public Speaking for Techies

Most people fear public speaking more than death, but you don't have to let it handicap you or your career. Learn solid techniques for managing yourself, your content, and your audience.

Career 2.0: Take Control of Your Life

Has your career been a random product of your manager's whims or company's needs? Never rely on your company to keep your skills current and marketable. Take control of your own career with a proven strategy.

Subversion: A Quick Start Guide

Subversion is a free source code management system that's very powerful.

Distributed Teams: Remote Agility

How do you keep a team scattered across time zones in sync?

10 Tips for Getting Your Project Back on Track

Software projects fail over and over for many of the same reasons. We'll look at some of the more avoidable problems and some solid ways to fix them, or avoid them in the first place.

Restoring Agility: Getting Your Team Back on Track

An agile team is first and foremost "a team". When that gets lost in the rush to get a product out the door, the people suffer as well as the products. It's bad for the company, but even worse for the team members. We'll learn how to defuse some of the more common problems you'll run into on dysfunctional teams.

Shippers Unite!

An overview of the Agile software approach from the book Ship It! A Practical Guide to Successful Software Projects.


#610 From: "jeffhoran" <jeffhoran@...>
Date: Mon Jul 7, 2008 11:50 pm
Subject: Need help with netui and displaytag export problem
jeffhoran
Offline Offline
Send Email Send Email
 
I have the same table in both a struts and a netui app.  The struts 1.8
table exports as expected, however, the netui will only export the
number of rows that display (based on pagesize setting).  If this has
happened to you do you have a work-around?

Workshop 9.2, DisplayTag 1.1.1
code
<display:table name="${results}" export="true" sort="list" uid="row"
pagesize="${pgsize}" requestURIcontext="false"
requestURI="${context}/usage.do" >

#609 From: "Nayeem Quayum" <nayeemquayum@...>
Date: Mon Jul 7, 2008 5:00 pm
Subject: Re: Question regarding file "save as" dialog from a servlet
nayeemquayum@...
Send Email Send Email
 
Thanks.

On 7/7/08, Scott Davis <scott@...> wrote:
Nayeem,

I think this is what you are looking for. Add the following to the top
of your JSP file (uncommenting out the specific mimetype setting, of
course):

<%
    //"text/html" is implicit
    //response.setContentType("text/html");
    //response.setContentType("text/plain");
    //response.setContentType("text/xml");
    //response.setContentType("application/vnd.ms-excel");
    //response.setHeader("Content-Disposition", "attachment;
filename=foo.xls");
%>

The last line -- Content-Disposition -- is the hint to your browser
that you'd like to treat the response as an "attachment" instead of
something that should be rendered inline.

The "setContentType" is the MIMEType of the data -- do some research
on that to get the right data type for the content you are downloading.

Cheers,
s

Scott Davis
scott@...



On Jul 1, 2008, at 2:14 PM, Nayeem Quayum wrote:

>
> Hello everybody,
>       I am a Bioinformatitian works for university hospital, who is
> trying to adapt Java technology. I am new in the J2EE environment
> and would appreciate if somebody could extend their help to answer
> my question. I have developed few servlets that speak to the
> database and display the query results to the jsp page. Now I would
> like to facilitate the clients to download the content as text file
> to their own system. I was wondering using what package or I could
> facilitate a "file save-as" dialog using which the clients can
> decide where to save the files on their own system. Thanks in advance.
> Regards,
> Nayeem Quayum
> Bioinformatics Programmer.
>
>


------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
   http://groups.yahoo.com/group/djug-discuss/

<*> Your email settings:
   Individual Email | Traditional

<*> To change settings online go to:
   http://groups.yahoo.com/group/djug-discuss/join
   (Yahoo! ID required)

<*> To change settings via email:
   mailto:djug-discuss-digest@yahoogroups.com
   mailto:djug-discuss-fullfeatured@yahoogroups.com

<*> To unsubscribe from this group, send an email to:
   djug-discuss-unsubscribe@yahoogroups.com

<*> Your use of Yahoo! Groups is subject to:
   http://docs.yahoo.com/info/terms/



#608 From: Scott Davis <scott@...>
Date: Mon Jul 7, 2008 3:24 pm
Subject: Re: Question regarding file "save as" dialog from a servlet
ScottDavis99
Offline Offline
Send Email Send Email
 
Nayeem,

I think this is what you are looking for. Add the following to the top
of your JSP file (uncommenting out the specific mimetype setting, of
course):

<%
      //"text/html" is implicit
      //response.setContentType("text/html");
      //response.setContentType("text/plain");
      //response.setContentType("text/xml");
      //response.setContentType("application/vnd.ms-excel");
      //response.setHeader("Content-Disposition", "attachment;
filename=foo.xls");
%>

The last line -- Content-Disposition -- is the hint to your browser
that you'd like to treat the response as an "attachment" instead of
something that should be rendered inline.

The "setContentType" is the MIMEType of the data -- do some research
on that to get the right data type for the content you are downloading.

Cheers,
s

Scott Davis
scott@...



On Jul 1, 2008, at 2:14 PM, Nayeem Quayum wrote:

>
> Hello everybody,
>       I am a Bioinformatitian works for university hospital, who is
> trying to adapt Java technology. I am new in the J2EE environment
> and would appreciate if somebody could extend their help to answer
> my question. I have developed few servlets that speak to the
> database and display the query results to the jsp page. Now I would
> like to facilitate the clients to download the content as text file
> to their own system. I was wondering using what package or I could
> facilitate a "file save-as" dialog using which the clients can
> decide where to save the files on their own system. Thanks in advance.
> Regards,
> Nayeem Quayum
> Bioinformatics Programmer.
>
>

#607 From: "Nayeem Quayum" <nayeemquayum@...>
Date: Tue Jul 1, 2008 8:14 pm
Subject: Question regarding file "save as" dialog from a servlet
nayeemquayum@...
Send Email Send Email
 
Hello everybody,
      I am a Bioinformatitian works for university hospital, who is trying to adapt Java technology. I am new in the J2EE environment and would appreciate if somebody could extend their help to answer my question. I have developed few servlets that speak to the database and display the query results to the jsp page. Now I would like to facilitate the clients to download the content as text file to their own system. I was wondering using what package or I could facilitate a "file save-as" dialog using which the clients can decide where to save the files on their own system. Thanks in advance.
Regards,
Nayeem Quayum
Bioinformatics Programmer.

#606 From: Bruce Powell <bpowell@...>
Date: Fri Jun 13, 2008 4:03 am
Subject: Bruce Powell/BRD/USGS/DOI is out of the office.
bpowell@...
Send Email Send Email
 
I will be out of the office starting Fri 06/06/2008 and will not return
until Wed 06/18/2008.

If your email is urgent, you may send it to my home email address:
brucekpowell@...   Otherwise, I will respond to your email when I
return to work.

#605 From: "Matt Raible" <matt@...>
Date: Fri Jun 13, 2008 3:23 am
Subject: Developing an RIA with Flex/GWT and Rails/Grails
matt_raible
Offline Offline
Send Email Send Email
 
Howdy all,

I'm doing a talk at OSCON in July about Rails, Grails, GWT and Flex.
To prepare, I plan on developing an application with these
technologies and learning a lot about the various combinations. You
can read more about this on my blog:

http://raibledesigns.com/rd/entry/what_s_a_good_ria

I've gotten quite a few suggestions on the app I should develop.
Here's a post where I describe a survey I created.

http://raibledesigns.com/rd/entry/re_what_s_a_good

If you have 1 minute to fill out the survey, that'd be great.

Thanks!

Matt

--
http://www.raibledesigns.com
http://www.linkedin.com/in/mraible

#604 From: "oren.livne" <olivne@...>
Date: Thu Jun 5, 2008 1:40 am
Subject: Hibernate Persistent Set problem
oren.livne
Offline Offline
Send Email Send Email
 
Dear All,

I have a persistent set

@Entity
public class Group {
    @ManyToMany(fetch = FetchType.EAGER)
    @Fetch(SUBSELECT)
    private Set<ItemEntity> subTopics = new HashSet<ItemEntity>();
}

Problem:
- I save a Group.
- When I add an element "subTopic" of type ItemEntity (another
@Entity) to the set, it prints it in the toString() method (line 1
below) but claims it is not in the set.
-  When I remove it (using either group.getSubTopics().remove(topic)
or subTopics.remove(topic) syntax), it does not remove it. The group's
single element, though, has the same hashCode() and equals subTopic.

But...
- When I use an ArrayList instead of HashSet, everything works fine.
- Other persistent HashSets (written by some1 else...) do work for me.

What can I do to make it work with a Set? I really need a set here.

Here's the log:
group.subTopics = [[SUB_TOPIC] ID 4 V1 Computing with Angles
ItemEntityImpl]
WARN  ContentUserAssociationRemoverImpl -
group.subTopics.contains(subTopic) = false
WARN  ContentUserAssociationRemoverImpl - subTopic 2014616930
subTopic==subTopic? true
WARN  ContentUserAssociationRemoverImpl - element hashCode 2014616930
element==subTopic? true subTopic==element? true

Thank you so much in advance for your help,
Oren

#603 From: "k maheshwari" <kkmsun@...>
Date: Mon Jun 2, 2008 5:50 pm
Subject: Breakthrough Java Computing Experience with Lowest TCO
kkmsun@...
Send Email Send Email
 
Hello Java enthusiasts, developers and architects,

Have you been frustrated by designing Java applications that can scale to thousands of users, millions of transactions and no garbage collection pauses while reducing TCO and datacenter footprint? There is relief in sight.

I am excited to introduce you to a platform that delivers a breakthrough Java computing experience: Azul Compute Appliances. Whether your business relies on Extreme Transaction Processing (XTP) applications, exploring data center virtualization and consolidation or is implementing SOA, here are some of the benefits you can experience with this breakthrough technology:

Extreme Scalability
• Achieve 5X greater throughput per JVM

• Support 50X larger datasets per JVM (1TB heaps!) 

Guaranteed Performance Consistency
• Sustain consistent performance through Pauseless Garbage Collection
• Eliminate IO bottlenecks

Ultimate Architecture Simplicity
• Achieve breakthrough performance on 5X to 50X fewer instances
• Eliminate inefficiencies of highly distributed deployments
 

Fastest Time to Results
• Dramatically improve application Quality of Service in days
• No changes to applications required
• Plug-and-Play Architecture

Smart Datacenter Growth
• Consolidate and substantially reduce server sprawl, space, power, and cooling costs
• Green In MindTM commitment – smart way to grow!

 

Companies that have chosen the Azul solution for their most business critical Java applications include: CircuitCity, Bear Stearns, British Telecom and TransUnion.  I would like a few minutes of your time sometime over the next week to discuss if the Azul platform would make sense for your organization.  After 15 or 30 minutes, we can decide together whether or not to take a next step.  If I should be speaking with someone else in your organization, I would appreciate the referral.

In the meantime, please visit our website and view/download our whitepapers that have more details about the Azul solution: http://www.azulsystems.com/products/whitepapers.htm 

I am also trying to find an opportunity to speak to you at one of the DJUG sessions.

Best Regards,

Kamal Maheshwari

303-898-7753


#602 From: Brian Pontarelli <brian@...>
Date: Sat May 31, 2008 2:27 pm
Subject: Re: User Self Registration Security
brokenwren
Offline Offline
Send Email Send Email
 
The way to handle these situations is using security questions that you
gathered during registration. These registration emails are normally
just used to verify email addresses are real, so you usually don't need
to secure them too much as long as the email doesn't log the person in
(that's very important!). Next, if you are securing password reset
emails, just use one of the "What's your pet's name?" questions before
you allow them to change their password and you should be fine.

-bp


cokidfin wrote:
> Question:
>
> Does someone know how one would secure a self-registration emai so that
> no one but the email recipient could use the confirmation link. Assume
> a scenario such as:
>
> 1 A User registers at a site and enters their email.
> 2 The website creates an account for the user and sends them a
> confirmation email with an https link back to the website to confirm
> the registration.
> 3 The user recieves the email, clicks on the link and the user is taken
> to a web page where they finish registration.
>
> How is the email link secured so that someone else cannot intercept the
> email and register under the user's account an essentially steel there
> identity.
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>

#601 From: Robert E Smith <rsmith@...>
Date: Sat May 31, 2008 2:26 am
Subject: Robert E Smith is out of the office.
rsmith@...
Send Email Send Email
 
I will be out of the office starting  05/29/2008 and will not return until
06/03/2008.

I will respond to your message when I return. If you need immediate
assistance, however, please contact Mary Temple, Chris Maradie, Susan
McCarthy, or Nathan DePonte.

#600 From: "cokidfin" <rbmz@...>
Date: Fri May 30, 2008 8:47 pm
Subject: User Self Registration Security
cokidfin
Offline Offline
Send Email Send Email
 
Question:

Does someone know how one would secure a self-registration emai so that
no one but the email recipient could use the confirmation link. Assume
a scenario such as:

1 A User registers at a site and enters their email.
2 The website creates an account for the user and sends them a
confirmation email with an https link back to the website to confirm
the registration.
3 The user recieves the email, clicks on the link and the user is taken
to a web page where they finish registration.

How is the email link secured so that someone else cannot intercept the
email and register under the user's account an essentially steel there
identity.

#599 From: "John Aronson" <johnaronson@...>
Date: Wed May 28, 2008 2:29 am
Subject: Re: Robert E Smith is out of the office.
jfaronson
Offline Offline
Send Email Send Email
 
Jim,
 
Are you an administrator of the group? Can you delete this guy from the list?
 
John Aronson  
 
----- Original Message -----
Sent: Tuesday, May 27, 2008 9:23 AM
Subject: Re: [djug-discuss] Robert E Smith is out of the office.

Don't send vacation messages to email lists. There are several hundred people here who could not care less that you are out of the office.

--
Jim McMaster
mailto:jim.mcmaster@comcast.net

-------------- Original message ----------------------
From: Robert E Smith <rsmith@nhspa.com>
> I will be out of the office starting 05/22/2008 and will not return until
> 05/28/2008.
>
> I will respond to your message when I return. If you need immediate
> assistance, however, please contact Mary Temple, Chris Maradie, Susan
> McCarthy, or Nathan DePonte.
>


#598 From: jim.mcmaster@...
Date: Tue May 27, 2008 3:23 pm
Subject: Re: Robert E Smith is out of the office.
mcmaster_tat...
Offline Offline
Send Email Send Email
 
Don't send vacation messages to email lists.  There are several hundred people
here who could not care less that you are out of the office.

--
Jim McMaster
mailto:jim.mcmaster@...

  -------------- Original message ----------------------
From: Robert E Smith <rsmith@...>
> I will be out of the office starting  05/22/2008 and will not return until
> 05/28/2008.
>
> I will respond to your message when I return. If you need immediate
> assistance, however, please contact Mary Temple, Chris Maradie, Susan
> McCarthy, or Nathan DePonte.
>

I will be out of the office starting 05/22/2008 and will not return until
05/28/2008.

I will respond to your message when I return. If you need immediate
assistance, however, please contact Mary Temple, Chris Maradie, Susan
McCarthy, or Nathan DePonte.


#597 From: Robert E Smith <rsmith@...>
Date: Tue May 27, 2008 2:02 pm
Subject: Robert E Smith is out of the office.
rsmith@...
Send Email Send Email
 
I will be out of the office starting  05/22/2008 and will not return until
05/28/2008.

I will respond to your message when I return. If you need immediate
assistance, however, please contact Mary Temple, Chris Maradie, Susan
McCarthy, or Nathan DePonte.

#596 From: "Bruno Braga" <spiderlists@...>
Date: Tue May 27, 2008 1:17 pm
Subject: improving your productivity - J2EE Spider 1.0.0-M3 released
j2eespider
Offline Offline
Send Email Send Email
 
J2EE Spider is a tool for generating JEE code capable of increasing the productivity of Web development projects.

The version 1.0.0-M3 was released and has many improvements.

More about the project

Changelog:
-------------------------------------------
Version 1.0.0-M3 (2008-05-25)

Bug
    * [Template] - Fix on template for Struts - cruds with field date, javascripts and others.
    * [Template] - Solved generation problem in the folder /jsp/velocity used for the struts-menu.
    * [Plugin - Core] - When a package had the same name of the mapping project generated classes in the wrong folder.
   
Improvement
    * [Plugin - Core] - Distribution of the plug-in using jar and a separate file from the template.
    * [Plugin - Core] - Added validation of compatibility between the template and plug-in.
    * [Plugin - Core] - Creation of exclusive tab for managing templates.
    * [Plugin - Core] - Improved performance of build.
    * [Plugin - Core] - Added button to select all the attributes of a class in CRUD.
    * [Plugin - UI] - New wizard to open the SPIDER Editor.
    * [Template] - More translations for the i18n.
    * [Template] - Created attributes to store a summary of the characteristics of each template.
    * [Template] - Added to template the possibility of running ant scripts to complete the build.
    * [Template] - Using the feature of running ant scripts to run xdoclet-build.xml after the generation of CRUDs with Struts.
    * [Template] - Alignment HTML code of jsp pages generated.
    * [Others] - Using Atlassian Bamboo as software for continuous integration and the Fisheye.
    * [Others] - Created an Eclipse Update Site for installation and upgrade of the plug-in.
    * [Documentation] - Site: more pages translation into English (more documentation).
    * [Documentation] - New session "Getting Started" on the site.
   
-------------------------------------------

regards,
Bruno Braga

#595 From: Brian Pontarelli <brian@...>
Date: Mon May 19, 2008 6:23 pm
Subject: JCatapult announcement
brokenwren
Offline Offline
Send Email Send Email
 
Hey DJUGgers, just wanted to pass along an open source announcement that I'm circulating today. JCatapult is a project that I've been working on for almost a year now and we are getting close to our full 1.0 release. Here's the release that I'm posting around today:

-------------------------------

JCatapult RC2 released!

The JCatapult team is pleased to announce the release of 1.0-RC2.  For those unfamiliar with JCatapult, here is an overview:

JCatapult is an open source (ASLv2) application development platform targeted primarily at web applications, but capable of being used for most applications. JCatapult is built on top of well known open source tools including:

  • Apache Ant
  • Struts2
  • Hibernate
  • Guice
  • FreeMarker
  • Joda
  • Many others

As a web application platform, JCatapult provides a truly lightweight method of writing and using services. By leveraging Guice for dependency injection you don't have to mess around with tons of XML files to wire your application together. In fact, JCatapult is based on the principle of discovering services. This means you write the services and JCatapult will find them.

One of the best features of JCatapult is its support for Modules. JCatapult Modules are full sets of functionality that can be plugged into any JCatapult web application. An example of a Module might be a fully functional Blog. Once added, JCatapult will discover the Module and your web application will inherit all its functionality.  In other words, users will be able to add, edit and manage blogs without you having to write a single line of code.  A number of commercial JCatapult Modules are already being written and more are in the works. The JCatapult team hopes to see a number of open source Modules start to appear in the near future.

JCatapult has a number of other services and tools it provides including:

  • Scaffolding framework
  • Deployment framework
  • Database migrations
  • Pluggable build system
  • Dependency management (via Savant)
  • Credit card services
  • Email services
  • And others

JCatapult is already in use in a number of websites and is stable. Head over to http://www.jcatapult.org and check it out.



#594 From: Robert E Smith <rsmith@...>
Date: Tue May 13, 2008 2:02 am
Subject: Robert E Smith is out of the office.
rsmith@...
Send Email Send Email
 
I will be out of the office starting  05/08/2008 and will not return until
05/13/2008.

I will respond to your message when I return. If you need immediate
assistance, however, please contact Mary Temple, Chris Maradie, Susan
McCarthy, or Nathan DePonte.

#593 From: "Scott L. Bain" <slbain@...>
Date: Mon May 12, 2008 9:47 pm
Subject: Podcast and Webinar
slbain9000
Offline Offline
Send Email Send Email
 

Hey everyone,

 

Just wanted to let you know about a couple of useful, free online resources. 

 

One is a podcast, focused on overcoming impediments in TDD adoption, and around the sustainability of TDD past the first few iterations:

 

http://www.netobjectives.com/blogs/overcoming-impediments-to-tdd-test-driven-development

 

Second, I'm doing a free online webinar on Emergent Design, on May 22nd.  If you're interested in how patterns, TDD, and refactoring can be used to emerge a design, you might want to sign up to attend:

 

http://www.netobjectives.com/free-seminar-schedule/emergent-design-webinar-may-2008

 

Hope you find this helpful!

 

-Scott Bain-

 


#592 From: "simafe_2000" <simafe_2000@...>
Date: Tue Apr 15, 2008 8:47 pm
Subject: A Google CSE for Java !!!
simafe_2000
Offline Offline
Send Email Send Email
 
Hello.

    I'm a Sun Certified Enterprise Architect.
    Every day I search the web for Java related items. Often the
results I get must be further filtered because the search engine
includes results from all sites it has in its index either related or
not to the java world.
    To alleviate this problem I thought to create this Google custom
search engine: www.jaaava.com.  It uses an internal list of sites I
carefully selected. I have included all online documentation of
popular open source projects and commercial products, all major Java
article sites, all major Java user forums and wiki knowledgebases,
blogs from well-known Java personalities, online Java APIs docs, Java
book excerpts and much more.
    I've also included some sites about technologies and languages
that a java professional is highly possible to use together with
Java: XML, HTML, Javascript, Ajax, design patterns, etc.
    I hope you'll find it useful too.

Best regards,
Felix Sima

#591 From: Robert E Smith <rsmith@...>
Date: Sat Apr 5, 2008 8:25 am
Subject: Robert E Smith is out of the office.
rsmith@...
Send Email Send Email
 
I will be out of the office starting  04/04/2008 and will not return until
04/08/2008.

I will respond to your message when I return. If you need immediate
assistance, however, please contact Mary Temple, Chris Maradie, Susan
McCarthy, or Nathan DePonte.

#590 From: Joe Fair <joe_fair@...>
Date: Sat Apr 5, 2008 2:57 am
Subject: Anyone have tickets for the Groovy Experience next week?
joebothari
Offline Offline
Send Email Send Email
 
Group,
I'm trying to talk my boss into 3 days off for the Groovy Experience in Denver next week.  I was curious if anyone wanted to get out of their spot (maybe at a discount?)  to help convince him.
Thanks,
Joe


You rock. That's why Blockbuster's offering you one month of Blockbuster Total Access, No Cost.

#589 From: Robert E Smith <rsmith@...>
Date: Mon Mar 31, 2008 8:00 am
Subject: Robert E Smith is out of the office.
rsmith@...
Send Email Send Email
 
I will be out of the office starting  03/28/2008 and will not return until
04/01/2008.

I will respond to your message when I return. If you need immediate
assistance, however, please contact Mary Temple, Chris Maradie, Susan
McCarthy, or Nathan DePonte.

Messages 589 - 618 of 658   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help