RE: Credit Card Authorization

2001-01-29 Thread Gamini de Alwis
Thank you Brett for your reply. Did you just construct a https URL and send it through a socket (non SSL)? Gamini de Alwis mailto:[EMAIL PROTECTED] Software Developer Business Manager Software Tel (03) 9813 3022. Fax (03) 9882 5887 -Original Message- From: Brett Lane [mailto:[EMAIL P

RE: Credit Card Authorization

2001-01-29 Thread Gamini de Alwis
Thank you Victor for your suggestion. I do not want a secure area within Orion as yet. At this stage I want to get a connection to the Secure Site handling the payment. Do I still need to configure SSL within Orion and have a JCE Provider? When I tried to get a connection I got a java.ne

RE: Error messages

2001-01-29 Thread Lynch_Wu
Hi All Someone please help me because I cannot find anyway to solve this error message during deployment. "Unknown security-role in security-role-mapping: users" I have not set any security role mapping anywhere, but orion-ejb-jar.xml automatically generates such mapping. So how

Re: Session EJB Accessibility

2001-01-29 Thread Gary Shea
It sounds like you're describing an entity bean more than a session bean. An entity bean can be called by many clients although access is serialized. And certainly the role of an entity bean is to encapsulate data in a apparently-storage-mechanism-independent manner, from the client's perspectiv

Re: Downloading a file via a Servlet

2001-01-29 Thread Trevor Squires
I tend to put the filename as pathinfo - i.e. /myservlet/made-up-name.pdf?param1=yadda If memory serves me, you need to change the servlet mapping to be /myservlet/* for this to work. HTH, Trevor > "Van Dooren, Damian" wrote: > > > I was wondering if anyone knew of a way to get around the fo

Subscribe me

2001-01-29 Thread Solanki Manish
Please subscribe me   Thanks

frustrated - jdbc: No suitable driver

2001-01-29 Thread Tom Mitchell
Hi All, I am used to WebLogic, so please pardon my ignorance... I am trying to get my WebLogic application to run on Orion. I have a DataSource set up to PostgreSql. It seems OK because this Orion JSP works fine: InitialContext ctx = new InitialContext(); out.print("Context: " + c

Accessing Orion-EJB-Server on one machine from Orion-web-server on another?

2001-01-29 Thread Globetrot Communications
What is the best way to configure two installations of Orion, on different machines, so web-server on one can access the EJB-Server on the other? Can this be done through only the configuration files? Thanks Satish Gupta = __ 5.5 cents ca

Orion mishandles Javascript in JSP

2001-01-29 Thread Romen Law
ello, The way Orion handles JavaScript codes in JSP files is totally wrong. The following lines in a

RE: URL Mapping of "/*"

2001-01-29 Thread Gerald Gutierrez
No one's replied, and I already have. I realized I made a small typo though. The first ServletPath/PathInfo below, I think, should be / and /hello. At 06:06 PM 1/29/2001 -0300, you wrote: >uh, if nobody replies, please post it in bugzilla > >TIA > >JP > >-Original Message- >From: Geral

RE: Connection reset by peer: socket write error Can someone help

2001-01-29 Thread Tim Endres
All I can say is, WOW! I guess I will stick with server-side xslt for now! There appears to be no reasonable workaround from the server's point of view. You approach with JavaScript is what my book, Applied XML, recommends, but I would prefer the content type association myself. Have you checked

Re: Downloading a file via a Servlet

2001-01-29 Thread Tim Endres
> We have a servlet that sends back PDFs that are stored in a database. > Everything seems to work great but the one oddity/issue that I would like to > solve if possible is. When someone wants to save the PDF, instead of > viewing, it wants to save the PDF as the name of the servlet. I understand

Session EJB Accessibility

2001-01-29 Thread Mark Bernardinis
Requirements: An EJB to be Stateful Accessible by more than client Share the same data object and information Summarising the above information, I would like to have an EJB that can be called by many clients yet share the same underlying data within the bean. These clients may be another applica

Re: Downloading a file via a Servlet

2001-01-29 Thread Norman Jefferies
"Van Dooren, Damian" wrote: > > I was wondering if anyone knew of a way to get around the following > situation: > > We have a servlet that sends back PDFs that are stored in a database. > Everything seems to work great but the one oddity/issue that I would like to > solve if possible is. When s

Re: Downloading a file via a Servlet

2001-01-29 Thread Boris Erukhimov
You may try this for download any type of file //Ns and MSIE need different content type to force download if(-1 < _request.getHeader("User-Agent").indexOf("MSIE") ) response.setContentType("message/external-body; access-type=anon-ftp") ; else r

SV: Pooled Data Source

2001-01-29 Thread Niklas Uhrberg
Hello, why do you use the same location for location and ejb-location? That might not be a good idea. /Niklas Uhrberg -Ursprungligt meddelande- Från: Daniel Cardin <[EMAIL PROTECTED]> Till: Orion-Interest <[EMAIL PROTECTED]> Datum: den 29 januari 2001 17:29 Ämne: Pooled Data Source >We

Virtual Server question

2001-01-29 Thread Johnson, Robert
I have read the virtual server documentation on orionsupport.com, and I understand how to host two web-sites with one IP address (ie www.site1.com and www.site2.com) . My question is what is the term for having a domain split into two sub-domains (ie www.site1.com and forums.site1.com)? Would

BUG: Can't cast RMI interfaces in 1.4.5

2001-01-29 Thread Roger Vaughn
In one of my webapps, I have to do an RMI call to an outside RMI server. I'm locating the server with a plain old traditional lookup like this: MyRemote server = (MyRemote)Naming.lookup("myserver"); But Orion 1.4.5 complains that it can't load the class MyRemote, even though it is included in

RE: Why is Netscape slower with Orion?

2001-01-29 Thread Robert Huff
Netscape is a CPU pig. Turn its prioriry down and turn Orions up using the task manager.   -Original Message-From: Dan DiCesare [mailto:[EMAIL PROTECTED]]Sent: Monday, January 29, 2001 9:58 AMTo: Orion-InterestSubject: RE: Why is Netscape slower with Orion? So how do yo

RE: URL Mapping of "/*"

2001-01-29 Thread Juan Lorandi (Chile)
uh, if nobody replies, please post it in bugzilla TIA JP -Original Message- From: Gerald Gutierrez [mailto:[EMAIL PROTECTED]] Sent: Lunes, 29 de Enero de 2001 15:45 To: Orion-Interest Subject: URL Mapping of "/*" When I map a servlet to /*, and I go to a URL /hello, should not: Serv

RE: application.log file size

2001-01-29 Thread Thomas Pridham
Very good question. When doing stress testing, our log files were getting to 200-300M each time. Of course Orion has the file open for "writing", so what is suppose to happen in a production environment? A solution to the Orion developers may be what IIS does, a new log file for each day. Gran

RE: ClassLoader.getResource not working in 1.4.5

2001-01-29 Thread Jason Smith
>From the JDK 1.3 Javadoc for ClassLoader.getResource(): This method will first search the parent class loader for the resource; if the parent is null the path of the class loader built-in to the virtual machine is searched. That failing, this method will call findResource to find the resource.

Re: application.log file size

2001-01-29 Thread Tim Endres
My thought is that you should rotate that log file the same way that many logfiles are rotated. Then it will not grow to 2.1GB. tim. > Hey there, > > Has anyone ever delt with the application.log file size? We ran into a > situation where orion died because it could not access the log file. It

Re: Does Orion provide Bean-pooling?

2001-01-29 Thread Satish Gupta
Two comments!   1. I had to, occasionally, flush EJBCache to avoid getting a java.lang.OutOfMemory error, which, to me, implied that Orion was not passivating the beans!   2. Shouldn't there be a way to adjust the pool-size to tune the application? Too small a pool-size could 'choke' an appl

Re: Compiling tag libraries - with which IDE?

2001-01-29 Thread Gerald Gutierrez
I use ANT and JIKES to compile. The tags work for me. The only gotcha there is with it is that the entire runtime expression has to be enclosed in <%= %>, not just a part of it. At 04:34 PM 1/29/2001 +0100, you wrote: >Hi > >Is anyone of you able to compile your own custom tags which take run

Does Orion provide Application-clustering?

2001-01-29 Thread Globetrot Communications
I am aware that Orion provides a built-in clustering for web-servers. Does it also provide clustering for applications? If yes, how to configure such clustering. Thanks for your help. Satish Gupta __ Do You Yahoo!? Yahoo! Auctions - Buy the things

ClassLoader.getResource not working in 1.4.5

2001-01-29 Thread Roger Vaughn
The ClassLoader.getResource* methods do not seem to work properly in 1.4.5. I have been trying to use these methods to load resources from my WEB-INF/classes directory, and they fail every time. After experimenting, I found out that these methods expect to load resources from orion/lib. This se

Downloading a file via a Servlet

2001-01-29 Thread Van Dooren, Damian
I was wondering if anyone knew of a way to get around the following situation: We have a servlet that sends back PDFs that are stored in a database. Everything seems to work great but the one oddity/issue that I would like to solve if possible is. When someone wants to save the PDF, instead of vi

RE: Connection reset by peer: socket write error Can someone help

2001-01-29 Thread Jeff Chapman
Last weekend, I found that the source of my problem was purely IE5 and XML. I cobbled a way to test this with Netscape and this problem does not happen at all. I'm basically using JSPs to generate pure XML pages with references to XSL stylesheets so that IE5 can do the transformations (instead o

Re: Segmentation Fault

2001-01-29 Thread Tim Endres
I would suggest that you turn off the Hotspot, as this is the most likely place that a real segfault would be generated. tim. > I'm running it on Mac OS X. OS X uses J2SE 1.2.2 with the Hotspot 1.3 VM. > I know that OS X does not have a complete api in it's beta releases, but I > had no problem

RE: How to specify 2 databases in datasource.xml file.

2001-01-29 Thread joe . ottinger
Title: RE: How to specify 2 databases in datasource.xml file. J2EE doesn't control that specifically, but it's certainly part of Orion. Simply specify two nodes in datasource.xml; each data source will now be available to your application. -Original Message- From: Puthezhath, Raje

Re: Does Orion provide Bean-pooling?

2001-01-29 Thread Nick Newman
Pooling of Entity beans? Yes, it does. You can verify that for yourself by logging when orion calls the activate and passivate methods. No special setup is necessary. Nick At 09:12 AM 1/28/01 -0800, you wrote: >It seems that the question "Does Orion provide Bean-pooling?" has been >asked

Orion web server vs. apache or IIS

2001-01-29 Thread nickm
Hi: I just got Orion and noticed that it is recommended that we use the Orion webserver as apposed to plugging it into Apache for instance. I was just wondering what, if any functionality that the Orion web server may lack versus the others previously mentioned? I am coming into Orion and J2ee f

URL Mapping of "/*"

2001-01-29 Thread Gerald Gutierrez
When I map a servlet to /*, and I go to a URL /hello, should not: ServletPath = / PathInfo = hello ??? Instead I get: ServletPath = /hello PathInfo = null If the servlet is not mapped to /*, but instead to /abc/*, then the URL /abc/hello produces: ServletPath = /abc PathInfo = /hello Thi

RE: Postgress Performance

2001-01-29 Thread Fink, Paul
Thanks, I had tried these with little improvement. After looking at pgbench.c and reading other comments my conclusion is that postgres is this slow on doing inserts. The fast means of inserts a lot of data is to use COPY which is not useful for creating beans. It looks like my best bet is to

RE: Why is Netscape slower with Orion?

2001-01-29 Thread Dan DiCesare
So how do you really feel :). I agree. We are writing solutions that will have minimal functionality on Netscape and max functionality on IE.     >From: "Paul Kofon" <[EMAIL PROTECTED]> >Reply-To: Orion-Interest <[EMAIL PROTECTED]> >To: Orion-Interest <[EMAIL PROTECTED]> >Subject: RE: Why is Net

Re: frustrated

2001-01-29 Thread Ed Bras
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, January 26, 2001 7:57 PM Subject: Re: frustrated > > Hellu there, > > > > I am getting a bit frustrated as I don't seem to able to connect to my = > > Postgres database, through the data-sources.xml fil

Re: Pooled Data Source

2001-01-29 Thread Gary Shea
It's probably only part of the problem, but the first thing I note is that you're not using "com.evermind.sql.ConnectionDataSource". That's what you use when your jdbc driver is jdbc2 compliant (if my understanding is correct...). Other than that I don't see anything glaringly wrong... G

RE: Why is Netscape slower with Orion?

2001-01-29 Thread Paul Kofon
Hi, Netscape 4 sucks! Version 6 is even worse - it just won't run applets or even Netscape's own JavaScript! I don't know what those guys at Netscape are doing, making such crappy browsers and allowing IE seem like such a good product (well, I must confess it is). If it wasn't for IE, I don't t

application.log file size

2001-01-29 Thread Ken Eisner
Hey there, Has anyone ever delt with the application.log file size? We ran into a situation where orion died because it could not access the log file. It's size had ballooned to 2.1GB. Any thoughts/ideas? Thanks in advance, -Ken -- /* * Ken Eisner * Developer * Bricsnet US, LLC * Ports

Pooled Data Source

2001-01-29 Thread Daniel Cardin
Well... it seems I just can't make it work, even though I have read just about all the messages on the subject. datasources : the code DataSource ds = (DataSource)ctx.lookup("jdbc/ddsNP"); // have used jdbc/ddsDS as well... the lookup returns an OrionCMTDataSou

Hypersonic hiccup?

2001-01-29 Thread Frank Eggink
Hi, I just ran into a small hiccup. When orion autocreates tables for hypersonicsql I get the following message: Warning: Error creating table: Unexpected token: 255 in statement [create table MySomething (id BIGINT not null primary key, field1 VARCHAR(255) null, field2 VARCHAR(255) null, fie

Re: frustrated

2001-01-29 Thread Roger Mosher
Ed.     Not at all sure, but did you try class="com.evermind.sql.ConnectionDataSource" instead of DriverManagerDataSource. I am using Oracle at work instead of Postgres, but I use Postgres at home (ie. I am not sure, but I will try to think to check tonight.)  Everything else seems the same,

Compiling tag libraries - with which IDE?

2001-01-29 Thread Randahl Fink Isaksen
Hi Is anyone of you able to compile your own custom tags which take runtime expression values as input? I have been trying to compile my tag library with "Forte for Java CE release 2.0", I keep getting internal compiler errors. The errors only show when I work with tags which use runtime expressi

How to specify 2 databases in datasource.xml file.

2001-01-29 Thread Puthezhath, Rajeev (TWII Boston)
Hi Friends, As a requirement of the application, We are developing we need to access differrent databases. I mean certain sections of the application needs to access database A and certain sections of the site is based on Database B.We are using SQL Server 2000 and Bean managed Persistence.How ca

RE: Why is Netscape slower with Orion?

2001-01-29 Thread Kemp Randy-W18971
Of the topic -- I personally like the free browsers (opera and lycos) at www.opera.com and www.lycos.com for doing searches, etc., over Netscape and IE, even though I have all four on my development machine. -Original Message- From: Konstantin Polyzois [mailto:[EMAIL PROTECTED]] Sent:

RE: Why is Netscape slower with Orion?

2001-01-29 Thread Thomas Pridham
You are correct. Testing Nav 4.76 against a remote Orion machine runs as fast as IE, but locally, it runs very slow. Regards, Tom Pridham -Original Message- From: Robert S. Sfeir [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 27, 2001 2:40 PM To: Orion-Interest Subject: Re: Why is N

RE: Unicode problem during JSP translation

2001-01-29 Thread Changshin Lee
Finally I solved the problem by removing "development="true"" option from orion-web.xml. Actually the option generates .java source from JSP and it causes such a problem. Probably you don't turn on the switch, and I'd like to recommend turning on it only for service time. Special thanks to Jang Ky

Calling EJB in a different application

2001-01-29 Thread S.Badrinarayanan
Hi I have an enterprise bean in an orion application. I am able to call this bean from inside the application. If I try to access this bean from a servlet in another application I get the following error: javax.naming.NamingException: Error instantiating web-app JNDI-context: No location spe

Re: Error messages

2001-01-29 Thread Ronald Hatcher
It looks as though you may already have a copy of Orion running. It that possible? Someone (probably [EMAIL PROTECTED]) said: > > Hi All > > I met the following error messages when I launch OrionServer 1.3.8. > > Error starting RMI-Server: IO Error: Address in use: JVM_Bind > Error

RE: Error messages

2001-01-29 Thread Lynch_Wu
Hi All Please ignore the previous posting. I made some mistake and re-launched Orion twice. That's why I encountered such error messages. Now I have another problem. Orion sent the following message when deploying my app: Unknown security-role in security-role-mapping: users I have no

RE: How to get RoleManager / setup UserManager

2001-01-29 Thread Marcel Schutte
    Hi,   You'll also have to include a line deploying orions EJBUser in you orion-application.xml like this:     Now you can take out the  tag.   Further you need to specify a role to group mapping in orion-web.xml (adjusted to your own roles and groups):       Something that confused

RE: How to get RoleManager / setup UserManager

2001-01-29 Thread Marcel Schutte
The other question has to do with using the User Manager.  When I add the following to my orion-application.xml I get the NamingException when it is deployed.  What is the trick to doing this?  According to one poster, the atm example demonstrated this, but I must have a different

Re: orion slowwww on Solaris and JDK 1.3 with previously fast NT deployment.

2001-01-29 Thread Dan Winfield
We had this similar problem. We found that on Solaris Orion was significantly slower than on NT. We did not believe it was Orion but could not find a way to get Solaris to be any faster. Anyone got any ideas? Dan - Original Message - From: "Korosh Afshar" <[EMAIL PROTECTED]> To: "Orion-I

RE: Why is Netscape slower with Orion?

2001-01-29 Thread Konstantin Polyzois
No it is the crappy Netscape! It takes all your cpu and leaves none for your appserver. Netscape 4 sux big time! /korre -Original Message- From: Huibert Aalbers [mailto:[EMAIL PROTECTED]] Sent: den 26 januari 2001 17:58 To: Orion-Interest Subject: Why is Netscape slower with Orion? Hi e

Re: Error messages

2001-01-29 Thread Alexey_Ryndin/Storactive
The first message means that either you started second orion process or some other application (Apache for example) use HTTP port orion configured to listen. To solve second problem you must add in your orion-application.xml file in orion-application tag next values autocreate-tables="false" and