Re: Eclipse Tomcat distribution

2006-10-17 Thread John Larson
I thought I could make it work manually, but now I get "WOServletAdaptor is not available".  Basically all I did was use the same directory structure and files as the last project I built in XCode, changed the woa file, put the application's jar file in the lib folder and changed the directories in the web.xml file to the new directory.  I didn't think that anything else would have needed to be changed.  I guess what I really want to know is what is the "preferred" method of deployment?  I chose single directory deployment a year ago because it seemed the easiest (??), but I'm not married to it.  In fact, I can't really get it to work now!  I can get it to run with direct connect, but is that really stable?                 Thanks againJohnOn Oct 16, 2006, at 2:26 PM, John Larson wrote:In advance, I'm sorry for not reading the manual, but I can't find the manual!  I'm trying to build my project for deployment to a Tomcat server.  In XCode jam spit out a WEB-INF folder with a web.xml file, the woa, a lib folder, etc.  I can get Eclipse to build for direct connect following the wiki deployment instructions, but I'm stuck there.  I also read the Eclipse documentation on producing a Tomcat project, but I don't want to build a whole new project.  I assume that this is an ant build procedure that I'm not familiar with ??  It looks like I can manhandle the build myself, but I'd rather have a clean folder to deploy.thanks in advance,John___Do not post admin requests to the list. They will be ignored.Webobjects-dev mailing list      (Webobjects-dev@lists.apple.com)Help/Unsubscribe/Update your Subscription:http://lists.apple.com/mailman/options/webobjects-dev/the_larsons%40mac.com  ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com

Re: Eclipse Tomcat distribution

2006-10-17 Thread Paul D Yu

John

 I have build a private version of the WOLips plugin that will  
basically build the a WebObjects Application for SSDD/WAR  
deployment.  The changes I have made are in the files associated with  
the bug


http://objectstyle.org/jira/browse/WOL-221

Some of the write up may be helpful for you.  I'm waiting for the  
changes to be incorporated into the product :-)


Also, did you add the JavaWOJSPServlet.framework to your project?

Paul

http://www.superdiem.com - U.S. government per diem and mileage rates

In advance, I'm sorry for not reading the manual, but I can't find  
the manual!  I'm trying to build my project for deployment to a  
Tomcat server.  In XCode jam spit out a WEB-INF folder with a  
web.xml file, the woa, a lib folder, etc.  I can get Eclipse to  
build for direct connect following the wiki deployment  
instructions, but I'm stuck there.  I also read the Eclipse  
documentation on producing a Tomcat project, but I don't want to  
build a whole new project.  I assume that this is an ant build  
procedure that I'm not familiar with ??  It looks like I can  
manhandle the build myself, but I'd rather have a clean folder to  
deploy.


thanks in advance,
John



___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com


Re: Eclipse Tomcat distribution

2006-10-17 Thread John Larson
Thanks Paul,To be honest, I'm not comfortable enough with ANT to follow all the changes you made, but it appears as if I may have made some headway.  I am getting the WAR file now, (which I wasn't before), and everything looks better, but I'm still getting the same error (WOServletAdaptor is not available).  I take it that the most likely place to look is in the license issue, but I'm not sure what to do here.  I'm confused by the statement "and create the LICENSE in your project" in the build.xml.  In my previous projects (that work) LICENSE is just the WebObjects license agreement.  Is that was this is talking about??  I'd imagine that it's looking for the deployment license key, but . . . Thanks again,JohnOn Oct 17, 2006, at 8:34 AM, Paul D Yu wrote:John I have build a private version of the WOLips plugin that will basically build the a WebObjects Application for SSDD/WAR deployment.  The changes I have made are in the files associated with the bughttp://objectstyle.org/jira/browse/WOL-221Some of the write up may be helpful for you.  I'm waiting for the changes to be incorporated into the product :-)Also, did you add the JavaWOJSPServlet.framework to your project?Paulhttp://www.superdiem.com - U.S. government per diem and mileage rates In advance, I'm sorry for not reading the manual, but I can't find the manual!  I'm trying to build my project for deployment to a Tomcat server.  In XCode jam spit out a WEB-INF folder with a web.xml file, the woa, a lib folder, etc.  I can get Eclipse to build for direct connect following the wiki deployment instructions, but I'm stuck there.  I also read the Eclipse documentation on producing a Tomcat project, but I don't want to build a whole new project.  I assume that this is an ant build procedure that I'm not familiar with ??  It looks like I can manhandle the build myself, but I'd rather have a clean folder to deploy.thanks in advance,John   ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com

Re: Eclipse Tomcat distribution

2006-10-17 Thread Paul D Yu
JohnYou have to create a text file called LICENSE, with the deployment license key in it.  The file should be in the project wrapper "." or if you are using the old WOLips build.xml, the LICENSE file should actually be one level higher "..".You will also need to make sure the classpath reference to the application jar is pointing to the right place.  That was one of the last issues I had to deal with.There are two version of the build.xml files there contributed by Pierre.  I used the first one.  I have not had a chance to incorporate his second set of changes.Hope this helps.PaulOn Oct 17, 2006, at 10:40 AM, John Larson wrote:Thanks Paul,To be honest, I'm not comfortable enough with ANT to follow all the changes you made, but it appears as if I may have made some headway.  I am getting the WAR file now, (which I wasn't before), and everything looks better, but I'm still getting the same error (WOServletAdaptor is not available).  I take it that the most likely place to look is in the license issue, but I'm not sure what to do here.  I'm confused by the statement "and create the LICENSE in your project" in the build.xml.  In my previous projects (that work) LICENSE is just the WebObjects license agreement.  Is that was this is talking about??  I'd imagine that it's looking for the deployment license key, but . . . Thanks again,JohnOn Oct 17, 2006, at 8:34 AM, Paul D Yu wrote:John I have build a private version of the WOLips plugin that will basically build the a WebObjects Application for SSDD/WAR deployment.  The changes I have made are in the files associated with the bughttp://objectstyle.org/jira/browse/WOL-221Some of the write up may be helpful for you.  I'm waiting for the changes to be incorporated into the product :-)Also, did you add the JavaWOJSPServlet.framework to your project?Paulhttp://www.superdiem.com - U.S. government per diem and mileage rates In advance, I'm sorry for not reading the manual, but I can't find the manual!  I'm trying to build my project for deployment to a Tomcat server.  In XCode jam spit out a WEB-INF folder with a web.xml file, the woa, a lib folder, etc.  I can get Eclipse to build for direct connect following the wiki deployment instructions, but I'm stuck there.  I also read the Eclipse documentation on producing a Tomcat project, but I don't want to build a whole new project.  I assume that this is an ant build procedure that I'm not familiar with ??  It looks like I can manhandle the build myself, but I'd rather have a clean folder to deploy.thanks in advance,John   ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com

Re: Eclipse Tomcat distribution

2006-10-17 Thread John Larson
Dear Paul,Thank you for your help.  It turns out that was a bunch of things that weren't right.  It looks like I HAD to make sense of what you wrote to fix it.  I'm not sure if my "fixes" are necessary or if they are workarounds for incorrect settings, but this is what I did.1) The woa file ends up at the same level as WEB-INF, it should be in WEB-INF.2) The woa classpath in web.xml wasn't right at all.  I don't remember what it was, but it wasn't right.  So I moved the woa file into WEB-INF and adjusted the classpath in web.xml accordingly.3) The build scrip wasn't including all the frameworks in WEB-INF.Library.Frameworks, and it wasn't including the classpath to the frameworks. (including javawojspservlet.jar)Now it works.Thanks for your help,JohnOn Oct 17, 2006, at 10:33 AM, Paul D Yu wrote:JohnYou have to create a text file called LICENSE, with the deployment license key in it.  The file should be in the project wrapper "." or if you are using the old WOLips build.xml, the LICENSE file should actually be one level higher "..".You will also need to make sure the classpath reference to the application jar is pointing to the right place.  That was one of the last issues I had to deal with.There are two version of the build.xml files there contributed by Pierre.  I used the first one.  I have not had a chance to incorporate his second set of changes.Hope this helps.PaulOn Oct 17, 2006, at 10:40 AM, John Larson wrote:Thanks Paul,To be honest, I'm not comfortable enough with ANT to follow all the changes you made, but it appears as if I may have made some headway.  I am getting the WAR file now, (which I wasn't before), and everything looks better, but I'm still getting the same error (WOServletAdaptor is not available).  I take it that the most likely place to look is in the license issue, but I'm not sure what to do here.  I'm confused by the statement "and create the LICENSE in your project" in the build.xml.  In my previous projects (that work) LICENSE is just the WebObjects license agreement.  Is that was this is talking about??  I'd imagine that it's looking for the deployment license key, but . . . Thanks again,JohnOn Oct 17, 2006, at 8:34 AM, Paul D Yu wrote:John I have build a private version of the WOLips plugin that will basically build the a WebObjects Application for SSDD/WAR deployment.  The changes I have made are in the files associated with the bughttp://objectstyle.org/jira/browse/WOL-221Some of the write up may be helpful for you.  I'm waiting for the changes to be incorporated into the product :-)Also, did you add the JavaWOJSPServlet.framework to your project?Paulhttp://www.superdiem.com - U.S. government per diem and mileage rates In advance, I'm sorry for not reading the manual, but I can't find the manual!  I'm trying to build my project for deployment to a Tomcat server.  In XCode jam spit out a WEB-INF folder with a web.xml file, the woa, a lib folder, etc.  I can get Eclipse to build for direct connect following the wiki deployment instructions, but I'm stuck there.  I also read the Eclipse documentation on producing a Tomcat project, but I don't want to build a whole new project.  I assume that this is an ant build procedure that I'm not familiar with ??  It looks like I can manhandle the build myself, but I'd rather have a clean folder to deploy.thanks in advance,John   ___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com

Eclipse Tomcat distribution

2006-10-16 Thread John Larson
In advance, I'm sorry for not reading the manual, but I can't find  
the manual!  I'm trying to build my project for deployment to a  
Tomcat server.  In XCode jam spit out a WEB-INF folder with a web.xml  
file, the woa, a lib folder, etc.  I can get Eclipse to build for  
direct connect following the wiki deployment instructions, but I'm  
stuck there.  I also read the Eclipse documentation on producing a  
Tomcat project, but I don't want to build a whole new project.  I  
assume that this is an ant build procedure that I'm not familiar  
with ??  It looks like I can manhandle the build myself, but I'd  
rather have a clean folder to deploy.


thanks in advance,
John


___
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to archive@mail-archive.com