Titus Barik | 5 Jun 2005 23:06
Favicon
Gravatar

help with struts, over AIM

Hi all,

I'm fairly new to struts, and though I've done pretty well by reading 
books, Googling, and the struts mailing list, I occassionally have some 
issues that would most easily be solved over instant messaging.

Unfortunately, I don't know anyone that I can actually ask.

Is anyone on this list willing to give me their AIM/MSN/ICQ address for 
assistance every now and then? My mistakes are generally novice in 
nature and could easily be solved by an experienced developer.

Thanks!

--

-- 
Titus Barik (titus@...)
http://www.barik.net
James Mitchell | 6 Jun 2005 13:16
Picon
Favicon

Re: help with struts, over AIM

Fire away!

--
James Mitchell
Software Engineer / Open Source Evangelist
Consulting / Mentoring / Freelance
EdgeTech, Inc.
http://www.edgetechservices.net/
678.910.8017
AIM:   jmitchtx
Yahoo: jmitchtx
MSN:   jmitchell@...

----- Original Message ----- 
From: "Titus Barik" <titus@...>
To: <ajug-members@...>
Sent: Sunday, June 05, 2005 5:06 PM
Subject: [ajug-members] help with struts, over AIM

> Hi all,
> 
> I'm fairly new to struts, and though I've done pretty well by reading 
> books, Googling, and the struts mailing list, I occassionally have some 
> issues that would most easily be solved over instant messaging.
> 
> Unfortunately, I don't know anyone that I can actually ask.
> 
> Is anyone on this list willing to give me their AIM/MSN/ICQ address for 
> assistance every now and then? My mistakes are generally novice in 
> nature and could easily be solved by an experienced developer.
(Continue reading)

Barnes, Michael | 6 Jun 2005 20:28

Spanish translation

I have a site that I need to convert from english to spanish. I was thinking that I would need to use resouce
bundles for this. However, 	I am not sure how to get the special characters into the .properties file.

Any help would be much appreciated.

Thanks
Mike

-----------------------------------------
====================================================  This message contains
PRIVILEGED and CONFIDENTIAL  information that is intended only for use by
the   named recipient. If you are not the named recipient,  any disclosure,
dissemination, or action based on   the contents of this message is
prohibited. In such  case please notify us and destroy and delete all
copies of this transmission.  Thank you.
====================================================
David Carter | 6 Jun 2005 20:44
Picon

Re: Spanish translation

http://java.sun.com/j2se/1.3/docs/tooldocs/win32/native2ascii.html

http://ant.apache.org/manual/OptionalTasks/native2ascii.html

-David

On 6/6/05, Barnes, Michael <Michael.Barnes@...> wrote:
> I have a site that I need to convert from english to spanish. I was thinking that I would need to use resouce
bundles for this. However,        I am not sure how to get the special characters into the .properties file.
>
Jeff | 6 Jun 2005 21:36
Picon
Favicon

Re: Spanish translation

You're going to have a couple of issues right up front.

1) How to enter the accented characters, such as: á, é, í, ó, ú, and ñ,
maybe even ü if you're lucky ;-)  There are a variety of ways to do this,
depending on how much data entry you'll be needing to do on your own
keyboard.  Some are easier to get started, others are better long term.  Do
you already have your keyboard setup to enter international characters?

2) What encoding to use when saving the .properties file.  Cp1252 is going
to be the common default on Windows systems, and will work OK if both you
and your web host will be using Windows.  Or you can go with something
better right out of the gate, like UTF-8.  That works well for Spanish and
crosses easily from one system to another without messing up your special
characters.  What editor are you using to enter the data, Eclipse?

On the other hand, if you've already got the thing translated and your 
problem is that your .properties file is not encoded right and your accented 
characters are getting mangled, that's an entirely different problem that 
solved by saving the file with a different encoding.  A lot of editors can 
help with that, or I think Sun has a converter utility somewhere on 
java.sun.com.

Jeff

----- Original Message ----- 
From: "Barnes, Michael" <Michael.Barnes@...>
To: <ajug-members@...>
Sent: Monday, June 06, 2005 2:28 PM
Subject: [ajug-members] Spanish translation

(Continue reading)

Christopher Fowler | 7 Jun 2005 07:12
Favicon

System clipboard via a Java Applet

We have a Java applet in our J2EE application and we want to be able to
cut and paste into and from the system clipboard.  Is this possible?  I
know I can do it as a application but I'm concerned that Java applet
security will block the applet.  Is there a way to tune the JVM to allow
it?

Thanks,
Chris
Christopher Fowler | 7 Jun 2005 07:22
Favicon

Re: System clipboard via a Java Applet

On Tue, 2005-06-07 at 01:12, Christopher Fowler wrote:
> We have a Java applet in our J2EE application and we want to be able to
> cut and paste into and from the system clipboard.  Is this possible?  I
> know I can do it as a application but I'm concerned that Java applet
> security will block the applethttp://java.sun.com/security/signExample/.  Is there a way to tune the
JVM to allow
> it?
> 

http://java.sun.com/security/signExample/

I read there about signing the applet but I'm new at this.  Does the
certificate for each applet have to be stored at a Certificate
Authority?  This is a J2EE application that can run on a private network
with no Internet access.  Will that be a problem?

Thanks,
Chris
John Camerin | 7 Jun 2005 14:27
Favicon

Re: Re: System clipboard via a Java Applet

We have a signed Java Applet which is accessed via the Internet and users can cut and paste from the clipboard
in Windows.  I do not believe that we did anything special to get this functionality to work.  It may be that it
is just part of the functionality of some of the Swing components.
> 
> From: Christopher Fowler <cfowler@...>
> Date: 2005/06/07 Tue AM 01:22:13 EDT
> To: "General AJUG membership forum (100-200 messages/month)"
> 	<ajug-members@...>
> Subject: Re: [ajug-members] System clipboard via a Java Applet
> 
> On Tue, 2005-06-07 at 01:12, Christopher Fowler wrote:
> > We have a Java applet in our J2EE application and we want to be able to
> > cut and paste into and from the system clipboard.  Is this possible?  I
> > know I can do it as a application but I'm concerned that Java applet
> > security will block the applethttp://java.sun.com/security/signExample/.  Is there a way to tune the
JVM to allow
> > it?
> > 
> 
> http://java.sun.com/security/signExample/
> 
> I read there about signing the applet but I'm new at this.  Does the
> certificate for each applet have to be stored at a Certificate
> Authority?  This is a J2EE application that can run on a private network
> with no Internet access.  Will that be a problem?
> 
> Thanks,
> Chris
> 
> 
(Continue reading)

Christopher Fowler | 7 Jun 2005 20:27
Favicon

Re: Re: System clipboard via a Java Applet

On Tue, 2005-06-07 at 08:27, John Camerin wrote:
> We have a signed Java Applet which is accessed via the Internet and users can cut and paste from the
clipboard in Windows.  I do not believe that we did anything special to get this functionality to work.  It
may be that it is just part of the functionality of some of the Swing components.
> > 

Right.  Did you have to get a cert form a cert authority?
Tony McCune | 7 Jun 2005 20:30

IBM Rational Application Developer Proof of Concept

Greetings!

Just a quick note to all of you who have been working with WSAD and want to take a look at Rational Application Developer v6 which is replacing WSAD v5.1, there is a little known IBM sponsored Proof of Technology on RAD 6 and Rational Software Architect (RSA) which has the UML modeler prospective built into it. 

 

I was told there are seven seats left for Thursday morning.  I attached a pdf with the details if you are interested in attending, feel free to pass it on. 

 

Tony McCune

Director of Software Solutions

CrossLogic Inc.

770-962-1915

Mobile 770-335-3241

 

Crosslogic – Crossing the gap between business and technology

 

Attachment (June9 RAD-RSA POT.pdf): application/octet-stream, 504 KiB
_______________________________________________
ajug-members mailing list
ajug-members@...
http://www.ajug.org/mailman/listinfo/ajug-members

Gmane