Re: WOOutputPath causes launch hang

2006-10-29 Thread Mike Schrag

Are all of the expected files inside of Main.wo?  .woo, .html, .wod?

On Oct 29, 2006, at 8:32 PM, Clark Mueller wrote:

I'm using the one out of dist, but Yes and No on the  
WebServerResources. To clarify, I HAD added the .wo as a  
WebServerResource to see if it made any difference. It searched for  
it there, and the same problem existed, but it does the same thing  
if it is only added as a Resource. In that case, the error message  
is the same, but with the Resources path instead of the  
WebServerResources path:


[2006-10-29 04:08:12 MST]   
 No  
template found for component Main at "file:/Users/clark/Code/ 
eclipse/RepairStatus/dist/RepairStatus.woa/Contents/Resources/ 
Main.wo".


So at this time, all of the .wos are in Resources, web server  
resources (two .gifs) are in WebServerResources, and the project  
jar contains all of the right classes, and lives in Resources/Java.


Clark

On 29 Oct 06, at 5:45 PM, Mike Schrag wrote:

Just to be sure, you're using the woa from the "dist" folder and  
not the woa from the "build" folder, right?  And there's no  
Main.wo in dist/RepairStatus.woa/Contents/WebServerResources like  
the error message alludes to?


ms

On Oct 29, 2006, at 5:58 PM, Clark Mueller wrote:

I had added them to both to see if it made a difference, but it  
doesn't; if they're only added as resources, the same error  
occurs (for Resources instead of WSR).


resources.include.patternset:

**/*.eomodeld~/
**/*.woa/**
**/*.framework/**
**/src
**/components
**/*.wo

wsresources.include.patternset:

**/*.gif
**/*.xsl
**/*.css
**/*.png
**/*.jpg
**/*.js

classes.include.patternset:

**/*.class
*.properties
**/src
**/*.wo
**/*.java

Looking at the assembled .woa, it looks entirely normal... I've  
got three components and the Java dir in the Resources dir, a  
couple of images nested inside of WebServerResources, and  
the .jar contains all the right classes... Very confused!


Thanks,
Clark

On 29 Oct 06, at 8:06 AM, Mike Schrag wrote:

It's not necessarily the cause of your problem, but it's  
suspicious (depending on how your patterns are setup).  *.wo  
files are not WebServerResources, they are Resources.  It's  
suspicious that your Main.wo is in the WebServerResources  
folder.  Where is Main.wo in your actual project?  What do your  
resources.include.pattern and webserversources.include.pattern  
contain? (don't know if i have those filenames exactly right --  
i don't have wolips open right now in front of me)


ms

On Oct 29, 2006, at 6:18 AM, Clark Mueller wrote:

Yeah, I'm confused too. I revisited this problem tonight, and  
while I'm not really much closer to a solution for it, I've got  
at least "better" activity on the development side. Somehow  
I've gotten from point A to point B, but I'm not exactly sure  
what happened in between. My development builds (using Ant  
only) are now spitting out this error when I visit the app in a  
browser, running from the Ant build on a dev box:


[2006-10-29 04:08:12 MST]   
 No  
template found for component Main at "file:/Users/clark/Code/ 
eclipse/RepairStatus/dist/RepairStatus.woa/Contents/ 
WebServerResources/Main.wo".


That error appeared out of nowhere the first time I tried  
building the app on the deployment box tonight, which is  
interesting, because I repeatedly cleaned the project the other  
night when I was originally having the problem. I found a  
couple of posts on the list that allude to checking the class  
name in the .api file. I don't have one... but I tried creating  
one and indicated the class name for the component as  
"package.Main". That didn't have any effect. I also found some  
very badly mangled character encoding in one of my components,  
but it was not the Main component (which is where ALL of the  
problems are).


Switching to incremental builds in Eclipse work perfectly...  
but don't leave me with anything I can deploy... I tried  
toggling the build type to incremental, deleting build.xml and  
cleaning the project, and then toggling it back to get a new  
build.xml file (although I hadn't changed mine), and that made  
no difference either. My working assumption is that the  
build.xml file I'm getting is bad in some way... but I'm not  
sure where to start looking.


? :-\

Thanks,
Clark

On 26 Oct 06, at 7:12 PM, Chuck Hill wrote:


Hi Clark,

On Oct 24, 2006, at 10:17 PM, Clark Mueller wrote:


Chuck,

Very odd! :-)

This is mostly a very, very simple application. There's  
probably less than 100 lines of controller code in total, and  
only three components. Nothing happens in the app  
constructor. It uses Axis as a client (not using WO web  
services), but not on launch. It has three models with no  
custom business logic. I'm not using Wonder for this project,  
and the frameworks are not even installed on the deployment  
server. Here are the "weird" things I can think of:


- I built it under JDK v1.5. Still runs fine on my  
development machine, and I certainly haven't had a

Re: Performance - the big problem

2006-10-29 Thread apl

Something gets hung and I don't know what it is.


Could this help...?

http://en.wikibooks.org/wiki/Programming:WebObjects/Web_Applications/ 
Deployment/Debugging_Frozen_Deployed_Instances


cheers.

___
Andrew Lindesay
www.lindesay.co.nz



___
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: WOOutputPath causes launch hang

2006-10-29 Thread Clark Mueller
I'm using the one out of dist, but Yes and No on the  
WebServerResources. To clarify, I HAD added the .wo as a  
WebServerResource to see if it made any difference. It searched for  
it there, and the same problem existed, but it does the same thing if  
it is only added as a Resource. In that case, the error message is  
the same, but with the Resources path instead of the  
WebServerResources path:


[2006-10-29 04:08:12 MST]   
 No  
template found for component Main at "file:/Users/clark/Code/ 
eclipse/RepairStatus/dist/RepairStatus.woa/Contents/Resources/ 
Main.wo".


So at this time, all of the .wos are in Resources, web server  
resources (two .gifs) are in WebServerResources, and the project jar  
contains all of the right classes, and lives in Resources/Java.


Clark

On 29 Oct 06, at 5:45 PM, Mike Schrag wrote:

Just to be sure, you're using the woa from the "dist" folder and  
not the woa from the "build" folder, right?  And there's no Main.wo  
in dist/RepairStatus.woa/Contents/WebServerResources like the error  
message alludes to?


ms

On Oct 29, 2006, at 5:58 PM, Clark Mueller wrote:

I had added them to both to see if it made a difference, but it  
doesn't; if they're only added as resources, the same error occurs  
(for Resources instead of WSR).


resources.include.patternset:

**/*.eomodeld~/
**/*.woa/**
**/*.framework/**
**/src
**/components
**/*.wo

wsresources.include.patternset:

**/*.gif
**/*.xsl
**/*.css
**/*.png
**/*.jpg
**/*.js

classes.include.patternset:

**/*.class
*.properties
**/src
**/*.wo
**/*.java

Looking at the assembled .woa, it looks entirely normal... I've  
got three components and the Java dir in the Resources dir, a  
couple of images nested inside of WebServerResources, and the .jar  
contains all the right classes... Very confused!


Thanks,
Clark

On 29 Oct 06, at 8:06 AM, Mike Schrag wrote:

It's not necessarily the cause of your problem, but it's  
suspicious (depending on how your patterns are setup).  *.wo  
files are not WebServerResources, they are Resources.  It's  
suspicious that your Main.wo is in the WebServerResources  
folder.  Where is Main.wo in your actual project?  What do your  
resources.include.pattern and webserversources.include.pattern  
contain? (don't know if i have those filenames exactly right -- i  
don't have wolips open right now in front of me)


ms

On Oct 29, 2006, at 6:18 AM, Clark Mueller wrote:

Yeah, I'm confused too. I revisited this problem tonight, and  
while I'm not really much closer to a solution for it, I've got  
at least "better" activity on the development side. Somehow I've  
gotten from point A to point B, but I'm not exactly sure what  
happened in between. My development builds (using Ant only) are  
now spitting out this error when I visit the app in a browser,  
running from the Ant build on a dev box:


[2006-10-29 04:08:12 MST]   
 No  
template found for component Main at "file:/Users/clark/Code/ 
eclipse/RepairStatus/dist/RepairStatus.woa/Contents/ 
WebServerResources/Main.wo".


That error appeared out of nowhere the first time I tried  
building the app on the deployment box tonight, which is  
interesting, because I repeatedly cleaned the project the other  
night when I was originally having the problem. I found a couple  
of posts on the list that allude to checking the class name in  
the .api file. I don't have one... but I tried creating one and  
indicated the class name for the component as "package.Main".  
That didn't have any effect. I also found some very badly  
mangled character encoding in one of my components, but it was  
not the Main component (which is where ALL of the problems are).


Switching to incremental builds in Eclipse work perfectly... but  
don't leave me with anything I can deploy... I tried toggling  
the build type to incremental, deleting build.xml and cleaning  
the project, and then toggling it back to get a new build.xml  
file (although I hadn't changed mine), and that made no  
difference either. My working assumption is that the build.xml  
file I'm getting is bad in some way... but I'm not sure where to  
start looking.


? :-\

Thanks,
Clark

On 26 Oct 06, at 7:12 PM, Chuck Hill wrote:


Hi Clark,

On Oct 24, 2006, at 10:17 PM, Clark Mueller wrote:


Chuck,

Very odd! :-)

This is mostly a very, very simple application. There's  
probably less than 100 lines of controller code in total, and  
only three components. Nothing happens in the app constructor.  
It uses Axis as a client (not using WO web services), but not  
on launch. It has three models with no custom business logic.  
I'm not using Wonder for this project, and the frameworks are  
not even installed on the deployment server. Here are the  
"weird" things I can think of:


- I built it under JDK v1.5. Still runs fine on my development  
machine, and I certainly haven't had any problems at least  
with apps LAUNCHING using JDK 1.5. Building it under 1.4.2  
doesn't seem to have made a difference.

Re: Bad SQL (no SQL!) for derived columns

2006-10-29 Thread Clark Mueller
EM does actually enter the empty columnName attribute into the dictionary for each attribute, but removing it as EOModeler does (so that it turns out to be null?) did not seem to have an impact (note: I have gone back and tested and confirmed that this does not matter).I tried creating a new test project to verify or reproduce that the problem was related to the use of prototypes, or a bad column definition, or to switching from OB to MySQL, but the test project behaved perfectly, and I can't tell what the differences are between that and the project that's actually having the problem. In any case... I don't use enough of them myself for it to be worth the time solving the problem right now, so I'll be leaving it on the backburner, and will implement those fields in the biz logic instead.I certainly seem to be running in to more than my share of weird problems lately... it's getting frustrating!Thanks both of you for the tips,ClarkOn 29 Oct 06, at 8:09 AM, Mike Schrag wrote:Yeah I don't personally use and derived columns, so I've never seen them in Entity Modeler vs EOModeler.  It's possible EM is generating something wrong.  If you feel like doing some testing for me, you can make a simple EOModel with a derived column with EOModeler then again with EntityModeler and compare the two attributes in the entity .plist file and see if they are substantively different.msOn Oct 29, 2006, at 8:49 AM, Kieran Kelleher wrote:check your eomodel column definition it is not picking up the column name somehow. Open the model in EOModeler and check there too.On Oct 29, 2006, at 4:40 AM, Clark Mueller wrote:Howdy,i'm having an issue with a project that I've been converting to MySQL (from OpenBase). Something that has come up since testing against MySQL is that the select query for a derived column does not appear to be generating the correct SQL... it generates a blank column name for the derived columns. For example:"select t0.someAttribute, t0.otherAttribute, ..., t0., ..., t1.someAttribute from xyz t0, abc t1"Obviously the query fails against the database, because no column or calculation has been entered... Any idea what would be causing  this? Basic setup is Eclipse, editing the model with Entity Modeler, with the project using Wonder.Thanks & regards,Clark ___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/kieran_lists%40mac.comThis email sent to [EMAIL PROTECTED]  ___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/mschrag%40mdimension.comThis email sent to [EMAIL PROTECTED]  ___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/cpmueller%40mac.comThis email sent to [EMAIL PROTECTED]  ___
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: WOOutputPath causes launch hang

2006-10-29 Thread Mike Schrag
Just to be sure, you're using the woa from the "dist" folder and not  
the woa from the "build" folder, right?  And there's no Main.wo in  
dist/RepairStatus.woa/Contents/WebServerResources like the error  
message alludes to?


ms

On Oct 29, 2006, at 5:58 PM, Clark Mueller wrote:

I had added them to both to see if it made a difference, but it  
doesn't; if they're only added as resources, the same error occurs  
(for Resources instead of WSR).


resources.include.patternset:

**/*.eomodeld~/
**/*.woa/**
**/*.framework/**
**/src
**/components
**/*.wo

wsresources.include.patternset:

**/*.gif
**/*.xsl
**/*.css
**/*.png
**/*.jpg
**/*.js

classes.include.patternset:

**/*.class
*.properties
**/src
**/*.wo
**/*.java

Looking at the assembled .woa, it looks entirely normal... I've got  
three components and the Java dir in the Resources dir, a couple of  
images nested inside of WebServerResources, and the .jar contains  
all the right classes... Very confused!


Thanks,
Clark

On 29 Oct 06, at 8:06 AM, Mike Schrag wrote:

It's not necessarily the cause of your problem, but it's  
suspicious (depending on how your patterns are setup).  *.wo files  
are not WebServerResources, they are Resources.  It's suspicious  
that your Main.wo is in the WebServerResources folder.  Where is  
Main.wo in your actual project?  What do your  
resources.include.pattern and webserversources.include.pattern  
contain? (don't know if i have those filenames exactly right -- i  
don't have wolips open right now in front of me)


ms

On Oct 29, 2006, at 6:18 AM, Clark Mueller wrote:

Yeah, I'm confused too. I revisited this problem tonight, and  
while I'm not really much closer to a solution for it, I've got  
at least "better" activity on the development side. Somehow I've  
gotten from point A to point B, but I'm not exactly sure what  
happened in between. My development builds (using Ant only) are  
now spitting out this error when I visit the app in a browser,  
running from the Ant build on a dev box:


[2006-10-29 04:08:12 MST]   
 No  
template found for component Main at "file:/Users/clark/Code/ 
eclipse/RepairStatus/dist/RepairStatus.woa/Contents/ 
WebServerResources/Main.wo".


That error appeared out of nowhere the first time I tried  
building the app on the deployment box tonight, which is  
interesting, because I repeatedly cleaned the project the other  
night when I was originally having the problem. I found a couple  
of posts on the list that allude to checking the class name in  
the .api file. I don't have one... but I tried creating one and  
indicated the class name for the component as "package.Main".  
That didn't have any effect. I also found some very badly mangled  
character encoding in one of my components, but it was not the  
Main component (which is where ALL of the problems are).


Switching to incremental builds in Eclipse work perfectly... but  
don't leave me with anything I can deploy... I tried toggling the  
build type to incremental, deleting build.xml and cleaning the  
project, and then toggling it back to get a new build.xml file  
(although I hadn't changed mine), and that made no difference  
either. My working assumption is that the build.xml file I'm  
getting is bad in some way... but I'm not sure where to start  
looking.


? :-\

Thanks,
Clark

On 26 Oct 06, at 7:12 PM, Chuck Hill wrote:


Hi Clark,

On Oct 24, 2006, at 10:17 PM, Clark Mueller wrote:


Chuck,

Very odd! :-)

This is mostly a very, very simple application. There's  
probably less than 100 lines of controller code in total, and  
only three components. Nothing happens in the app constructor.  
It uses Axis as a client (not using WO web services), but not  
on launch. It has three models with no custom business logic.  
I'm not using Wonder for this project, and the frameworks are  
not even installed on the deployment server. Here are the  
"weird" things I can think of:


- I built it under JDK v1.5. Still runs fine on my development  
machine, and I certainly haven't had any problems at least with  
apps LAUNCHING using JDK 1.5. Building it under 1.4.2 doesn't  
seem to have made a difference.


Check


- The .woa shows up as a folder in the Finder on the deployment  
machine... which is odd only because the other apps don't.


That is odd.  I am not sure why that would happen.  I don't know  
if it matters as it starts to launch.



The best I can figure is that it IS a WOLips specific problem  
of some sort - but I don't know nearly enough about what WOLips  
does differently in terms of building the application bundle to  
figure out where to start troubleshooting it. This is literally  
the first time I've actually dealt with a woa built by WOLips,  
but the bundle contents look correct...


I've never seen this happen before either.


The only other interesting thing I noticed is that while it is  
hung, Monitor recognizes it as running, and if I go to the app  
in a browser, it shows a blank page. Here is t

Re: WWDC movies on iTunes

2006-10-29 Thread Jeremy Matthews
Don't have the link...do have a membership (paid) in the ADC...please  
send me the link (anyone) if it actually exists...


WebObjects videos ARE NOT on the ADC/iTunes store

Thanks,
jeremy

-
You should have received a link in the email from Apple if you went
to WWDC this year, when you follow this link, you authentificate
yourself and the link will open up in iTunes...
___
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: Performance - the big problem

2006-10-29 Thread Sacha Michel Mallais

On Oct 29, 2006, at 1:25 PM, Baiss Eric Magnusson wrote:

I have a long-standing problem with my main WO site www.Track-Your-Finances.com>, when I ask for a lot of records, say  
(400-2000) and upwards.

This is a WO-Frontbase-MacOSXS site.

Something gets hung and I don't know what it is.
From Activity Monitor I see no sign of CPU saturation, there's  
significant memory available,  lots of disk space, and the Network  
traffic is down to near zero.


Here's what TOP, from Monitor shows me, at a moment when a page hung:

Processes:  73 total, 2 running, 71 sleeping... 452  
threads12:44:46
Load Avg:  0.07, 0.08, 0.03 CPU usage:  3.6% user, 6.4% sys,  
90.0% idle
SharedLibs: num =  178, resident = 41.1M code, 4.97M data, 8.90M  
LinkEdit
MemRegions: num =  8642, resident =  375M + 9.73M private, 74.2M  
shared
PhysMem:   101M wired,  117M active,  454M inactive,  672M used,   
351M free

VM: 6.27G +  114M   123714(0) pageins, 0(0) pageouts

  PID COMMAND  %CPU   TIME   #TH #PRTS #MREGS RPRVT  RSHRD   
RSIZE  VSIZE
24214 FrontBase0.0%  0:07.42   75557  5.25M  2.09M   
6.53M  41.7M
24158 FrontBase0.0%  0:31.16   75762  6.45M  2.09M   
7.86M  43.6M
18249 AppleSpell   0.0%  0:00.08   13231   416K  1.82M   
2.64M  37.2M
17943 java 0.0% 12:04.51  28   386   200  35.1M  17.0M   
43.6M   367M
12575 java 0.0%  2:13.77  27   388   199  34.6M  17.0M   
43.4M   367M
11098 lookupd  0.0%  0:48.43   43844   512K  1000K   
1.26M  29.6M
10403 java 0.0% 12:38.92  27   345   195  24.5M  17.0M   
32.9M   367M

...


This looks like you've asked it to sample for X seconds (top -s  
), but didn't give top enough time to do the sample.  The clue  
is the %CPU all 0.0%.  Nevertheless, the other numbers are useful.   
Definitely seems like you have enough RAM.



From my old embedded programming & real-time simulation days, it  
appears to be like a port conflict where the system just hangs for  
a very long period of time, say ten minutes.
This is my last big hurdle before I'm ready for a significant  
launch...


Do you notice an increase in disk activity?  Does the same query take  
the same length of time if you run it twice in a row?


Have you narrowed down all possibilities so that you're sure the  
delay comes between querying FB and getting a response back?


It might be the communication between FB and the app (they're on the  
same machine, so no network activity will show up).  The 2000 rows:  
what's the average length of a row?  I would expect a slowdown  
returning only 100 rows -- if those rows were 10GB blobs...



sacha



___
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


Performance - the big problem

2006-10-29 Thread Baiss Eric Magnusson
I have a long-standing problem with my main WO site , when I ask for a lot of records, say (400-2000)  
and upwards.

This is a WO-Frontbase-MacOSXS site.

Something gets hung and I don't know what it is.
From Activity Monitor I see no sign of CPU saturation, there's  
significant memory available,  lots of disk space, and the Network  
traffic is down to near zero.


Here's what TOP, from Monitor shows me, at a moment when a page hung:

Processes:  73 total, 2 running, 71 sleeping... 452  
threads12:44:46
Load Avg:  0.07, 0.08, 0.03 CPU usage:  3.6% user, 6.4% sys,  
90.0% idle
SharedLibs: num =  178, resident = 41.1M code, 4.97M data, 8.90M  
LinkEdit

MemRegions: num =  8642, resident =  375M + 9.73M private, 74.2M shared
PhysMem:   101M wired,  117M active,  454M inactive,  672M used,   
351M free

VM: 6.27G +  114M   123714(0) pageins, 0(0) pageouts

  PID COMMAND  %CPU   TIME   #TH #PRTS #MREGS RPRVT  RSHRD   
RSIZE  VSIZE
24214 FrontBase0.0%  0:07.42   75557  5.25M  2.09M   
6.53M  41.7M
24158 FrontBase0.0%  0:31.16   75762  6.45M  2.09M   
7.86M  43.6M
18249 AppleSpell   0.0%  0:00.08   13231   416K  1.82M   
2.64M  37.2M
17943 java 0.0% 12:04.51  28   386   200  35.1M  17.0M   
43.6M   367M
12575 java 0.0%  2:13.77  27   388   199  34.6M  17.0M   
43.4M   367M
11098 lookupd  0.0%  0:48.43   43844   512K  1000K   
1.26M  29.6M
10403 java 0.0% 12:38.92  27   345   195  24.5M  17.0M   
32.9M   367M

...

From my old embedded programming & real-time simulation days, it  
appears to be like a port conflict where the system just hangs for a  
very long period of time, say ten minutes.

This is my last big hurdle before I'm ready for a significant launch...

You can duplicate the problem, probably, by going to TYF, clicking  
the  button, going to , and selecting a  
year range.



Baiss Eric Magnusson




___
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: Bad SQL (no SQL!) for derived columns

2006-10-29 Thread Mike Schrag
Yeah I don't personally use and derived columns, so I've never seen them in Entity Modeler vs EOModeler.  It's possible EM is generating something wrong.  If you feel like doing some testing for me, you can make a simple EOModel with a derived column with EOModeler then again with EntityModeler and compare the two attributes in the entity .plist file and see if they are substantively different.msOn Oct 29, 2006, at 8:49 AM, Kieran Kelleher wrote:check your eomodel column definition it is not picking up the column name somehow. Open the model in EOModeler and check there too.On Oct 29, 2006, at 4:40 AM, Clark Mueller wrote:Howdy,i'm having an issue with a project that I've been converting to MySQL (from OpenBase). Something that has come up since testing against MySQL is that the select query for a derived column does not appear to be generating the correct SQL... it generates a blank column name for the derived columns. For example:"select t0.someAttribute, t0.otherAttribute, ..., t0., ..., t1.someAttribute from xyz t0, abc t1"Obviously the query fails against the database, because no column or calculation has been entered... Any idea what would be causing  this? Basic setup is Eclipse, editing the model with Entity Modeler, with the project using Wonder.Thanks & regards,Clark ___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/kieran_lists%40mac.comThis email sent to [EMAIL PROTECTED]  ___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/mschrag%40mdimension.comThis email sent to [EMAIL PROTECTED]  ___
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: Bad SQL (no SQL!) for derived columns

2006-10-29 Thread Kieran Kelleher
check your eomodel column definition it is not picking up the column name somehow. Open the model in EOModeler and check there too.On Oct 29, 2006, at 4:40 AM, Clark Mueller wrote:Howdy,i'm having an issue with a project that I've been converting to MySQL (from OpenBase). Something that has come up since testing against MySQL is that the select query for a derived column does not appear to be generating the correct SQL... it generates a blank column name for the derived columns. For example:"select t0.someAttribute, t0.otherAttribute, ..., t0., ..., t1.someAttribute from xyz t0, abc t1"Obviously the query fails against the database, because no column or calculation has been entered... Any idea what would be causing  this? Basic setup is Eclipse, editing the model with Entity Modeler, with the project using Wonder.Thanks & regards,Clark ___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/kieran_lists%40mac.comThis email sent to [EMAIL PROTECTED]  ___
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: WWDC movies on iTunes

2006-10-29 Thread Jeremy Matthews

Exactly!

Thanks; I'll guess I'll have to wait...

-jeremy

On Oct 28, 2006, at 9:51 PM, David Holt wrote:

I think that Jeremy is asking specifically about WO videos, which  
as far as I can tell are NOT part of the Leopard developer series  
currently on the store.


David

On 28-Oct-06, at 6:06 PM, Pascal Robert wrote:

You should have received a link in the email from Apple if you  
went to WWDC this year, when you follow this link, you  
authentificate yourself and the link will open up in iTunes...



Anyone have the direct link, since they're not in the ADC/iTMS?

Thanks,
jeremy

On Oct 28, 2006, at 8:21 AM, Miguel Arroz wrote:


Hi!

  http://developer.apple.com/adconitunes/

  It's buried deep inside the Developer site... I just hope  
Apple makes the link more accessible when all the videos are  
launched!


  Yours

Miguel Arroz

On 2006/10/28, at 12:26, Jeremy Matthews wrote:


Where are they?
Did I miss them?

(I have select access...but I didn't see them under  
"Development Tools" or "Information Technologies"


Thanks,
jeremy
___
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/arroz% 
40guiamac.com


This email sent to [EMAIL PROTECTED]



"We have no sympathy for the lost souls
We've chosen the path of disgrace
We give this life to our children
And teach them to hate this place" -- Apocalyptica, Life Burns!

Miguel Arroz
http://www.ipragma.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/probert% 
40os.ca


This email sent to [EMAIL PROTECTED]


___
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/ 
programmingosx%40mac.com


This email sent to [EMAIL PROTECTED]




___
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


Bad SQL (no SQL!) for derived columns

2006-10-29 Thread Clark Mueller
Howdy,i'm having an issue with a project that I've been converting to MySQL (from OpenBase). Something that has come up since testing against MySQL is that the select query for a derived column does not appear to be generating the correct SQL... it generates a blank column name for the derived columns. For example:"select t0.someAttribute, t0.otherAttribute, ..., t0., ..., t1.someAttribute from xyz t0, abc t1"Obviously the query fails against the database, because no column or calculation has been entered... Any idea what would be causing  this? Basic setup is Eclipse, editing the model with Entity Modeler, with the project using Wonder.Thanks & regards,Clark ___
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