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.
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;
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?
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 useOracle's Driver (Thin) Versions 9.0.1, 9.2.0, 10so 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:
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?
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. ;)
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?
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.
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.
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@...
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.
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
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.
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 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.
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.
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.
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.
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.
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.
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" >
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.
> > 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. > >
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.
>
>
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.
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.
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
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!)
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 MindTMcommitment 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.
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
>
>
>
>
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.
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.
-------------- 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. >
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.
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.
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.
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.
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.
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:
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
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.
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
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.