MIME-types [off topic]

2001-02-15 Thread Konstantin Polyzois
This is a little off topic... I am developing an app where there will be some xml-files generated. I want the user to save these to his hard drive. The problem is that Internet Exploder always displays xml. Is there some MIME type or some trick to make Exploder pop up a "save as dialog"

RE: Security between applications?

2001-02-15 Thread Konstantin Polyzois
Securing datasources is no match for Weblogic. I do not know how Orion handles this. /korre -Original Message- From: Cliff Rowley [mailto:[EMAIL PROTECTED]] Sent: den 13 februari 2001 20:09 To: Orion-Interest Subject: Security between applications? Greetings, We are currently

Solution: MIME-types [off topic]

2001-02-15 Thread Konstantin Polyzois
ion","attachment;filename=\"somename.ext \" "); Works most of the time except certain buggy versions of IE 5.5 for which a patch is available from Microsoft (so I believe). Hope this helps? - Original Message - From: "Konstantin Polyzois" [EMAIL PROT

RE: Any news from Orion yet??

2001-02-13 Thread Konstantin Polyzois
"Weblogic (and the high priced products like Websphere) are great..." Speaking as someone who has done development using Websphere (3.0 3.02): It sucks! Don't use it for anything but JSP or servlets. It has so many flaws that I don't even want to get in to them!! /korre -Original

RE: HTTPS from Orion Java Bean

2001-02-06 Thread Konstantin Polyzois
Are you using the exact same JDK in both cases? With the exact same libraries? We had some trouble with Weblogic always using their implementation of ssl and used the following to override it: if(url.indexOf("https")!=-1){ URLStreamHandler h =(URLStreamHandler) new

RE: Servlet loading twice if init() not finished?

2001-02-01 Thread Konstantin Polyzois
There should be only one servlet instance per VM according to Servlet spec 2.2 chapter 3.2. Unless of course the servlet is implementing "SingleThreadModel". /korre -Original Message- From: Tim Endres To: Orion-Interest Sent: 2001-02-01 02:23 Subject: Re: Servlet loading twice if

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

RE: [Re: AW: Stand-alone-client]

2001-01-19 Thread Konstantin Polyzois
("java.naming.factory.initial","com.evermind.server.rmi.RMIInitialContextFac tory"); Should be: ("java.naming.factory.initial","com.evermind.server.ApplicationClientInitial ContextFactory"); /korre -Original Message- From: mohan krishna [mailto:[EMAIL PROTECTED]] Sent: den 19 januari

RE: ejb deployment problem

2001-01-08 Thread Konstantin Polyzois
That is because in JBuilder you deploy your beans to IAS. You specify a Datasource name. You have to specify a different DataSourc name for Orion too. That can not be done inside of JBuilder. For Orion: 1 Open Orion-Home-Dir/application-deployments/Your-App-Name/orion-application.x ml 2 Add an

CMP-finder with another entity as argument?

2000-12-22 Thread Konstantin Polyzois
Hi all! I am trying to create a finder that takes an other entity as an argument. Something like: public Collection findByProject(Project project) throws RemoteException, FinderException; Now how do I modify the finder-method query="???" partial="false" to accomplish this? My impression is

public boolean isModified()

2000-12-22 Thread Konstantin Polyzois
Hello everybody! I am using Orion 1.4.4 and it seems that the method "public boolean isModified()" (used to limit writes to the database) is not getting called. Bug? /korre More info about isModified: http://www.orionserver.com/faq/

RE: public boolean isModified()

2000-12-22 Thread Konstantin Polyzois
() is a specific WebLogic method From: Konstantin Polyzois Subject: public boolean isModified() Date: Fri, 22 Dec 2000 05:56:46 -0800 Hello