Re: Java IDE?

2002-03-22 Thread Dmitriy Serebryakov

Need to be metioned that Forte based on open source NetBeans.
Take a look to JDeveloper from ORACLE also. It looks like licenced JBuilder
and should perfectly suit for work with Orion.


- Original Message -
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Friday, March 22, 2002 4:29 PM
Subject: RE: Java IDE?


 I'm fond of Forte from Sun, but it needs plenty of memory and processor
 to run.  The two really nice things about it is that it is freely
 available (Community Edition, anyway) and that it is from Sun, the
 owners of Java.

 Don't take the system requirements lightly.  A 1GHz Athlon with 512Mb
 runs it really well.  A dual 180MHz with 128Mb runs it like a slug.

 Best,
 Steven

 -Original Message-
 From: clay [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 22, 2002 12:55 PM
 To: orion-interest
 Subject: Java IDE?

 Just a question, any suggestions as to what a good IDE is? I've tried
 JBuilder, IDEA (I like IDEA) and a few others... any recommendations?

 Thanks
 -Clay










Re: JSP comment tag.

2002-03-15 Thread Dmitriy Serebryakov

Hi, Jose

 td% if (modem) { % img src=../images/ok.gif % }else{ % img

No one promise to run code in comments. ONLY EXPRESSIONS allowed there.
From Sun site:
Generates a comment that is sent to the client.

JSP Syntax
  !-- comment [ %= expression % ] --

Expressions are working fine for me.
Regards,
D.S.

- Original Message -
From: prasanth sb [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Friday, March 15, 2002 10:38 AM
Subject: Re: JSP comment tag.


Hi Jose,
I havent tried this. What I feel is you have given browser comment.
Try giving jsp comments and see.
jsp comments are shown below

%%



From: Jose Mena [EMAIL PROTECTED]
Reply-To: Orion-Interest [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: JSP comment tag.
Date: Fri, 15 Mar 2002 11:50:11 +0100

Hi, I have a problem when putting comments in JSP code. Orion doesn't
process the code inside a comment, but if i look at the sun's jsp
reference(http://java.sun.com/products/jsp/tags/11/syntaxref11.fm1.html) it
says that the server must process it when it's put inside a comment.
Here you are an example extracted from the browser's source code(Explorer):

!--
tr
 td% if (modem) { % img src=../images/ok.gif % }else{ % img
src=../images/notok.gif % } %/td
   tdimg src=../../images/blank.gif width=8/td
tdfont face=verdana size=1bModem pitican + Tarjeta
Ethernet:/bfont/td
tdimg src=../../images/blank.gif width=8/td
tdfont face=verdana size=1b400.00 euro;/bfont/td
tdimg src=../../images/blank.gif width=8/td
% if (tipprod == 3) { %
td% if (maskwan) { % img src=../images/ok.gif % }else{ % img
src=../images/notok.gif % } %/td
 tdimg src=../../images/blank.gif width=8/td
td font face=verdana size=1bMask WAN:/b/font/td
 tdimg src=../../images/blank.gif width=8/td
td nowrapfont face=verdana size=1b40.08 euro;/bfont/td
% } else { %
td% if (inst_mod) { % img src=../images/ok.gif % }else{ % img
src=../images/notok.gif % } %/td
 tdimg src=../../images/blank.gif width=8/td
tdfont face=verdana size=1bInstalación y configuración de
Modem:/b/font/td
 tdimg src=../../images/blank.gif width=8/td
td nowrapfont face=verdana size=1b40.08 euro;/bfont/td
% } %
/tr

--

as you can see it shows my code to the end user's browser without
processing
it.
Do you know if there is a setting that controls the comment processing
behaviour in orion?
Thank you.




_
Send and receive Hotmail on your mobile device: http://mobile.msn.com








Re: question about ip allocation

2002-01-10 Thread Dmitriy Serebryakov

It seems to me what IIS have some bug or intend to work wrongly with Java.
If www service of IIS shutted down there are no problem to have working third party 
web servers (two instances of orion server) on same port but different IP addresses on 
same Ethernet interface.

Consider you options:
-use third perty webserver
-use different port and map port 80 on your firewall to web server's listening port on 
your computer.

Hope it will help.

- Original Message - 
From: Morten Raahede Knudsen [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
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 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 rest out.  If you have netcat installed on your linux machine
 try the following nc -s ip1 -l -p 2000 in another terminal run nc -s
 ip2 -l -p 2000.  Both processes will be bound to port 2000 and you can
 connect to each as you would expect.
 
 The original poster's problem is likely that he does not have IIS properly
 configured to listen on only one address.
 
 This is very interesting I've downloaded netcat for Windows 2000. I can't
 execute those two commands you've suggested.
 
 On the second command it says:
 
 Can't grab 192.168.1.86:2000 with bind
 
 Either the two versions of netcat differ or maybe it doesn't work on
 Windows?
 
 Thanks in advance,
 
 Morten Raahede Knudsen
 
  Morten Raahede Knudsen [EMAIL PROTECTED]
  Programmør
 
  Bilpriser.dk
  Tolderlundsvej 16
  DK-5000 Odense C
 
  Telefon +45 6314 6065
  Telefax +45 6619 2164
 
  Ved du hvad din bil er værd? Besøg http://www.bilpriser.dk
 
 
 
 




Re: Newbie classpath problem - please help

2001-09-27 Thread Dmitriy Serebryakov

check doc on orion-web.xml

DS
- Original Message -
From: [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Thursday, September 27, 2001 5:47 AM
Subject: Newbie classpath problem - please help





 I've installed Orion 1.5.2 on my Windows NT4 development machine.

 I have a system classpath that points to lots of standard classes, for
 utilities, etc.

 If I start Orion with the command java -jar orion.jar then it doesn't
pick
 anything up from the classpath,
 if on the otherhand I start Orion with the command java -jar -cp
%CLASSPATH%
 orion.jar then I get a java.util.zip.ZipException error
 with the following message The filename, directory name, or volume label
syntax
 is incorrect

 Do I need to set the classpath elsewhere?

 Thanks









 E-mail communication is not secure and may be intercepted by a third
party. This
 message is confidential to the intended addressee. If you are not the
intended
 addressee, please inform us immediately and then delete this message.
Virgin
 Direct does not accept responsibility for changes made to this message
after it
 was sent. Although Virgin Direct believes this e-mail is free of any virus
or other
 defect which may affect a computer, it is the responsibility of the
recipient to ensure
 that it is virus free and Virgin Direct does not accept any responsibility
for any loss
 or damage arising in any way from it's use.

 Virgin Direct Personal Financial Service Ltd is regulated by the Personal
 Investment Authority for life insurance, pension and unit trust business
and
 represents only the Virgin Direct marketing group. Registered office:
Discovery
 House, Whiting Road, Norwich NR4 6EJ, UK. Registered in England No.
3072766.

 The Virgin One account is a secured personal bank account with The Royal
Bank
 of Scotland plc. It is provided by Virgin Direct Personal Finance Ltd
which is
 a representative only of Virgin Direct Personal Financial Service Ltd.
 Registered office: Waterhouse Square, 138-142 Holborn, London EC1N 2TH,
UK.
 Registered in England no 3414708.

 The Virgin Deposit Account is a personal deposit account with The Royal
Bank of
 Scotland plc administered by Virgin Direct Personal Financial Service Ltd.

 All telephone calls are recorded and may be monitored.












Re: JSP Required classes

2001-09-13 Thread Dmitriy Serebryakov

In  orion-web.xml  in deployment directory use classpath tag as foolowing

orion-web-app
 deployment-version=1.5.2
 development=true
 persistence-path=./persistence/state.ser
 jsp-cache-directory=./persistence
 temporary-directory=./temp
 servlet-webdir=/servlet/

 classpath 
  path=path to your classes;file:/D:/SharedClasses;file:/D:/SharedClasses/abc.zip;
 /
/orion-web-app

Example above for Windows Enviroment.

D.S.

- Original Message - 
From: Vijay Pawar [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Thursday, September 13, 2001 9:58 AM
Subject: JSP Required classes


 Hi All,
 When I am referring class from JSP it is throwing
 error class not found though the all the classes are
 present there.
 I have kept all utility classes inside web-inf\classes
 Can anybody suggest how can we give classpath in orion
 deployment files I tried with orion-web.xml but it
 fails.
 regards,
 vijay
 
 __
 Terrorist Attacks on U.S. - How can you help?
 Donate cash, emergency relief information
 http://dailynews.yahoo.com/fc/US/Emergency_Information/
 
 




Re: Changing the RMI Port

2001-09-10 Thread Dmitriy Serebryakov



?xml 
version="1.0" ? 
 !DOCTYPE 
rmi-server (View Source for full doctype...) 

- 
rmi-server 
host="[ALL]" port="23791"

!-- A remote server connection example --

 
!-- server host="the.remote.server.com" username="adminUser" 
password="123abc" / --

 
!-- path to the log-file where RMI-events/errors are stored --

 

- 
 log


 
  file path="../log/rmi.log" 
/ 
 /log
/rmi-server

  - Original Message - 
  From: 
  Kesav Kumar 
  
  To: Orion-Interest 
  Sent: Monday, September 10, 2001 3:58 
  AM
  Subject: Re: Changing the RMI Port
  
  In orion config directory there will be a file 
  named rmi.xml. In rmi.xml you can give different port 
  number.
  
- Original Message - 
From: 
Rajiv R 

To: Orion-Interest 
Sent: Sunday, September 09, 2001 10:22 
PM
Subject: Changing the RMI Port


Hi...

I am Rajiv from India. Can I run to instances of orion, in the same machine. I have 
created a copy of orion and changed the HTTP port. I guess, i have to change 
the default rmi port too? isnt it? Where do I change the rmi port? Please 
help.

thanx
With Regards,Rajiv. 
  R


Re: UNSUSCRIBE

2001-09-08 Thread Dmitriy Serebryakov

So annoing
Whom shall we address the request to fix that BUG
or it is wrong instaructions in FAQ???

Regards,
D.S.

- Original Message -
From: Vinay Khandelwal [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Saturday, September 08, 2001 12:46 AM
Subject: UNSUSCRIBE





 __
 Do You Yahoo!?
 Get email alerts  NEW webcam video instant messaging with Yahoo!
Messenger
 http://im.yahoo.com