ejb soap

2001-11-12 Thread Ramin Heidari

hi,

how can i deploy ejb Apache soap hello sample in 
orion ?

Thanks,
Ramin


__
Do You Yahoo!?
Find a job, post your resume.
http://careers.yahoo.com




Re: ejb soap

2001-11-12 Thread Scott Farquhar

Ramin,

Don't forget to check out our knowledge base for these type of examples!

 http://kb.atlassian.com

A simple search returns a few results that may be of interest to you:

 http://kb.atlassian.com/search.jsp?query=SOAP

Cheers,
Scott

-- 
Scott Farquhar :: [EMAIL PROTECTED]

Atlassian :: http://www.atlassian.com
  Supporting YOUR J2EE World



Ramin Heidari wrote:

 hi,
 
 how can i deploy ejb Apache soap hello sample in 
 orion ?
 
 Thanks,
 Ramin
 
 
 __
 Do You Yahoo!?
 Find a job, post your resume.
 http://careers.yahoo.com
 
 
 






Re: ejb soap

2001-11-12 Thread Venkat

Refer the attachment for installing soap in orion.You need to download
soap.zip from apache site

venkat
- Original Message -
From: Ramin Heidari [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Sent: Monday, November 12, 2001 3:00 PM
Subject: ejb soap


 hi,

 how can i deploy ejb Apache soap hello sample in
 orion ?

 Thanks,
 Ramin


 __
 Do You Yahoo!?
 Find a job, post your resume.
 http://careers.yahoo.com


Title: Apache SOAP Installation Instructions


Apache-SOAP Version 2.0: Installing the Server-Side Under Orion

First, make the SOAP web application to follow orion style by creating a path-to-soap/webapps/META-INF/application.xml 
  that contains:

?xml version="1.0"?
!DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN" "http://java.sun.com/j2ee/dtds/application_1_2.dtd"

application
	display-nameSOAP/display-name
	description/description
	module
		web
			web-urisoap/web-uri
			context-root/soap/context-root
		/web
	/module
/application

Then, add new application to orion config/server.xml:
	application name="soap" path="path-to-soap/webapps/" auto-start="true" /

and add new web-app to orion config/default-web-site.xml:
	web-app application="soap" name="soap" root="/soap" / 
Then run orion and deploy the web app by pointing a browser to http://hostname:port/soap 
  with hostname is the hostname of your server and port is the port your orion 
  is listening to. Orion will automatically deploy the SOAP application. Then, 
  open the orion application-deployments/soap/soap/orion-web.xml and add this 
  line between the orion-web-app and /orion-web-app:
	classpath path="path-to-soap/lib/soap.jar;path-to-soap/" /
Now you should be able to deploy services by pointing a browser to


http://hostname:port/soap


where hostname is the host on which Orion is running and port is the port. 
  See the User's Guide for details on the aministration tool. The SOAP end-point 
  for invoking services on this server is:


http://hostname:port/soap/servlet/rpcrouter


Happy SOAP-ing!