Re: Please help me

2001-06-12 Thread denis despinoy

data-source

Change the following line the read the evermind class
copy and paste the line from the Hypersonic datasource
class 
...

  class=REPLACE THIS TO READ the evermind class
oracle.jdbc.pool.OracleDataSource
  name=Oracle


  location=jdbc/devDS
  xa-location=jdbc/xa/devXA
  ejb-location=jdbc/devDS
  connection-driver=oracle.jdbc.driver.OracleDriver

url=jdbc:oracle:thin:system/manager@station-one:1521:application
  username=system
  password=manager
  inactivity-timeout=30
  schema=database-schemas/oracle.xml
 /
 


--- [EMAIL PROTECTED] wrote:
 Hi Everybody
I am having problem in getting orion connected to
 Oracle 8i on Solaris 8 . I cannot execute the
 addressbook example due to that though i have
 successfully tested the Orion-Primer which is
 without EJBs
 
I keep getting SQL IOException . Network Adapter
 Error When it is deploying the application.jar file
 
   I have following configuration
  1) Solaris 8
  2) Oracle 8i
  3) j2sdk1.3.1 as i want to implement SSL
  4) j2sdkee1.3.1
  5) Orion1.4.0
   I am using CMP for Entity Bean 
 
 I have following data-source
 data-source
  class=oracle.jdbc.pool.OracleDataSource
  name=Oracle
  location=jdbc/devDS
  xa-location=jdbc/xa/devXA
  ejb-location=jdbc/devDS
  connection-driver=oracle.jdbc.driver.OracleDriver

url=jdbc:oracle:thin:system/manager@station-one:1521:application
  username=system
  password=manager
  inactivity-timeout=30
  schema=database-schemas/oracle.xml
 /
 
   I have gone through all through the mailing list
 but no success. Can you please help me with this.
 
 Thanks
 Mahesh
 
 

__
 123India.com - India's Premier Portal 
 Get your Free Email Account at
 http://www.123india.com
 
 
 


=


__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/




Re: ...need urgent help!

2001-04-25 Thread denis despinoy

What do u mean by coded connection ?

Are u referring to secure ! If so we used the jsse
package to implement an ssl protocol. Otherwise u can
configure orion with a secure option for server
authentication. see the ssl tutorial online at the
orion website select resource and click on
orionsupport there u'll find some guidelines.

Hope this help !

denis 

--- Tobias Streckel [EMAIL PROTECTED] wrote:
 Hello,
 
 how can I make an coded connection between orion an
 my standalone java
 client?
 
 I think I must use the jce but how?
 
 Thanks
 
 Tobi
 
 


__
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/




Orion support available @pacific time

2001-04-19 Thread denis despinoy


Hey Guys,

We've elected Orion as our appserver about 7 months
ago and got rid of Weblogic at the same time.

We are now shipping our product and were tremendously
suffering from lack of technical support services from
Orion. Issues that were brought up too many times by
our client and were causing grievances to our sales
team.

We met a company specializing in j2ee support and they
are now offering tech and consulting support for
Orion.
They operate on Pacific Time and We are quite pleased
with them, our clients are now reassured and our offer
is as good as any other...

That company is called netcracker based out of San
Jose (CA). Guess u might be want to know this.

denis
Javadaemonus





__
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/




Re: Credit-Card Processing

2001-04-10 Thread denis despinoy


We ran into to the same prb and corrected as follow

The certificate cn must match the url u are calling
i.e cn=www.mysite.com

That's it



--- Santosh Kumar [EMAIL PROTECTED] wrote:
 Does anybody use Verisigns's Payflow Pro for credit
 card processing?
 If yes, when i am trying to connect to the verisign
 server
 it gives me -32 error code saying "The certificate
 chain did not validate,
 common name did not match URL"

 Help
 Santosh
 -Original Message-
 From: Jens Stutte [EMAIL PROTECTED]
 To: Orion-Interest [EMAIL PROTECTED]
 Date: Tuesday, April 10, 2001 1:02 PM
 Subject: AW: Callbacks on session beans... are they
 legal?


 Yes, it's legal (and we're doing similar things
 successfully, with a mix of
 session and entity beans). As far as I understood,
 with entity beans the
 reentrantTrue/reentrant flag must be set in
 ejb-jar.xml (at least we set
 it and it works, never tried without). With session
 beans, no special
 settings are needed. Of course, this easily may lead
 to endless recursions,
 so be careful...

  -Ursprüngliche Nachricht-
  Von: Alex Paransky
 [mailto:[EMAIL PROTECTED]]
  Gesendet am: Dienstag, 10. April 2001 01:42
  An: Orion-Interest
  Betreff: Callbacks on session beans... are they
 legal?
 
  Is it legal for session bean A to create session
 bean B, and
  pass it to
  session bean C so that C can call on B?
 
  For example, if A is acting as a controller, B is
 acting as a
  factory, and C
  is acting as an algorithm.  So a controller needs
 to execute
  an algorithm
  which requires a factory as one of it's
 parameters.  As the
  algorithm runs,
  it calls on the factory to create the resources it
 needs.
 
  Thanks.
  -AP_
 
 





__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail.
http://personal.mail.yahoo.com/




Re: Datasource confusion

2001-04-05 Thread denis despinoy


This line jdbc:mysql://luggage/log is not complete and
consider mysql local.

The syntax for url = 

drivertype:@location:PORT:instancedb
ex: jdbc:oracle:[EMAIL PROTECTED]:777:FDEV

for hsql this points to local
jdbc:HypersonicSQL:./databases/mydb = :. means local

for u I think it should be but I do not know your
network topo try
jdbc:mysql:@luggage.log:yourdbpath

--- "Koster, K.J." [EMAIL PROTECTED] wrote:
 Dear All,
 
 I am trying to use MySQL and Orion where the MySQL
 database is located on a
 different host than Orion is.
 
 The beans look up the datasource in JNDI. I've
 specified the datasource in
 in ejb-jar.xml. (The resource-ref thingy) This is
 found, becasue I no longer
 get naming exceptions.
 
 In data-sources.xml,  I have specified the proper
 database URI
 (jdbc:mysql://luggage/log).
 
 However, I get an exception saying that on localhost
 there is no mysql
 database (which is true, 'cuz it's on luggage).
 
 Obviously Orion is feeding the bean a database URI
 that points to localhost.
 How can I tell Orion to use the database on the
 other machine?
 
 I've tried shouting in the floppy drive, but that
 does not help either. :-/
 
 Kees Jan
 
 
  You are only young once,
but you can stay immature all your life.
 
 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




Re: problem running oracle with orion: 'oracle.jdbc.driver.OracleDriver' not found!

2001-03-24 Thread denis despinoy

Hi,

Just copy classes12.zip (Oracle jdbc driver) in your
orion/lib directory - just alongside HypersonicSQL
driver hsql.jar...

In Orion/config/data-sources.xml u can setup the
DataSource lookup along with the url,database name usr
and pwd and instance of the database u ref etc...

Post if u need a copy of my data-sources.xml !

denis 
--- Roland Dong [EMAIL PROTECTED] wrote:
 
 
 I tried to run oracl with orion. When I started
 orion I got the following
 error message:
 
 Error initializing server: DriverManagerDataSource
 driver
 'oracle.jdbc.driver.OracleDriver' not found.   Where
 is driver supposed to
 be located?  I have set the environment so that the
 class12.zip is included
 in the classpath.
 
 Should
 class="com.evermind.sql.DriverManagerDataSource"
 include
 OracleDriver?
 
 this is my data-source.xml:
 
 ?xml version="1.0"?
 !DOCTYPE data-sources PUBLIC "Orion data-sources"
 "http://www.orionserver.com/dtds/data-sources.dtd"
 
 data-sources
   !--
   An example/default DataSource that uses an
 ordinary
   JDBC-driver (in this case hsql) to create the
 connections.
   This tag creates all the needed kinds
   of data-sources, transactional, pooled and
 EJB-aware sources.
   The source generally used in application code is
 the "EJB"
   one - it provides transactional safety and
 connection pooling.
   --
 
 data-source
   class="com.evermind.sql.DriverManagerDataSource"
   name="Oracle"
   location="jdbc/OracleCoreDS"
   xa-location="jdbc/xa/OracleEJBDS"
   ejb-location="jdbc/Oracle"
   
 connection-driver="oracle.jdbc.driver.OracleDriver"
   username="scott"
   password="tiger"
   url="jdbc:oracle:thin:@uxb.wiu.edu:1521:uxora"
   inactivity-timeout="30"
   /
 
   /data-sources
 
 
 Please help!
 
 Roland
 
 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




Re: Using EJBs with Delphi

2001-03-24 Thread denis despinoy

On the client side and in Delphi u can wrap the rmi
calls around the client stub to resolve the jndi
lookups.This works ok but was too much work for a
small contract dev team.

For increased productivity (time to market) we've
decided to install openldap (opensource) and mapped
the entry of our ejb home. From the client side we
just make calls to the ldap and resolve the entry 
type cast back to the object needed. This works great
for us when dealing with non CMP object and stateless
request.

ClientSide  MiddleTier ServerSide

Client  ||  ldap-|ejbServer   || OracleBackEnd
  Postgresql.


For the transaction part of our system and deal with
our client legacy systems we represented our 
transactions in XML and supplied bespoke DTDs to
address our client formatting issues. Our parsers get
the request from the Delphi app and ship that request
as a XML document-request with specific http header to
specify for inbound or outbound request.On header
digest the parser resolve the middle tier resources
needed to process the request. This system handle our
cmp based object/transactions.

That's it...

denis

--- Sergei Batiuk [EMAIL PROTECTED] wrote:
 Hi EJB gurus,
 
 Does anynone know how to connect to an EJB from a
 dephi client app?
 
 Thanks in advance,
 Sergei Batiuk.
 
 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




Re: help for what ?

2001-03-24 Thread denis despinoy


--- elton [EMAIL PROTECTED] wrote:
 
 help
 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




Re: EJBQL

2001-03-02 Thread denis despinoy

After testing against the ejb2.0 spec It appears Orion
and Weblogic are the only two considered EJB2.0
compliant so far.

What are looking after in the ejb2.0 spec ?

DD


--- Ray Harrison [EMAIL PROTECTED] wrote:
 The latest information in hand that I know of is
 that no - they do not support EJBQL - although
 that may have changed recently. Not sure that I know
 of any app server that is fully EJB2.0
 compliant as yet...
 
 Cheers
 RHH
 --- fresnaULL [EMAIL PROTECTED] wrote:
  Does Orion provide support for EJBQL? Which Orion
 version?
  Is Orion full EJB 2.0 compliant?
  
  Thanks in advance
  
 
 
 __
 Do You Yahoo!?
 Get email at your own domain with Yahoo! Mail. 
 http://personal.mail.yahoo.com/
 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




ssl and com.evermind.util.User ?

2001-03-02 Thread denis despinoy


I've installed a portion of my site under SSL. this
part works great and thanks to the info got from this
list !

I'm now trying to get the
/demo/ssl/ssl-user-registration.jsp to run but I'm
faced with 2 prbs !

it seems I cannot locate 

1) com.evermind.util.User ! which jar file does it
live in ?

2) com.evermind.util.UserManager ! I found a
com.evermind.security.UserManager ?

Did orion refactor their code ? 

thanks

__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




RE: I switch from X to Orion because:

2001-02-27 Thread denis despinoy


As a Principal Architect, for me time to market, sky
rocking performance and ease of development were good
enough to investigate and invest 2 of my developers
and myself for 3 days.

After our research and due dilligence (lack of doc so
we learned the hard way !) All the feature we needed
are there and they work fine. We were left with
Weblogic and Orion on our short list as the only
ejb2.0 compliant appserver in the industry. 

Orion hasn't got the impressive references BEA comes
up with in production yet Orion doesn't come up with
the assle one has to deal with when facing the sales
force of BEA and they famous and unrealistic node
locking licenses. Websphere, ATGDynamo, IPlanet and
some others were long gone in phase 2 of our testing
!!!

The results of the above gave us the ultimate winner
across all division of my present company - ORION
:-)) my CFO was the most shiny and happy looking !!!
CTO and VP of RD gave us the bottoms up to roll
development on this server. This left BEA and VITRIA
with they sucky BusinessWare product arguing our
competences and technical abilities...


Dr Denis Eric Despinoy
Principal Architect

PS: thank u to the list while transitionning to
orion...



--- Russ White [EMAIL PROTECTED] wrote:
 X is to slow to implement new J2EE specs while Orion
 is moving at a nice
 pace. And once you understand the spec, and take a
 little familiarization
 time Orion simply works like a dream. Granted
 documentation is lacking, but
 the product is solid and feature rich.
   -Original Message-
   From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On
 Behalf Of Vaskin Kissoyan
   Sent: Tuesday, February 27, 2001 2:05 PM
   To: Orion-Interest
   Subject: I switch from X to Orion because:
 
 
   Please fill in the blank as you see fit.
 
 
 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/




project manager - Orion

2001-02-13 Thread denis despinoy

Hi Guys,

I've been exploring the appservers for some time now
and it is high time we selected the appserver for our
project.

I'm contemplating the usual big one i.e. weblogic,
dynamo ...and Orion.

Any pointers to how Orion would and perform in a
production environmnet to further argue and support
the decision making of selecting Orion as main
appserver ?

All your input are welcome !

thanks

denis

__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/




Re: Servlet Mapping and Access

2001-01-17 Thread denis despinoy


In global-web-application.xml under ORIONROOT/config u
can set or check your servlet webdir

servlet-webdir=/servlet (i think that is the default).






--- Santosh Kumar [EMAIL PROTECTED] wrote:
 try  http://localhost/junitee/servlet/TestServlet
 
 - Original Message -
 From: hartmut wilms [EMAIL PROTECTED]
 To: Orion-Interest [EMAIL PROTECTED]
 Sent: Wednesday, January 17, 2001 2:17 PM
 Subject: Servlet Mapping and Access
 
 
  Hi there,
 
  I'm really lost. I can't figure out how to access
 a mapped servlet from a
  Web-Browser. I tried several URLs, like:
 
  - http://localhost/gamsytest/TestServlet
  - http://localhost/gamsytest/junitee/TestServlet
  - http://localhost/junitee/TestServlet
  - ...
 
  Accessing JSPs in the example applications works
 fine. My problem is that
 I
  don't understand the relationships between all the
 orion xml
  configuration/descriptor files. I know that they
 are documented, but
  sometimes some pieces are missing or I don't get
 enough information. After
  all I'm a Newbie to Orion.
 
  My configuration:
 
  server.xml
  ...
  application name="gamsytest"
 
  path="../applications/junitee-orion.ear" /
  ...
 
  default-web-site.xml
  ...
  web-app application="gamsytest"
 name="gamsytest-web"
  root="/gamsytest" /
  ...
 
  ??? What values are expected for name and root?
 
  web.xml
  ...
 servlet
servlet-nameTestServlet/servlet-name
descriptionServlet that calls the
 TestRunner bean/description
 
 

servlet-classcom.itellium.aeservices.junit.htmlui.TestServlet/servlet-cla
  ss
 /servlet
 servlet-mapping
servlet-nameTestServlet/servlet-name
url-pattern/TestServlet/url-pattern
 /servlet-mapping
  ...
 
  application.xml
  ...
 module
web
   web-urijunitee-web.war/web-uri
   context-root/junitee/context-root
/web
 /module
 ...
 
  What are the relationships between all these
 name/mapping attributes. I
 used
  the web.xml and application.xml with jBOSS and
 WebLogic without having any
  problems:
 
  http://.../junitee/TestServlet WORKED!
 
  Can anybody help me and explain the orion way?
 
  Regards
 
  Hartmut Wilms
 
 
 
 
 


__
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail. 
http://personal.mail.yahoo.com/