Re: WAR Deployment Paths

2014-01-07 Thread Ron X
Hi! Help anybody how to solve this problem!!! WebRep Overall rating WebRep Overall rating 2014/1/1 Ron X > actually after that: > > in deployment mode i have > http://localhost:8080/ERROR/NOT_FOUND/app=myapp/filename=CS_logo_big.png > and in development mode i have > > http://localhost:8080

Re: WAR Deployment Paths

2014-01-01 Thread Ron X
actually after that: in deployment mode i have http://localhost:8080/ERROR/NOT_FOUND/app=myapp/filename=CS_logo_big.png and in development mode i have http://localhost:8080/myapp/WebObjects/myapp.woa/wr?wodata=ERROR_NOT_FOUND_framework_*null*_filename_CS_logo_big.png WebRep Overall rating WebRe

Re: WAR Deployment Paths

2013-12-30 Thread Henrique Prange
Ron, The application has to load web server resources from inside the JAR files. You can use this [1] custom WOResourceRequestHandler to do this. You must also register the custom request handler in your application constructor: if (isDirectConnectEnabled()) { registerRequestHandler(new Jar

Re: WAR Deployment Paths

2013-12-26 Thread Ron X
sorry path was: http://localhost:8080/WebObjects/myapp.woa/WebServerResources/images/x.jpg WebRep Overall rating WebRep Overall rating 2013/12/27 Ron X > Hello! > > I need to make WAR-file with out-off-the-box settings. > When I set in web.xml "deployment" I have an error with the paths: >

WAR Deployment Paths

2013-12-26 Thread Ron X
Hello! I need to make WAR-file with out-off-the-box settings. When I set in web.xml "deployment" I have an error with the paths: my app in Jetty: http://localhost:8080/myapp/WebObjects/myapp.woa/ but no resources was loaded (images, css) firebug shows: no image found at http://localhost:8080/Web

RE: War deployment build problem

2009-08-19 Thread Runyan, Darich
st List ' Sent: 8/19/2009 2:14 PM Subject: Re: War deployment build problem Hi Darich, On Aug 19, 2009, at 1:59 PM, Runyan, Darich wrote: > Thanks for the reply. I had not checked that target but it kept > trying to > build it anyway so I removed the offending lines from the build

Re: War deployment build problem

2009-08-19 Thread David Avendasora
Darich Cc: WebObjects-Dev Mailing List List Sent: 8/19/2009 1:27 PM Subject: Re: War deployment build problem On Aug 19, 2009, at 1:03 PM, Runyan, Darich wrote: After further investigation, it looks like the out of memory error is a byproduct of the build tanking at a target to move fil

RE: War deployment build problem

2009-08-19 Thread Runyan, Darich
Sent: 8/19/2009 1:59 PM Subject: RE: War deployment build problem Thanks for the reply. I had not checked that target but it kept trying to build it anyway so I removed the offending lines from the build script and I was able to get the war file built and installed on Tomcat 6. I am now able to a

RE: War deployment build problem

2009-08-19 Thread Runyan, Darich
: WebObjects-Dev Mailing List List Sent: 8/19/2009 1:27 PM Subject: Re: War deployment build problem On Aug 19, 2009, at 1:03 PM, Runyan, Darich wrote: > After further investigation, it looks like the out of memory error > is a > byproduct of the build tanking at a target to move file

Re: War deployment build problem

2009-08-19 Thread David Avendasora
9 10:28 AM Subject: War deployment build problem Hello, I have written a very small test app to start to "relearn" WO and see how the Wonder frameworks, especially the Ajax components work. The app has 3 components and 1 EOModel. I also wanted to test how to deploy as a war f

RE: War deployment build problem

2009-08-19 Thread Runyan, Darich
in this location? Thanks. -Original Message- From: webobjects-dev-bounces+darich.runyan=zeltech@lists.apple.com To: 'Webobjects-dev@lists.apple.com' Sent: 8/19/2009 10:28 AM Subject: War deployment build problem Hello, I have written a very small test app to start to "

War deployment build problem

2009-08-19 Thread Runyan, Darich
Hello, I have written a very small test app to start to "relearn" WO and see how the Wonder frameworks, especially the Ajax components work. The app has 3 components and 1 EOModel. I also wanted to test how to deploy as a war file. I followed the instructions at http://wiki.objectstyle.org/conf

Re: True war deployment and WebServerResources

2009-08-05 Thread Andrew Lindesay
Hi Lachlan; I did a proper maven packaging 'goal' for war and it works fine. It's just not easy to develop like that. The app's jar I am building is ~3M so it would take too long to keep making that. cheers. I could be wrong, but suspect that continuously producing a jar would be very

Re: True war deployment and WebServerResources

2009-08-04 Thread Lachlan Deck
On 05/08/2009, at 6:21 AM, Andrew Lindesay wrote: I could be wrong, but suspect that continuously producing a jar would be very slow, but let me know how you get on! I thought about doing this before, but hadn't got around to it. It wouldn't be quick but so long as you're not embedding fram

Re: True war deployment and WebServerResources

2009-08-04 Thread Andrew Lindesay
Hello Alexis; I could be wrong, but suspect that continuously producing a jar would be very slow, but let me know how you get on! cheers. In eclipse, you can add a custom builder : projet > properties > builders > New the builder would be a simple ant task that jars the classes directory

Re: True war deployment and WebServerResources

2009-08-04 Thread Alexis Tual
Hello Andrew, Le 3 août 09 à 23:41, Andrew Lindesay a écrit : Hello Alexis; (3.aug.2009) Andrew Lindesay faces the same issue with his message "War / Maven / Jar Build – How Does it Work wi th Eclipse's "Build Automatically"?" I have lodged an issue with Apple about this and they are awa

Re: True war deployment and WebServerResources

2009-08-03 Thread Alexis Tual
Thanks Mr Brown, it was indeed the Info.plist that was not correctly filtered... When completed everything shows up : ERXStylesheet, ERXImage... great ! Alexis Le 3 août 09 à 13:50, Alexis Tual a écrit : Hi, Check out: http://wiki.objectstyle.org/confluence/display/WOL/Packaging+WO +Appl

Re: True war deployment and WebServerResources

2009-08-03 Thread Alexis Tual
Sorry if the reply is posted in another topic, as i've just managed to reactivate my account on this mailing list. So here's what i found : When adding in the Application constructor registerRequestHandler(new WOResourceRequestHandler(), "_wr_"); WOImage are correctly shown. However ERX

Re: True war deployment and WebServerResources

2009-08-02 Thread Henrique Prange
Hi Mr. Brown, Thanks for giving back to the community. :) I've improved a little bit your additions to make the tutorial more clear and correct. The intention of the referenced tutorial is to demonstrate how to manually transform an existing WebObjects project into a WO servlet-based project.

Re: True war deployment and WebServerResources

2009-08-02 Thread Mr. G Brown
Hi, Check out: http://wiki.objectstyle.org/confluence/display/WOL/Packaging+WO +Applications+as+true+WAR+with+Maven I just updated it and added a "bug panel", which has some known bugs with this, and keep checking the bug panel, there may be additions to it. Mr. G Brown gsbr...@umich.

Re: war deployment

2008-09-08 Thread Dov Rosenberg
The only issue I have always struggle with in WO servlet deployment is that the wars need to be expanded in order for the WOCLASSPATH to be properly resolved because of the WEBINFROOT environment variable. If there is a way around that I would be interested in knowing it Dov Rosenberg On 9/8/08

Re: war deployment

2008-09-08 Thread Henrique Prange
Hi David, David Avendasora wrote: On Sep 8, 2008, at 9:03 AM, Henrique Prange wrote: Actually, I don't have much experience with SSDD. But most of our applications are deployed as True WAR. In this kind of structure all JARs stay in WEB-INF/lib. No WEB-INF/YourApp.woa, WEB-INF/Frameworks nor

Re: war deployment

2008-09-08 Thread Henrique Prange
Hi Mike, Sorry. The documentation is very old and some WO information are difficult to find even with Google. Anyway, I really don't think you are the kind of guy that needs someone telling you to RTFM. :) if the jars are in WEB-INF/lib, do they also need to be in the frameworks inside of W

Re: war deployment

2008-09-08 Thread Mike Schrag
* WEB-INF/MyApp.woa * WEB-INF/Library/Frameworks * WEB-INF/lib/ Alan is saying his works fine without the WEB-INF/Library folder structure, but it's sounding like maybe we still need the .woa and the lib jar copies ... So at the moment, I really do just need to tweak the classpath entries in

Re: war deployment

2008-09-08 Thread Mike Schrag
Have you seen this documentation about SSDD deployment [1]? See ... You're missing the point of why I posted on wo-dev! RTFM isn't the answer I was hoping for :) ms ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev ma

Re: war deployment

2008-09-08 Thread David Avendasora
this morning. Dave On Sep 8, 2008, at 7:18 AM, Mike Schrag wrote: OK ... Officially, what does the file structure of a proper war deployment look like inside the war. I'm fixing the build.xml in WOLips to do this correctly, and there are dupes of jars, etc. Currently WOLips is produ

Re: war deployment

2008-09-08 Thread David Avendasora
On Sep 8, 2008, at 9:03 AM, Henrique Prange wrote: Actually, I don't have much experience with SSDD. But most of our applications are deployed as True WAR. In this kind of structure all JARs stay in WEB-INF/lib. No WEB-INF/YourApp.woa, WEB-INF/Frameworks nor WEB-INF/Extensions are required.

Re: war deployment

2008-09-08 Thread Dov Rosenberg
ave > > > On Sep 8, 2008, at 7:18 AM, Mike Schrag wrote: > >> OK ... Officially, what does the file structure of a proper war >> deployment look like inside the war. I'm fixing the build.xml in >> WOLips to do this correctly, and there are dupes of jars, etc. >

Re: war deployment

2008-09-08 Thread Henrique Prange
B-INF/Extensions are required. [1]http://developer.apple.com/documentation/WebObjects/JSP_and_Servlets/Servlets/chapter_2_section_6.html Cheers, Henrique Mike Schrag wrote: OK ... Officially, what does the file structure of a proper war deployment look like inside the war. I'm fixing the bu

Re: war deployment

2008-09-08 Thread Alan Zebchuk
7;t launch in Tomcat. It _seems_ I can get rid of #3, but I haven't fully tested it yet. I'll do some more testing now and get back to you this morning. Dave On Sep 8, 2008, at 7:18 AM, Mike Schrag wrote: OK ... Officially, what does the file structure of a proper war deploym

Re: war deployment

2008-09-08 Thread David Avendasora
s the file structure of a proper war deployment look like inside the war. I'm fixing the build.xml in WOLips to do this correctly, and there are dupes of jars, etc. Currently WOLips is producing a WEB-INF/YourApp.woa with everything in it, but also all the jars from inside of the woa

war deployment

2008-09-08 Thread Mike Schrag
OK ... Officially, what does the file structure of a proper war deployment look like inside the war. I'm fixing the build.xml in WOLips to do this correctly, and there are dupes of jars, etc. Currently WOLips is producing a WEB-INF/YourApp.woa with everything in it, but also all the

Re: WAR deployment as SSDD

2007-11-02 Thread Daniele Corti
> If you are using an EOModel make sure the model is available in the > framework search path. > > Dov Rosenberg > I've did but they are all correct! On 10/31/07 11:56 AM, "Daniele Corti" <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'm attemping

Re: WAR deployment as SSDD

2007-10-31 Thread Dov Rosenberg
framework search path. Dov Rosenberg On 10/31/07 11:56 AM, "Daniele Corti" <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm attemping in the WAR deployment of a almost empty App, just to see if it > is not too complicated using WOLips. > > After some digging i

WAR deployment as SSDD

2007-10-31 Thread Daniele Corti
Hi all, I'm attemping in the WAR deployment of a almost empty App, just to see if it is not too complicated using WOLips. After some digging in apple guides, I decide to look at the build.xml file and I found out the ssdd target. I've followed the step to enable this target and fi

Re: JDBC and WAR deployment

2007-09-03 Thread Gino Pacitti
Hi Andrew I did discover this on the wiki site - thanks to whomever wrote it up... but thanks anyway... You might be able to answer another thing though - I added the mysql- connector-java-3.1.12-bin.jar to my project and merged it in but it does not appear to be in the WAR file at all.

RE: JDBC and WAR deployment

2007-09-03 Thread Andrew Lindesay
Hello Gino; If you are configuring your model connections by hand then try removing the 'resource-ref' element in the deployment descriptor "jdbc/DefaultDataSource". cheers. - An exception occurred while trying to open a channel: com.webobjects.jdbcadaptor.JDBCAdaptorException: Cannot cre

JDBC and WAR deployment

2007-09-03 Thread Gino Pacitti
I am deploying an existing project as a WAR file and I am getting a JDBC error I have added the mysql-connector-java-3.1.12-bin.jar to the project but I still get this exception below Any ideas - is there something I should be doing to get the connection dictionary visible apa

Re: WAR deployment

2007-08-30 Thread Greg Bartnick
Hi Gino, Yes, it is possible to build an existing project as a WAR file. Check out this Apple doc for more info. http://developer.apple.com/documentation/WebObjects/JSP_and_Servlets/index.html Greg On 8/30/07, Gino Pacitti <[EMAIL PROTECTED]> wrote: > Hi all > > Could someone just answer yes or

WAR deployment

2007-08-30 Thread Gino Pacitti
Hi all Could someone just answer yes or no to whether an existing project built in XCode 2.* can be built as a WAR file for deployment in Tomcat or does the project have to begin with that structure? Gino ___ Do not post admin requests to the list

Re: Tomcat 5.5.12 WAR Deployment Problem

2006-01-13 Thread webobjects
o: "Pierre Frisch" <[EMAIL PROTECTED]>; ; <[EMAIL PROTECTED]> Sent: Friday, January 13, 2006 5:12 PM Subject: RE: Tomcat 5.5.12 WAR Deployment Problem Sako, I used xcode 1.5 to create my war file by setting the following build settings: SERVLET_SINGLE_DIR_DEPLOY =

RE: Tomcat 5.5.12 WAR Deployment Problem

2006-01-13 Thread Albert Jagnow
EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, January 13, 2006 5:35 AM To: webobjects-dev@lists.apple.com Subject: Re: Tomcat 5.5.12 WAR Deployment Problem Hello Albert, I tried to create war file with woLips. do you do that also with eclipse or using xcode? if you use eclipse, do you

Re: Tomcat 5.5.12 WAR Deployment Problem

2006-01-13 Thread Neale Patton
The real problem here is that EOModel's entityNamed() method *uses* NSPathUtilities - it shouldn't. We've worked-around this bug by using a custom EOModel subclass in all our applications with a custom implementation of this method. Things now run fine under Tomcat/JBoss on Windows. For w

Re: Tomcat 5.5.12 WAR Deployment Problem

2006-01-13 Thread webobjects
006 12:11 AM Subject: Re: Tomcat 5.5.12 WAR Deployment Problem > Hello Albert; > > > I am trying to deploy a WO application as a WAR file under apache > > tomcat 5.5.12. The application was created on Mac OS 10.3.9 with > > WO 5.2.3 and Java 1.4.2_09-233. I am trying t

Re: Tomcat 5.5.12 WAR Deployment Problem

2006-01-12 Thread Pierre Frisch
Yes there is a solution but not easy and not without recompiling.I think that older version of WebObjects were using an "Undocumented Feature" of the JVM that would make the loading of the eomodel included in a jar work. This has become broken with one of the minor fixes in Java 1.4.2, I think it h

Re: Tomcat 5.5.12 WAR Deployment Problem

2006-01-12 Thread apl
Hello Albert; I am trying to deploy a WO application as a WAR file under apache tomcat 5.5.12. The application was created on Mac OS 10.3.9 with WO 5.2.3 and Java 1.4.2_09-233. I am trying to deploy on Solaris 10 x86 with Tomcat 5.5.12 and Java 1.5.0_06. The application works fine unti

Tomcat 5.5.12 WAR Deployment Problem

2006-01-12 Thread Albert Jagnow
I am trying to deploy a WO application as a WAR file under apache tomcat 5.5.12.  The application was created on Mac OS 10.3.9 with WO 5.2.3 and Java 1.4.2_09-233.  I am trying to deploy on Solaris 10 x86 with Tomcat 5.5.12 and Java 1.5.0_06.  The application works fine until it tries to lo