Re: Apache for Dev and breakpoints

2020-06-06 Thread Jeffrey Schmitz via Webobjects-dev
Out of the blue this problem has started again, and my project rename strategy 
isn’t working either. I’ve never really understood how this runs in the first 
place.  For deployment you have to configure your application in 
WOMonitor/WOTaskd, but there’s nothing about doing that in the instructions 
below.  Without that, how does Apache/WOTaskd come to find out about your 
development application in order to run it?  If I understood that maybe I would 
be able to debug it.

>> Hello List,
>>I’m trying to use apache for development per 
>> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>>  
>> 
>>  so I can test SSL related code.
>> 
>>When I launch my app from Eclipse however, it’s not getting my 
>> latest changes nor is it stopping on my breakpoints in the debugger. 
>>  Using direct connect it all works as expected.  Any ideas what’s 
>> going on?
>> 
>> Jeff


Thanks!
Jeff

> On Mar 15, 2019, at 8:19 PM, Jeffrey Schmitz  
> wrote:
> 
> 
> OK, I’m was back to square one on this.  Out of the blue,I was getting The 
> requested application was not found on this server  error again when running 
> through apache. 
> 
> I tried creating a new workspace and re-importing my project into that and I 
> also tried restoring my project from a previous backup when running though 
> apache worked, and still no go.  Then, in the spirit of my last fix I tried 
> changing the case of my project name in build.properties and still no go.  
> THEN I changed my project name  to an entirely different name in 
> build.properties and it WORKED!  Any ideas out there why this is happening?  
> I really don’t want to have to remember to change my name in my properties 
> file before building and deploying.
> 
> Thanks,
> Jeff
> 
> 
>> On Mar 7, 2019, at 5:48 PM, Theodore Petrosky > > wrote:
>> 
>> BTW, you didn’t mention the lowercase setting:
>> 
>> 
>> project.name=AS_Document_Safe
>> project.name.lowercase=as_document_safe
>> 
>> 
>> 
>>> On Mar 7, 2019, at 6:40 PM, Jeffrey Schmitz >> > wrote:
>>> 
>>> 
>>> Yeah, usually I’d agree, but for this I think I was trying to play off the 
>>> .net in some URL names, so using lowercase for net just seemed right, but 
>>> what do I know, I’m a software geek not a marketing major :-)
>>> 
>>> 
>>> 
 On Mar 7, 2019, at 1:59 AM, Theodore Petrosky >>> > wrote:
 
 I know this has nothing to do with this :) but all of my camelcase names 
 begin with a capital (ie. project.name=AS_Document_Safe). I notice that 
 yours begins with a lower case,
 
 I just find it odd.
 
 
> On Mar 6, 2019, at 9:27 PM, Jeffrey Schmitz  > wrote:
> 
> Finally figured out a fix for this, although I’m still a little cloudy as 
> to what’s going on.
> 
> Note that the URL generated when I run in eclipse is:
> 
>> http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 
>> 
> netbrackets in all lower case.  However, this doesn’t match the 
> project.name value defined in the build.properties file which was in 
> camelcase:
> 
> project.name=netBrackets
> 
> I changed the project.name to be all lowercase like the generated URL, 
> and it works!
> 
> What I don’t understand is why the URL is being generated all lowercase 
> in the first place when the project.name is specified camelcase.  Also, 
> everything deploys fine as it was, I’m a little worried keeping the 
> project.name property lowercase may mess up my deployment.  
> 
> My build file as well specifies the project name in camel case.
> 
> mailto:jeff.schm...@netbrackets.com>> 
>> wrote:
>> 
>> I’m using the URL generated by Eclipse when I debug, and yes it looks 
>> like the URL you describe:
>> 
>> http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 
>> 
>> 
>> I’m wondering, do I need to add the application that is built by Eclipse 
>> under the “dist” folder to the wotaskd config using Javamonitor?  
>> 
>> Jeff
>> 
>> 
>> 
>>> On Jan 11, 2019, at 10:08 PM, Aaron Rosenzweig >> > wrote:
>>> 
>>> Jeffrey,
>>> 
>>> What is the url you are trying to use in Safari to connect?
>>> 
>>> You need to know the port and you need to type it with a negative.
>>> 
>>> With direct connect it is a colon but with the apache adaptor it is a 
>>> slash and then a negative sign and then the port number. 

Re: Apache for Dev and breakpoints

2019-03-15 Thread Jeffrey Schmitz

OK, I’m was back to square one on this.  Out of the blue,I was getting The 
requested application was not found on this server  error again when running 
through apache. 

I tried creating a new workspace and re-importing my project into that and I 
also tried restoring my project from a previous backup when running though 
apache worked, and still no go.  Then, in the spirit of my last fix I tried 
changing the case of my project name in build.properties and still no go.  THEN 
I changed my project name  to an entirely different name in build.properties 
and it WORKED!  Any ideas out there why this is happening?  I really don’t want 
to have to remember to change my name in my properties file before building and 
deploying.

Thanks,
Jeff


> On Mar 7, 2019, at 5:48 PM, Theodore Petrosky  wrote:
> 
> BTW, you didn’t mention the lowercase setting:
> 
> 
> project.name=AS_Document_Safe
> project.name.lowercase=as_document_safe
> 
> 
> 
>> On Mar 7, 2019, at 6:40 PM, Jeffrey Schmitz > > wrote:
>> 
>> 
>> Yeah, usually I’d agree, but for this I think I was trying to play off the 
>> .net in some URL names, so using lowercase for net just seemed right, but 
>> what do I know, I’m a software geek not a marketing major :-)
>> 
>> 
>> 
>>> On Mar 7, 2019, at 1:59 AM, Theodore Petrosky >> > wrote:
>>> 
>>> I know this has nothing to do with this :) but all of my camelcase names 
>>> begin with a capital (ie. project.name=AS_Document_Safe). I notice that 
>>> yours begins with a lower case,
>>> 
>>> I just find it odd.
>>> 
>>> 
 On Mar 6, 2019, at 9:27 PM, Jeffrey Schmitz >>> > wrote:
 
 Finally figured out a fix for this, although I’m still a little cloudy as 
 to what’s going on.
 
 Note that the URL generated when I run in eclipse is:
 
> http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 
> 
 netbrackets in all lower case.  However, this doesn’t match the 
 project.name value defined in the build.properties file which was in 
 camelcase:
 
 project.name=netBrackets
 
 I changed the project.name to be all lowercase like the generated URL, and 
 it works!
 
 What I don’t understand is why the URL is being generated all lowercase in 
 the first place when the project.name is specified camelcase.  Also, 
 everything deploys fine as it was, I’m a little worried keeping the 
 project.name property lowercase may mess up my deployment.  
 
 My build file as well specifies the project name in camel case.
 
 mailto:jeff.schm...@netbrackets.com>> 
> wrote:
> 
> I’m using the URL generated by Eclipse when I debug, and yes it looks 
> like the URL you describe:
> 
> http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 
> 
> 
> I’m wondering, do I need to add the application that is built by Eclipse 
> under the “dist” folder to the wotaskd config using Javamonitor?  
> 
> Jeff
> 
> 
> 
>> On Jan 11, 2019, at 10:08 PM, Aaron Rosenzweig > > wrote:
>> 
>> Jeffrey,
>> 
>> What is the url you are trying to use in Safari to connect?
>> 
>> You need to know the port and you need to type it with a negative.
>> 
>> With direct connect it is a colon but with the apache adaptor it is a 
>> slash and then a negative sign and then the port number. 
>> AARON ROSENZWEIG / Chat 'n Bike 
>> e:  aa...@chatnbike.com   t:  (301) 956-2319
>>  
>> 
>>> On Jan 11, 2019, at 6:09 PM, Jeffrey Schmitz 
>>> mailto:jeff.schm...@netbrackets.com>> 
>>> wrote:
>>> 
>>> 
>>> Yes I think you must be right.  After shutting down and deleting the 
>>> launched version however, it now says The requested application was not 
>>> found on this server.
>>> 
>>> What is the magic property that makes apache use the Eclipse version 
>>> that is launched when I try to debug?
>>> 
>>> Thanks
>>> Jeff
>>> 
 On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig >>> > wrote:
 
 Hi Jeff - I suppose you actually have the .woa launched and running on 
 your system and Apache is connecting to that instead of Eclipse. 
 AARON ROSENZWEIG / Chat 'n Bike 
 e:  aa...@chatnbike.com   t:  (301) 
 956-2319

 
> On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz 
> mailto:jeff.schm...@netbrackets.com>> 
> wrote:
> 
> Hello List,
>I’m trying to use apache for development per 
> 

Re: Apache for Dev and breakpoints

2019-03-07 Thread Jeffrey Schmitz

Yeah, usually I’d agree, but for this I think I was trying to play off the .net 
in some URL names, so using lowercase for net just seemed right, but what do I 
know, I’m a software geek not a marketing major :-)



> On Mar 7, 2019, at 1:59 AM, Theodore Petrosky  wrote:
> 
> I know this has nothing to do with this :) but all of my camelcase names 
> begin with a capital (ie. project.name=AS_Document_Safe). I notice that yours 
> begins with a lower case,
> 
> I just find it odd.
> 
> 
>> On Mar 6, 2019, at 9:27 PM, Jeffrey Schmitz > > wrote:
>> 
>> Finally figured out a fix for this, although I’m still a little cloudy as to 
>> what’s going on.
>> 
>> Note that the URL generated when I run in eclipse is:
>> 
>>> http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 
>>> 
>> netbrackets in all lower case.  However, this doesn’t match the project.name 
>> value defined in the build.properties file which was in camelcase:
>> 
>> project.name=netBrackets
>> 
>> I changed the project.name to be all lowercase like the generated URL, and 
>> it works!
>> 
>> What I don’t understand is why the URL is being generated all lowercase in 
>> the first place when the project.name is specified camelcase.  Also, 
>> everything deploys fine as it was, I’m a little worried keeping the 
>> project.name property lowercase may mess up my deployment.  
>> 
>> My build file as well specifies the project name in camel case.
>> 
>> mailto:jeff.schm...@netbrackets.com>> wrote:
>>> 
>>> I’m using the URL generated by Eclipse when I debug, and yes it looks like 
>>> the URL you describe:
>>> 
>>> http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 
>>> 
>>> 
>>> I’m wondering, do I need to add the application that is built by Eclipse 
>>> under the “dist” folder to the wotaskd config using Javamonitor?  
>>> 
>>> Jeff
>>> 
>>> 
>>> 
 On Jan 11, 2019, at 10:08 PM, Aaron Rosenzweig >>> > wrote:
 
 Jeffrey,
 
 What is the url you are trying to use in Safari to connect?
 
 You need to know the port and you need to type it with a negative.
 
 With direct connect it is a colon but with the apache adaptor it is a 
 slash and then a negative sign and then the port number. 
 AARON ROSENZWEIG / Chat 'n Bike 
 e:  aa...@chatnbike.com   t:  (301) 956-2319

 
> On Jan 11, 2019, at 6:09 PM, Jeffrey Schmitz 
> mailto:jeff.schm...@netbrackets.com>> 
> wrote:
> 
> 
> Yes I think you must be right.  After shutting down and deleting the 
> launched version however, it now says The requested application was not 
> found on this server.
> 
> What is the magic property that makes apache use the Eclipse version that 
> is launched when I try to debug?
> 
> Thanks
> Jeff
> 
>> On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig > > wrote:
>> 
>> Hi Jeff - I suppose you actually have the .woa launched and running on 
>> your system and Apache is connecting to that instead of Eclipse. 
>> AARON ROSENZWEIG / Chat 'n Bike 
>> e:  aa...@chatnbike.com   t:  (301) 956-2319
>>  
>> 
>>> On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz 
>>> mailto:jeff.schm...@netbrackets.com>> 
>>> wrote:
>>> 
>>> Hello List,
>>>I’m trying to use apache for development per 
>>> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>>>  
>>> 
>>>  so I can test SSL related code.
>>> 
>>>When I launch my app from Eclipse however, it’s not getting my 
>>> latest changes nor is it stopping on my breakpoints in the debugger.  
>>> Using direct connect it all works as expected.  Any ideas what’s going 
>>> on?
>>> 
>>> Jeff
>>> 
>>> ___
>>> 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:
>>> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
>>>  
>>> 
>>> 
>>> This email sent to aa...@chatnbike.com 
>> 
> 
 
>>> 
>>> ___
>>> Do not post admin requests to the list. They will be ignored.
>>> Webobjects-dev mailing list  (Webobjects-dev@lists.apple.com 
>>> 

Re: Apache for Dev and breakpoints

2019-03-06 Thread Jeffrey Schmitz
Finally figured out a fix for this, although I’m still a little cloudy as to 
what’s going on.

Note that the URL generated when I run in eclipse is:

> http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 
> 
netbrackets in all lower case.  However, this doesn’t match the project.name 
value defined in the build.properties file which was in camelcase:

project.name=netBrackets

I changed the project.name to be all lowercase like the generated URL, and it 
works!

What I don’t understand is why the URL is being generated all lowercase in the 
first place when the project.name is specified camelcase.  Also, everything 
deploys fine as it was, I’m a little worried keeping the project.name property 
lowercase may mess up my deployment.  

My build file as well specifies the project name in camel case.

http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 
> 
> 
> I’m wondering, do I need to add the application that is built by Eclipse 
> under the “dist” folder to the wotaskd config using Javamonitor?  
> 
> Jeff
> 
> 
> 
>> On Jan 11, 2019, at 10:08 PM, Aaron Rosenzweig > > wrote:
>> 
>> Jeffrey,
>> 
>> What is the url you are trying to use in Safari to connect?
>> 
>> You need to know the port and you need to type it with a negative.
>> 
>> With direct connect it is a colon but with the apache adaptor it is a slash 
>> and then a negative sign and then the port number. 
>> AARON ROSENZWEIG / Chat 'n Bike 
>> e:  aa...@chatnbike.com   t:  (301) 956-2319 
>> 
>>  
>> 
>>> On Jan 11, 2019, at 6:09 PM, Jeffrey Schmitz >> > wrote:
>>> 
>>> 
>>> Yes I think you must be right.  After shutting down and deleting the 
>>> launched version however, it now says The requested application was not 
>>> found on this server.
>>> 
>>> What is the magic property that makes apache use the Eclipse version that 
>>> is launched when I try to debug?
>>> 
>>> Thanks
>>> Jeff
>>> 
 On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig >>> > wrote:
 
 Hi Jeff - I suppose you actually have the .woa launched and running on 
 your system and Apache is connecting to that instead of Eclipse. 
 AARON ROSENZWEIG / Chat 'n Bike 
 e:  aa...@chatnbike.com   t:  (301) 956-2319   
 

 
> On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz 
> mailto:jeff.schm...@netbrackets.com>> 
> wrote:
> 
> Hello List,
>I’m trying to use apache for development per 
> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>  
> 
>  so I can test SSL related code.
> 
>When I launch my app from Eclipse however, it’s not getting my latest 
> changes nor is it stopping on my breakpoints in the debugger.  Using 
> direct connect it all works as expected.  Any ideas what’s going on?
> 
> Jeff
> 
> ___
> 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:
> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
>  
> 
> 
> This email sent to aa...@chatnbike.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:
> https://lists.apple.com/mailman/options/webobjects-dev/jeffschmitz%40icloud.com
> 
> This email sent to jeffschm...@icloud.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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Apache for Dev and breakpoints

2019-01-12 Thread Jeffrey Schmitz
I changed WOMonitorEnabled to true but still no love. Requested application not 
found. My other properties are set the same as yours. 

Sent from my iPad

> On Jan 12, 2019, at 5:20 PM, Altera WO Team  wrote:
> 
> Hi, in our setup we generally specify the port in the Properties.dev file 
> like this
> 
> WOPort=8035
> WOHost=localhost
> WODirectConnectEnabled=false
> 
> and then we launch the app via Eclipse (debug as WOApplication)
> Your apache config looks fine.
> I think the trick is hidden in the Eclipse default launch parameters. I'm 
> pretty sure that the default configuration has -WOMonitorEnabled false, make 
> sure you uncheck that.
> 
> Matteo
> 
>> On Jan 12, 2019, at 5:50 PM, Jeffrey Schmitz  
>> wrote:
>> 
>> Are you saying there’s another mode besides deployment, e.g. development?  
>> Would that be a setting in the apache config?
>> 
>> 
>>> On Jan 12, 2019, at 9:31 AM, Jesse Tayler  wrote:
>>> 
>>> There’s also a report at startup confirming that you are, or are not, in 
>>> deployment mode with regard to all that
>>> 
>>> Of course, I don’t recall exactly but it sounds like this could be the case 
>>> for you, I also don’t recall how you set that but I am certain you’ll find 
>>> it on the deployment page of the wiki
>>> 
>>> Somewhere around here maybe
>>> 
>>> https://wiki.wocommunity.org/display/documentation/Deployment
>>> 
>>> 
>>> 
 On Jan 12, 2019, at 10:03 AM, Jeffrey Schmitz 
  wrote:
 
 I’m using the URL generated by Eclipse when I debug, and yes it looks like 
 the URL you describe:
 
 http://localhost/cgi-bin/WebObjects/netbrackets.woa/-
 
 I’m wondering, do I need to add the application that is built by Eclipse 
 under the “dist” folder to the wotaskd config using Javamonitor?  
 
 Jeff
 
 
 
> On Jan 11, 2019, at 10:08 PM, Aaron Rosenzweig  
> wrote:
> 
> Jeffrey,
> 
> What is the url you are trying to use in Safari to connect?
> 
> You need to know the port and you need to type it with a negative.
> 
> With direct connect it is a colon but with the apache adaptor it is a 
> slash and then a negative sign and then the port number. 
> AARON ROSENZWEIG / Chat 'n Bike
> e:  aa...@chatnbike.com  t:  (301) 956-2319   
>   
> 
>> On Jan 11, 2019, at 6:09 PM, Jeffrey Schmitz 
>>  wrote:
>> 
>> 
>> Yes I think you must be right.  After shutting down and deleting the 
>> launched version however, it now says The requested application was not 
>> found on this server.
>> 
>> What is the magic property that makes apache use the Eclipse version 
>> that is launched when I try to debug?
>> 
>> Thanks
>> Jeff
>> 
>>> On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig  
>>> wrote:
>>> 
>>> Hi Jeff - I suppose you actually have the .woa launched and running on 
>>> your system and Apache is connecting to that instead of Eclipse. 
>>> AARON ROSENZWEIG / Chat 'n Bike
>>> e:  aa...@chatnbike.com  t:  (301) 956-2319 
>>> 
>>> 
 On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz 
  wrote:
 
 Hello List,
   I’m trying to use apache for development per 
 https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
  so I can test SSL related code.
 
   When I launch my app from Eclipse however, it’s not getting my 
 latest changes nor is it stopping on my breakpoints in the debugger.  
 Using direct connect it all works as expected.  Any ideas what’s going 
 on?
 
 Jeff
 
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
 
 This email sent to aa...@chatnbike.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:
 https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com
 
 This email sent to jtay...@oeinc.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:
>> https://lists.apple.com/mailman/options/webobjects-dev/webobjects%40altera.it
>> 
>> This email sent to webobje...@altera.it
> 
 ___
Do not post admin requests to the list. They will be 

Re: Apache for Dev and breakpoints

2019-01-12 Thread Jeffrey Schmitz
Are you saying there’s another mode besides deployment, e.g. development?  
Would that be a setting in the apache config?


> On Jan 12, 2019, at 9:31 AM, Jesse Tayler  wrote:
> 
> There’s also a report at startup confirming that you are, or are not, in 
> deployment mode with regard to all that
> 
> Of course, I don’t recall exactly but it sounds like this could be the case 
> for you, I also don’t recall how you set that but I am certain you’ll find it 
> on the deployment page of the wiki
> 
> Somewhere around here maybe
> 
> https://wiki.wocommunity.org/display/documentation/Deployment 
> 
> 
> 
> 
>> On Jan 12, 2019, at 10:03 AM, Jeffrey Schmitz > > wrote:
>> 
>> I’m using the URL generated by Eclipse when I debug, and yes it looks like 
>> the URL you describe:
>> 
>> http://localhost/cgi-bin/WebObjects/netbrackets.woa/-
>> 
>> I’m wondering, do I need to add the application that is built by Eclipse 
>> under the “dist” folder to the wotaskd config using Javamonitor?  
>> 
>> Jeff
>> 
>> 
>> 
>>> On Jan 11, 2019, at 10:08 PM, Aaron Rosenzweig  wrote:
>>> 
>>> Jeffrey,
>>> 
>>> What is the url you are trying to use in Safari to connect?
>>> 
>>> You need to know the port and you need to type it with a negative.
>>> 
>>> With direct connect it is a colon but with the apache adaptor it is a slash 
>>> and then a negative sign and then the port number. 
>>> AARON ROSENZWEIG / Chat 'n Bike
>>> e:  aa...@chatnbike.com  t:  (301) 956-2319 
>>> 
>>> 
 On Jan 11, 2019, at 6:09 PM, Jeffrey Schmitz 
  wrote:
 
 
 Yes I think you must be right.  After shutting down and deleting the 
 launched version however, it now says The requested application was not 
 found on this server.
 
 What is the magic property that makes apache use the Eclipse version that 
 is launched when I try to debug?
 
 Thanks
 Jeff
 
> On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig  wrote:
> 
> Hi Jeff - I suppose you actually have the .woa launched and running on 
> your system and Apache is connecting to that instead of Eclipse. 
> AARON ROSENZWEIG / Chat 'n Bike
> e:  aa...@chatnbike.com  t:  (301) 956-2319   
>   
> 
>> On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz 
>>  wrote:
>> 
>> Hello List,
>>   I’m trying to use apache for development per 
>> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>>  so I can test SSL related code.
>> 
>>   When I launch my app from Eclipse however, it’s not getting my latest 
>> changes nor is it stopping on my breakpoints in the debugger.  Using 
>> direct connect it all works as expected.  Any ideas what’s going on?
>> 
>> Jeff
>> 
>> ___
>> 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:
>> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
>> 
>> This email sent to aa...@chatnbike.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:
>> https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com 
>> 
>> 
>> This email sent to jtay...@oeinc.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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Apache for Dev and breakpoints

2019-01-12 Thread Jesse Tayler
There’s also a report at startup confirming that you are, or are not, in 
deployment mode with regard to all that

Of course, I don’t recall exactly but it sounds like this could be the case for 
you, I also don’t recall how you set that but I am certain you’ll find it on 
the deployment page of the wiki

Somewhere around here maybe

https://wiki.wocommunity.org/display/documentation/Deployment



> On Jan 12, 2019, at 10:03 AM, Jeffrey Schmitz  
> wrote:
> 
> I’m using the URL generated by Eclipse when I debug, and yes it looks like 
> the URL you describe:
> 
> http://localhost/cgi-bin/WebObjects/netbrackets.woa/-
> 
> I’m wondering, do I need to add the application that is built by Eclipse 
> under the “dist” folder to the wotaskd config using Javamonitor?  
> 
> Jeff
> 
> 
> 
>> On Jan 11, 2019, at 10:08 PM, Aaron Rosenzweig  wrote:
>> 
>> Jeffrey,
>> 
>> What is the url you are trying to use in Safari to connect?
>> 
>> You need to know the port and you need to type it with a negative.
>> 
>> With direct connect it is a colon but with the apache adaptor it is a slash 
>> and then a negative sign and then the port number. 
>> AARON ROSENZWEIG / Chat 'n Bike
>> e:  aa...@chatnbike.com  t:  (301) 956-2319  
>>  
>> 
>>> On Jan 11, 2019, at 6:09 PM, Jeffrey Schmitz  
>>> wrote:
>>> 
>>> 
>>> Yes I think you must be right.  After shutting down and deleting the 
>>> launched version however, it now says The requested application was not 
>>> found on this server.
>>> 
>>> What is the magic property that makes apache use the Eclipse version that 
>>> is launched when I try to debug?
>>> 
>>> Thanks
>>> Jeff
>>> 
 On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig  wrote:
 
 Hi Jeff - I suppose you actually have the .woa launched and running on 
 your system and Apache is connecting to that instead of Eclipse. 
 AARON ROSENZWEIG / Chat 'n Bike
 e:  aa...@chatnbike.com  t:  (301) 956-2319

 
> On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz 
>  wrote:
> 
> Hello List,
>I’m trying to use apache for development per 
> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>  so I can test SSL related code.
> 
>When I launch my app from Eclipse however, it’s not getting my latest 
> changes nor is it stopping on my breakpoints in the debugger.  Using 
> direct connect it all works as expected.  Any ideas what’s going on?
> 
> Jeff
> 
> ___
> 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:
> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
> 
> This email sent to aa...@chatnbike.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:
> https://lists.apple.com/mailman/options/webobjects-dev/jtayler%40oeinc.com
> 
> This email sent to jtay...@oeinc.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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Apache for Dev and breakpoints

2019-01-12 Thread Jeffrey Schmitz
I’m using the URL generated by Eclipse when I debug, and yes it looks like the 
URL you describe:

http://localhost/cgi-bin/WebObjects/netbrackets.woa/- 


I’m wondering, do I need to add the application that is built by Eclipse under 
the “dist” folder to the wotaskd config using Javamonitor?  

Jeff



> On Jan 11, 2019, at 10:08 PM, Aaron Rosenzweig  wrote:
> 
> Jeffrey,
> 
> What is the url you are trying to use in Safari to connect?
> 
> You need to know the port and you need to type it with a negative.
> 
> With direct connect it is a colon but with the apache adaptor it is a slash 
> and then a negative sign and then the port number. 
> AARON ROSENZWEIG / Chat 'n Bike 
> e:  aa...@chatnbike.com   t:  (301) 956-2319  
> 
>   
> 
>> On Jan 11, 2019, at 6:09 PM, Jeffrey Schmitz > > wrote:
>> 
>> 
>> Yes I think you must be right.  After shutting down and deleting the 
>> launched version however, it now says The requested application was not 
>> found on this server.
>> 
>> What is the magic property that makes apache use the Eclipse version that is 
>> launched when I try to debug?
>> 
>> Thanks
>> Jeff
>> 
>>> On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig >> > wrote:
>>> 
>>> Hi Jeff - I suppose you actually have the .woa launched and running on your 
>>> system and Apache is connecting to that instead of Eclipse. 
>>> AARON ROSENZWEIG / Chat 'n Bike 
>>> e:  aa...@chatnbike.com   t:  (301) 956-2319
>>> 
>>> 
>>> 
 On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz >>> > wrote:
 
 Hello List,
I’m trying to use apache for development per 
 https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
  
 
  so I can test SSL related code.
 
When I launch my app from Eclipse however, it’s not getting my latest 
 changes nor is it stopping on my breakpoints in the debugger.  Using 
 direct connect it all works as expected.  Any ideas what’s going on?
 
 Jeff
 
 ___
 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:
 https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
  
 
 
 This email sent to aa...@chatnbike.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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Apache for Dev and breakpoints

2019-01-11 Thread Aaron Rosenzweig
Jeffrey,

What is the url you are trying to use in Safari to connect?

You need to know the port and you need to type it with a negative.

With direct connect it is a colon but with the apache adaptor it is a slash and 
then a negative sign and then the port number. 
AARON ROSENZWEIG / Chat 'n Bike 
e:  aa...@chatnbike.com   t:  (301) 956-2319



> On Jan 11, 2019, at 6:09 PM, Jeffrey Schmitz  
> wrote:
> 
> 
> Yes I think you must be right.  After shutting down and deleting the launched 
> version however, it now says The requested application was not found on this 
> server.
> 
> What is the magic property that makes apache use the Eclipse version that is 
> launched when I try to debug?
> 
> Thanks
> Jeff
> 
>> On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig > > wrote:
>> 
>> Hi Jeff - I suppose you actually have the .woa launched and running on your 
>> system and Apache is connecting to that instead of Eclipse. 
>> AARON ROSENZWEIG / Chat 'n Bike 
>> e:  aa...@chatnbike.com   t:  (301) 956-2319 
>> 
>>  
>> 
>>> On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz >> > wrote:
>>> 
>>> Hello List,
>>>I’m trying to use apache for development per 
>>> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>>>  
>>> 
>>>  so I can test SSL related code.
>>> 
>>>When I launch my app from Eclipse however, it’s not getting my latest 
>>> changes nor is it stopping on my breakpoints in the debugger.  Using direct 
>>> connect it all works as expected.  Any ideas what’s going on?
>>> 
>>> Jeff
>>> 
>>> ___
>>> 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:
>>> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
>>>  
>>> 
>>> 
>>> This email sent to aa...@chatnbike.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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Apache for Dev and breakpoints

2019-01-11 Thread Jeffrey Schmitz

Yes I think you must be right.  After shutting down and deleting the launched 
version however, it now says The requested application was not found on this 
server.

What is the magic property that makes apache use the Eclipse version that is 
launched when I try to debug?

Thanks
Jeff

> On Jan 11, 2019, at 2:10 PM, Aaron Rosenzweig  wrote:
> 
> Hi Jeff - I suppose you actually have the .woa launched and running on your 
> system and Apache is connecting to that instead of Eclipse. 
> AARON ROSENZWEIG / Chat 'n Bike 
> e:  aa...@chatnbike.com   t:  (301) 956-2319  
> 
>   
> 
>> On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz > > wrote:
>> 
>> Hello List,
>>I’m trying to use apache for development per 
>> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>>  
>> 
>>  so I can test SSL related code.
>> 
>>When I launch my app from Eclipse however, it’s not getting my latest 
>> changes nor is it stopping on my breakpoints in the debugger.  Using direct 
>> connect it all works as expected.  Any ideas what’s going on?
>> 
>> Jeff
>> 
>> ___
>> 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:
>> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com 
>> 
>> 
>> This email sent to aa...@chatnbike.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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Apache for Dev and breakpoints

2019-01-11 Thread Jeffrey Schmitz
Possibly as I wasn’t quite sure what to put for some of these on a dev machine 
and they all aren’t spelled out on the wocommunity page

Here are my apache config settings included in the combination of httpd.conf 
and my webobject adaptor config.

httpd.conf :

ServerRoot "/usr/local/opt/httpd”
RewriteEngine on
RewriteRule "^/cgi-bin/WebObjects/netBrackets.woa(.*)$" 
"/cgi-bin/WebObjects/netbrackets.woa$1" [R]
DocumentRoot "/Library/WebServer/Documents”
ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) 
"/Library/WebServer/CGI-Executables/$1”
Include /usr/local/etc/httpd/conf.d/webobjects.conf

Adaptor config (webobjects.conf):

LoadModule WebObjects_modulelib/httpd/modules/mod_WebObjects.so
WebObjectsDocumentRoot /Users/netBrackets/git/netBrackets/netBrackets/dist/Split
WebObjectsAlias /cgi-bin/WebObjects
WebObjectsConfig http://localhost:1085 10
ServerRoot "/usr/local/opt/httpd”

I think these are all the webobjects related settings, but Let me know If 
there’s any other specific settings that would help.

Jeff


> On Jan 11, 2019, at 4:02 AM, Altera WO Team  wrote:
> 
> Hi, are you sure that apache is hitting the app in Eclipse and not another 
> app deployed on the same machine? Please tell us more about the apache 
> configuration...
> 
> 
> Matteo
> 
> 
>> On Jan 11, 2019, at 3:13 AM, Jeffrey Schmitz > > wrote:
>> 
>> Hello List,
>>I’m trying to use apache for development per 
>> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>>  
>> 
>>  so I can test SSL related code.
>> 
>>When I launch my app from Eclipse however, it’s not getting my latest 
>> changes nor is it stopping on my breakpoints in the debugger.  Using direct 
>> connect it all works as expected.  Any ideas what’s going on?
>> 
>> Jeff
>> 
>> ___
>> 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:
>> https://lists.apple.com/mailman/options/webobjects-dev/webobjects%40altera.it
>>  
>> 
>> 
>> This email sent to webobje...@altera.it
> 

 ___
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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Re: Apache for Dev and breakpoints

2019-01-11 Thread Aaron Rosenzweig
Hi Jeff - I suppose you actually have the .woa launched and running on your 
system and Apache is connecting to that instead of Eclipse. 
AARON ROSENZWEIG / Chat 'n Bike 
e:  aa...@chatnbike.com   t:  (301) 956-2319



> On Jan 10, 2019, at 9:13 PM, Jeffrey Schmitz  
> wrote:
> 
> Hello List,
>I’m trying to use apache for development per 
> https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
>  
> 
>  so I can test SSL related code.
> 
>When I launch my app from Eclipse however, it’s not getting my latest 
> changes nor is it stopping on my breakpoints in the debugger.  Using direct 
> connect it all works as expected.  Any ideas what’s going on?
> 
> Jeff
> 
> ___
> 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:
> https://lists.apple.com/mailman/options/webobjects-dev/aaron%40chatnbike.com
> 
> This email sent to aa...@chatnbike.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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com


Apache for Dev and breakpoints

2019-01-10 Thread Jeffrey Schmitz
Hello List,
   I’m trying to use apache for development per 
https://wiki.wocommunity.org/display/documentation/Development+Tools-Running+Through+Apache
 

 so I can test SSL related code.

   When I launch my app from Eclipse however, it’s not getting my latest 
changes nor is it stopping on my breakpoints in the debugger.  Using direct 
connect it all works as expected.  Any ideas what’s going on?

Jeff

 ___
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:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com