Well... "dedicated.connection=true" is not documented :)))
Second. There ARE drawbacks.
The method you show in the message will lead you to resource leakage.
Try reusing contexts for one and the same target.
Anyway. The Answer is: YES, it WILL work.
However. The classes, for the Home
Brilliant -- thanks. What I couldn't find was any documentation
on what goes in the environment Hashtable. :)
What does the dedicated.connection=true property do? If I were
to do this:
public FooRemote getRemote(String jndiURL)
{
Hashtable env = new Hashtable();
env.put(Context.PR
}
catch(Exception e)
{}
}
return jndiContext;
}
Hope this helps...
Greg
-Original Message-
From: David Moles [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 17, 2002 4:06 PM
To: Orion-Interest
Subject: JNDI question: client talking to EJBs on multiple app serv
Hi.
A working model is to create two Initial Context-s for each server.
Use a "dedicated.connection=true" property to create the context.
The "dedicated.connection" however leads to resource leakage, and if you
keep creating more and more of them you will eventualy get
"java.lang.OutOfMemo
I've got the same beans deployed on two different app servers (each
backed by a different database). I want my client to talk to both.
Say the two app servers are running on machines named Fred and Wilma;
I know I can choose which one I talk to by setting
java.naming.provider.url=ormi://fred/a
d. (on oc4j, a close relative of orion)
>
>
> -Messaggio originale-
> Da: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]Per conto di Jose Mena
> Inviato: mercoledì 10 aprile 2002 13.20
> A: Orion-Interest
> Oggetto: error-page tag in web-xml question
>
>
> Hi
JSPs can be used for certain.
Grant Doran
> -Original Message-
> From: Jose Mena [SMTP:[EMAIL PROTECTED]]
> Sent: 10 April 2002 12:20
> To: Orion-Interest
> Subject: error-page tag in web-xml question
>
> Hi,
> I'm trying to set an error page in one of m
in web-xml question
Hi,
I'm trying to set an error page in one of my web applications. To do this i
have put this tag in the web.xml file:
500
/error.html
to catch all the 500 errors and redirect the user to an error page. It works
when i put a plain html page but it doe
Hi,
I'm trying to set an error page in one of my web applications. To do this i
have put this tag in the web.xml file:
500
/error.html
to catch all the 500 errors and redirect the user to an error page. It works
when i put a plain html page but it doesn't when i put a jsp.
is
way to turn on verbose error logging?
-Original Message-
From: Lachezar Dobrev [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 01, 2002 11:44 PM
To: Orion-Interest
Subject: Re: Newbie Orion question - webapp problem
Like always the ClassPath is a server-specific setting. On orion you
Like always the ClassPath is a server-specific setting. On orion you might
want to check orion-web.xml in the war file. For the template you might want
to use the one created by orion when the app is first deployed. Then you
should add
to the xml file.
However due to many class-path iss
I'm trying to get Orion to run a web app that's part of an ear.
I made the following changes:
IN SERVER.XML
IN DEFAULT-WEB-SITE.XML
IN THE EAR'S APPLICATION.XML
MajordomoWeb.war
/MajordomoWeb
But when I hit http://localhost/MajordomoWeb/ind
chaining question
I'm starting to get into some intersting space with filters and I've
found yet another thing that seems like it would be a requirement for
chaining filters. Order.
It seems that theres no clearly defined way to know which filter will
process a request first. I've be
I'm starting to get into some intersting space with filters and I've found
yet another thing that seems like it would be a requirement for chaining
filters. Order.
It seems that theres no clearly defined way to know which filter will
process a request first. I've been playing with placement i
This is a resend, yesterdays version seems to have vanished...
I'll confess, I'm a little confused.
Documentation relating to J2EE states that the directive in the
application.xml or web.xml files should be used to provide a unique prefix for your
web application to be access from:
eg:
Hi Garrett -
I believe this does work in Orion, at least I haven't had any known problems with it.
(I'm using 1.5.4)
Cheers
Ray
--- Garrett Skelly <[EMAIL PROTECTED]> wrote:
> Guys & Gals,
>
> has anyone deployed Orion in and enterprise environment? While trying to
> deploy our application we h
Guys & Gals,
has anyone deployed Orion in and enterprise environment? While trying to
deploy our application we have encountered a "MEMORY LEAK TYPE PROBLEM"
where EJBs are maintained in Memory and not released - in addition the
config of the max-instances in memory does not work - this is a fund
Are you using Sun's 1.3 deploytool. If so the ejb-jar.xml file does not work with Orion. You need to comment out the security role mappings, repackage the ear file and redeploy and then it will work fine.
Steve
On Mon, 2002-02-18 at 19:48, daniele rizzi wrote:
Hi all,
this Sunday I'
Hi all,
this Sunday I've got some time to spare so I tried out
the sun ejb tutorial:
in chapter 1 a stateless ejb is deployed on Application SErver,
then a client connects to it: in this step this error is produced:
what have I done to deserve this?
--- the error ---
com.evermind.server.rmi.Or
My first CMP entity bean and I have some questions.
I was wondering if it is possible to do a compound search within the O/R
mapping in orion-ejb-jar.xml?
The problem is a field from one table is needed to lookup a field on another
table to get the result.
Example:
Customer has a field called
:36 PM
To: Orion-Interest
Subject: cgi question [EXPIRED TRIAL LICENCE]
Does anyone know if orion can server cgi and what needs to be done if so.
Thanks
Does anyone know if orion can server cgi and what
needs to be done if so.
Thanks
]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Friday, January 25, 2002 9:17 AM
Subject: CMP beans and Container Managed Transaction question <- more
information
> More developments...
>
> With -Djdbc.debug=true, the failed transaction leaves a Dirty Connection
arou
More developments...
With -Djdbc.debug=true, the failed transaction leaves a Dirty Connection around on
both Oracle and PostgreSQL, so I guess the next question is... what constitutes a
Dirty Connection? and is that's what's causing the lock?
In further trials, we also tested upd
I'm hoping someone can give some insight as to why this is happening. I have a very
simple test case with one stateless session bean and 2 CMP entity beans. The session
bean just acts as a controller to modify the entity beans. All transactions are
container-managed at the session bean. The ent
I've inherited some code and it doesn't look complete, and I'm not even sure
that it will work- at least with Orion. So...
We've got multiple servers- some are always connected, some are only
connected periodically, some are only connected when the sysadmin physically
performs some task and then
ore(). If isModified() returns false, Orion knows that it doesn't need
to talk to the database
Regards,
Manuel
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Geoff Soutter
Sent: Friday, January 11, 2002 7:13 AM
To: Orion-Interest
Subject: RE: Simple quest
onfirm
the row hasn't been deleted. Then Orion calls ejbLoad which goes the the
database again to load in the actual contents of the row. So, the row in
question is accessed twice.
Then, the second time, Orion still calls findByPrimaryKey, but avoids
the ejbLoad.
The thing is here, exclusi
gt;
> Geoff
>
>
>> -Original Message-
>> From: [EMAIL PROTECTED]
>> [mailto:[EMAIL PROTECTED]] On Behalf Of
>> Sergey G. Aslanov
>> Sent: Thursday, 10 January, 2002 6:29 PM
>> To: Orion-Interest
>> Subject: Re: Simple question re cachi
iday, January 11, 2002 8:08 AM
Subject: RE: Simple question re caching/pooling of BMP Entity Beans
> Hi Sergey,
>
> Thanks for the reply. I didn't explain it very clearly did I? What I
> meant was:
>
> "However, it appears that it goes to the database (i.e. ca
> To: Orion-Interest
> Subject: Re: Simple question re caching/pooling of BMP Entity Beans
>
>
> Hi Geoff
>
> Loading of beans have these stages:
> 1. calling ejbFindBy... to get the primKeys of the entities;
> 2. checking if entities with such keys are already poo
ECTED]>
Sent: Thursday, January 10, 2002 4:51 AM
Subject: Re: question about ip allocation
>
> Hi all
>
> Thanks for all your informative responses!
>
> >Sorry but that is just not true. You can have two processes each with
> their
> >own address listening on
>Thursday, January 10, 2002, 2:01:37 AM, you wrote:
>
>GS> Hi there,
>
>GS> I'm teaching myself how to use Orion and I've got a simple question
>GS> about caching/pooling of BMP Entity Bean instances.
>
>GS> I've created a simple app which lets me
Hi all
Thanks for all your informative responses!
>Sorry but that is just not true. You can have two processes each with
their
>own address listening on the same port. In fact you can have a process per
>address since the unique combination must be address and port, the kernel
>sorts all the
independently of entity
is pooled or not.
Thursday, January 10, 2002, 2:01:37 AM, you wrote:
GS> Hi there,
GS> I'm teaching myself how to use Orion and I've got a simple question
GS> about caching/pooling of BMP Entity Bean instances.
GS> I've created a simple a
Hi there,
I'm teaching myself how to use Orion and I've got a simple question
about caching/pooling of BMP Entity Bean instances.
I've created a simple app which lets me read a BMP Entity Bean through a
Session Bean. I would expect that when I call findByPrimaryKey on my
Ent
ond to Orion-Interest <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
To: Orion-Interest <[EMAIL PROTECTED]>
cc:
Subject: RE: question about ip allocation
this is incorrect, they is a port 80 for each IP address.
As long as the clients can access each IP address, they can get to
t of ports.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]] On Behalf Of
> Maximilian Eberl
> Sent: Wednesday, January 09, 2002 5:27 AM
> To: Orion-Interest
> Subject: Re: question about ip allocation
>
>
> Your machine has 2 IP-a
Max,
Each interface (either virtual or real, as long as it has a unique IP address) has its
own bank of ports. Otherwise, you would have to have a separate box for each website,
which isn't necessary.
Jeff.
On Wed, 9 Jan 2002 11:27:19 +0100
"Maximilian Eberl" <[EMAIL PROTECTED]> wrote:
> Y
That is not true. Every ethernet interface can listen on its own port 80.
This can even be done with "virtual interfaces" which share the same
physical network card. Ports are a abstraction implemented at the driver
level and based on header information in each packet.
tim.
> Your machine has 2
dress.
- Original Message -
From: "Maximilian Eberl" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Wednesday, January 09, 2002 5:27 AM
Subject: Re: question about ip allocation
> Your machine has 2 IP-adresses but only one port 80
IIS. What
you can do then is map an external address to the Orion ip/port to cater for
people outside your firewall.
HTH,
Justin
-Original Message-
From: Morten Raahede Knudsen [mailto:[EMAIL PROTECTED]]
Sent: 09 January 2002 07:52
To: Orion-Interest
Subject: Re: question about ip
Your machine has 2 IP-adresses but only one port 80 !
No 2 servers can listen on 1 port - no matter how many network cards You
pull in.
You have to bind the IPs to different ports.
I am doing this on Linux but don't know how this is done on Windows.
Max
--
Maximilian Eberl
- developer -
netzd
Hi
Thanks for your answers!
>try adding a host="x.x.x.x" attribute to the web-site tag in
>default-web-site.xml
I have tried that, it only oanswers on the given address, but it still seems
to block for other servers on other ip addresses.
>Try changing the port number that Orion accepts reque
"Orion-Interest" <[EMAIL PROTECTED]>
Sent: Tuesday, January 08, 2002 3:36 PM
Subject: question about ip allocation
Hi
I'm sorry if this is a newbie question, but I haven't found the answer in
the archive.
My machine has two IP addresses.
In my web-site.xml I have spe
On Tue, Jan 08, 2002 at 04:36:28PM +0100, Morten Raahede Knudsen wrote:
> I'm sorry if this is a newbie question, but I haven't found the answer
> in the archive. My machine has two IP addresses. In my web-site.xml
> I have specifically set Orion to use one of those ip addre
Hi
I'm sorry if this is a newbie question, but I haven't found the answer in
the archive.
My machine has two IP addresses.
In my web-site.xml I have specifically set Orion to use one of those ip
addresses.
It only answers on that specific ip address.
However, when another server (IIS
Morten, see if this paper helps answer your question:
http://users.sdsc.edu/~whedley/ejb/object_relational_mapping_in_orion.pdf
Good luck!
Gordon.
- Original Message -
From: "Morten Wilken" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
S
ssian :: http://www.atlassian.com
Supporting YOUR J2EE World
Morten Wilken wrote:
> i have a design question for the list:
>
> i have a situation where i have some persons that each owns a number of
> games... each game has only one owner.
>
> using orions OR mappin
- Original Message -
From: "Morten Wilken" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Sunday, December 30, 2001 2:51 PM
Subject: design question: one to many relationship
> i have a design question for the list:
>
> i h
i have a design question for the list:
i have a situation where i have some persons that each owns a number of
games... each game has only one owner.
using orions OR mapping features i have put a collection of games in each
personbean. This creates a many-to-many table with a personid and a
Màris Orbidàns wrote:
> Hello
>
> I have several questions about design, "best practises":
>
> 1) Where to store client's profile information (like login name) ?
> session or system state bean ?
>
> 2) How to create and use a system state bean ?
>
> System state bean should be in scope "se
Hello
I have several questions about design, "best practises":
1) Where to store client's profile information (like login name) ?
session or system state bean ?
2) How to create and use a system state bean ?
System state bean should be in scope "session", shouldnt it ?
3) Where to put bus
an cluster, and you can setup SSL, but just
not at the same time.
- Original Message -
From:
Steve
Best
To: Orion-Interest
Sent: Friday, October 19, 2001 4:35
AM
Subject: Re: Yup, SSL question
Nevermind, I have found the keystore and have
imported the
- Original Message -
From: Steve
Best
To: Orion-Interest
Sent: Thursday, October 18, 2001 11:35 AM
Subject: Re: Yup, SSL question
Nevermind, I have found the keystore and have
imported the certificate. I believe my problems now have to do with our
clustering/load balancing
main question is ... aren't you using
Alteon as you ssl accelerator...and if so, why are the backends in
ssl?
-Original Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Steve
BestSent: Thursday, October 18, 2001 11:36 AMTo:
Orion-InterestSubject: Re
ertificate correctly because it isnt for the local host. The question is,
how do I configure Orion to load a certificate for our virtual site? Here
is my configuration, with some entries modified to protect the
innocent:
load-on-startup="false" />
: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Sarathy
Mattaparti
Sent: Thursday, October 18, 2001 9:45 AM
To: Orion-Interest
Subject: Tunneling Question
Hi,
Is it possible to do tunneling in application leveal ?. cause i'm having
3 domain names but wanna do tunneling for one d
Hi,
Is it possible to do tunneling in application leveal ?. cause i'm having
3 domain names but wanna do tunneling for one domain only.
i went through docs but its for global.
tunnel
com.evermind.server.http.TunnelServlet
targetRoot
http://localhost:8080/
(Thi
So, I do not have the original keystore file
generated during the certificate request, but I have the original certificate
request private key file, as well as the certificate file from Thawte. How
do I get them both into a working keystore?
Steve
alf Of Wendell
> Nichols
> Sent: Tuesday, October 16, 2001 12:21 AM
> To: Orion-Interest
> Subject: Re: Orion on Linux, Follow-up Question
>
>
> I think this is because your user account is unable to run the server on
> reserved port 80. Modify Orion's default-website.xml fi
I think this is because your user account is unable to run the server on
reserved port 80. Modify Orion's default-website.xml file to use a
port above the reserved range, (1000 or something like that). I use 8000.
wcn
Jimbo Jones wrote:
> My previous problem, starting Orion on linux, was du
terest <[EMAIL PROTECTED]>
>To: Orion-Interest <[EMAIL PROTECTED]>
>Subject: RE: Orion on Linux, Follow-up Question
>Date: Thu, 11 Oct 2001 16:41:43 +0200
>
>Hi Jimbo,
>
>You can find some responses here
>http://www.orionsupport.com/articles/unixprocess.html
>
>Lu
Title: EntityBean Question
I
thought that for a while, but in many instances, you don't have to do that. You
could end up in trouble trying to maintain updatable views.
Part
of the reason we were thinking this is because we wanted to create entity beans
on top of an existing co
Title: EntityBean Question
For all of you using entity beans I was wondering do u map the entity bean to 1 table. Or do u map it more to a view of a few tables??? I was just thinking it could be helpful to do that in many instances ... but i was just wondering if that is looked
Hi Jimbo,
You can find some responses here
http://www.orionsupport.com/articles/unixprocess.html
Luciano
-Original Message-
From: Jimbo Jones [mailto:[EMAIL PROTECTED]]
Sent: giovedì 11 ottobre 2001 15.34
To: Orion-Interest
Subject: Orion on Linux, Follow-up Question
My previous
My previous problem, starting Orion on linux, was due to the fact that I was
calling upon the wrong JVM (even though I thought I had my path set
correctly). That is resolved. Now I have another problem that seems more
linux-related than Orion-related, but perhaps some of you know the solution
Title: EJB Workings Question
I am trying to figure out why i am getting marshalling exceptions in preparing hte bean insteance.
And was wondering could someone explain the order things go in so i can attempt to figure out whats happening
Like if i do a set from a servlet to an entity bean
Looks like what you really need is to make these methods static and not
bother with object instance at all.
Jirka Vorac wrote:
>
> Hi,
>
> this question is not about Orion. I hope you'll answer it.
>
> I don't know when to use object pool.
>
> Following sc
Hi,
this question is not about Orion. I hope you'll answer it.
I don't know when to use object pool.
Following scenario is what I need, but I'll be hapy
to hear more about pooling.
I only know one reason for pooling. It is decreasing
time of creation.
I have class providi
-Interest
Subject: Newbie question
I've been working with the Sun J2EE RI. What is the Orion analog to the
Swing "deployment application" for Orion. Mainly I am looking for a tool to
(semi-) automate the creation of EARS, WARS, the various .xml files etc.
Thanks,
Pito
THIS MESSAGE I
Title: Newbie question
I've been working with the Sun J2EE RI. What is the Orion analog to the Swing "deployment application" for Orion. Mainly I am looking for a tool to (semi-) automate the creation of EARS, WARS, the various .xml files etc.
Thanks,
Pito
ptiembre de 2001 13:32
> To: Orion-Interest
> Subject: Re: Transaction question ?
>
>
> Eddie wrote:
> >
> > Hellu,
> >
> > Please some help on the following transaction scenario ?:
> >
> > I am receing some information through a HTTP post meth
Eddie wrote:
>
> Hellu,
>
> Please some help on the following transaction scenario ?:
>
> I am receing some information through a HTTP post method. The servlet,
> running as part of a J2EE application, calls a EJB method A. The EJB method
> does some little processing. After this, it checks som
Hellu,
Please some help on the following transaction scenario ?:
I am receing some information through a HTTP post method. The servlet,
running as part of a J2EE application, calls a EJB method A. The EJB method
does some little processing. After this, it checks some conditions, and
might do som
greg,
Use a ConnectionPoolDataSource, then Orion will return a different data
source.
Dave
-Original Message-
From: Greg Kogan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 13, 2001 12:41 PM
To: Orion-Interest
Subject: DataSource question
I have run into a problem where
I have run into a problem where the a DataSource does not open more then
one connection. I have not purchased a license yet, so could this be
happenning
because of lack of a license or is it a bug(I doubt it, but anything is
possible...) ? So far, I tried opening multiple connections using the
he future AJP13 could be provided.
>
>Hope this help
>
>Luciano
>
>-Original Message-
>From: Lucio Piccoli [mailto:[EMAIL PROTECTED]]
>Sent: mercoledì 12 settembre 2001 11.13
>To: Orion-Interest
>Subject: webserver proxy plugin + i/o question
>
>
>hi
-
> Da: Lucio Piccoli [mailto:[EMAIL PROTECTED]]
> Inviato: mercoledì 12 settembre 2001 11.13
> A: Orion-Interest
> Oggetto: webserver proxy plugin + i/o question
>
>
> hi all,
> i am new to orionserver but i have read the docs and the
> archives relating
> trying to f
settembre 2001 11.13
To: Orion-Interest
Subject: webserver proxy plugin + i/o question
hi all,
i am new to orionserver but i have read the docs and the archives relating
trying to find information relating to:
i) Webserver proxy plugins
ii) The type of i/o handling used.
A variety of appserver
hi all,
i am new to orionserver but i have read the docs and the archives relating
trying to find information relating to:
i) Webserver proxy plugins
ii) The type of i/o handling used.
A variety of appserver vendors (BEA/IBM) recommend an architecture of a high
performance webserver ( iplanet/apa
Title: RE: Registering PL/SQL table OUT parameter in jdbc andretrieving ( challenging question)
You got to have Oracle8.1.7 oci drivers to execute the following. If you install 8.1.7 you will get documentation with that. These registerIndexTableOutParameter is in OracleCallableStatement
);)
thanks once again,
Regards,
Komal Kandi.
-Original Message-
From: bombalaa-orion [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, August 21, 2001 6:59 PM
To: Orion-Interest
Subject: Re: Registering PL/SQL table OUT parameter in jdbc
andretrieving ( challenging question)
Hi Komal
, August
22, 2001 08:05:05 AM
To: Orion-Interest
Subject: Registering
PL/SQL table OUT parameter in jdbc and retrieving ( challenging
question)
Hi All,Thanks in advance if i would be given the
suggestion.I'm nowcalling a stored proceudre in Oracle
Title: RE: Registering PL/SQL table OUT parameter in jdbc and retrieving ( challenging question)
If you want to use the user defined types which are created inside the package you got get the latest Oracle drivers.
Orcale 8.1.7 with OCI has only support for retrieving the user defined types
Hi All,
Thanks in advance if i would be given the suggestion.I'm now
calling a stored proceudre in Oracle from Java,where I use
CallableStatement,but i've got to stop at the point that when i
register the output parameter,i found no data type matches this
nested table type within this procedure in
Hello,
I am trying to get security working as per the instructions on
OrionSupport.com (http://www.orionsupport.com/articles/usermanager.html)
and I am having some troubles. Following these procedures is creating
some questions about application deployment and the
applications-deployment
Title: SV: Roll-BACK question.
Hellu,
Forgot to answer this before:
IT WORKS great... it nicely roll-back my
transaction when using setRollbackOnly().
Thanks,
Ed
- Original Message -
From:
Patrik Andersson
To: Orion-Interest
Sent: Tuesday, August 07, 2001 3:38
PM
Title: SV: Roll-BACK question.
Referring to the EJB1.1 spec, application
exceptions (i.e. any exception that you make, subclassed from Exception) do not
roll back transactions. This is so that EJB can give the application a
chance to recover from the exception. To make the transaction roll
Title: SV: Roll-BACK question.
Thanks Patrick,
Let me check if I understand you
correctly:
So what I do is: make my own Exception, that
extends Exception, and just before I throw my exception I call
setRollbackOnly
that's it ??
Thanks,
Eddie
- Original Message -
Title: SV: Roll-BACK question.
Accordning to the EJB spec you can NEVER let your exceptions extend RemoteException. They must inherit java.lang.Exception either directly or indirectly (although not java.rmi.RemmoteException or java.lang.RuntimeException). Also, prior to throwing your
Hellu,
I want to to force a roll-back in my EJB method (I use CMP), under certain
curcumstances.
I like to do that by trhowing a self-made exception, but this doesn't work,
please some help ?
What I do ?:
I extend an self-made exception on RemoteException (also extended it on the
EJBException)
Subject: RE: Transaction question
> from the ejb-2.0 spec, it is a little unclear, but it says that putting a
> deafault transaction attribute is ok, and the default will be used for all
> methods that are not explicitly defined to have a different transaction
> attribute.
>
> so this s
y, August 06, 2001 4:57 PM
Subject: RE: Transaction question
> Set up a default transaction-attribute for your bean.
>
> This is from the EJB 2.0 draft.
> Page 353
> Section 17.4.1
>
> Use a "*" for the .
>
>
> EJBNAME
> *
>
>
> - Seth
&
the
SmsManager
nl.unwired.sgs.sms.SmsManager
Remote
B
RequiresNew
-Original Message-
From: Eddie Post [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 06, 2001 1:48 AM
To: Orion-Interest
Subject: Re: Transaction question
I
PROTECTED]]On Behalf Of Eddie Post
Sent: Monday, August 06, 2001 4:48 AM
To: Orion-Interest
Subject: Re: Transaction question
I already replyed to this message but noticed that it never came through...
so here it is again...
Thanks for the earlier reply.
My reaction:
I understand what you do belo
or methods with a regular expression or something like that ??)
Eddie
- Original Message -
From: "Simon Evans" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Thursday, July 26, 2001 7:49 PM
Subject: RE: Transaction question
> i think y
27;t I define a transaction type as default for example, and make an
exception for the method B ??
Ed
- Original Message -
From: "Simon Evans" <[EMAIL PROTECTED]>
To: "Orion-Interest" <[EMAIL PROTECTED]>
Sent: Thursday, July 26, 2001 10:35 PM
Subject: RE: Transactio
ponse);
} catch (RemoteException re){//do something }
catch (NamingException e) { // do something}
catch (DuplicateUserException due){//do something else}
regards,
the elephantwalker
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf
HI
Can anyone please help me in setting up application level security in
orion. I have read the tutorial on Security using UserManager from
orionsupport.com web-pages.
In that i cannot find out a way to add my users dynamically to the
respective groups that they belong to. I get the group i
1 - 100 of 430 matches
Mail list logo