From rminers at ipv.com Thu Jun 7 06:23:25 2007 From: rminers at ipv.com (Robert Miners) Date: Thu Jun 7 06:35:44 2007 Subject: Trouble with WOWebServiceClient invoke Message-ID: <466806CD.7030001@ipv.com> I'm consuming a WebService written with ASP.net that has a method that uses an 'out' parameter, i.e. of this form. [WebMethod] int GetResultViaOutParam(out int out_param) I have no problems if the method has no 'out' parameters, i.e. of the form. [WebMethod] int GetResultWith2InParams(int param1, int param2) The WebObject code for the 'no out params' method is int arg1 = 3; int arg2 = 4; Object[] arguments = { new Integer(arg1), new Integer(arg2) }; String operation = new String("GetResultWith2InParams"); Object res = serviceClient().invoke(serviceName(), operation, arguments); The WebObject code for the 'out param' method is int arg1 = 0; Object[] arguments = { new Integer(arg1) }; String operation = new String("GetResultViaOutParam"); Object res = serviceClient().invoke(serviceName(), operation, arguments); The exception that is raised by the attempt to invoke 'WebMethodWithOutParam' is Error: Error invoking operation: javax.xml.rpc.JAXRPCException: Number of parameters passed in (1) does not match the number of IN/OUT parameters (0) from the addParameter() calls. This is the SOAP1.1 response for the service HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length int int This is the SOAP1.2 response for the service HTTP/1.1 200 OK Content-Type: application/soap+xml; charset=utf-8 Content-Length: length int int How can I consume the 'GetResultViaOutParam' method? From jdunnett at math.uwaterloo.ca Thu Jun 7 08:55:28 2007 From: jdunnett at math.uwaterloo.ca (Jeff Dunnett) Date: Thu Jun 7 09:28:22 2007 Subject: Changing an Error Message Message-ID: <0B8516F1-921A-486A-BE52-203A1045BB6C@math.uwaterloo.ca> Hello Folks, I have what seems like a question that should have a very simple answer but unfortunately I can't find or figure out what the answer should be. I was wondering how to go about changing the error message a person receives whenever an application/instance they are seeing is not available. For example I have an application that can be accessed at: http://my-domain.com/cgi-bin/WebObjects/MyApp.woa/1 If for instance the application went down. Is there any way to change the error message so that they see "We sorry but the application is not available at the moment. Please come back later" rather then "The requested application was not found on this server." Thanks for your help. Regards, Jeff From sacha at global-village.net Thu Jun 7 09:45:04 2007 From: sacha at global-village.net (Sacha Michel Mallais) Date: Thu Jun 7 10:11:08 2007 Subject: Changing an Error Message In-Reply-To: <0B8516F1-921A-486A-BE52-203A1045BB6C@math.uwaterloo.ca> References: <0B8516F1-921A-486A-BE52-203A1045BB6C@math.uwaterloo.ca> Message-ID: On Jun 7, 2007, at 8:55 AM, Jeff Dunnett wrote: > Hello Folks, > > I have what seems like a question that should have a very simple > answer but unfortunately I can't find or figure out what the answer > should be. > > I was wondering how to go about changing the error message a person > receives whenever an application/instance they are seeing is not > available. > > For example I have an application that can be accessed at: > > http://my-domain.com/cgi-bin/WebObjects/MyApp.woa/1 > > If for instance the application went down. Is there any way to > change the error message so that they see "We sorry but the > application is not available at the moment. Please come back > later" rather then "The requested application was not found on this > server." Yes: use JavaMonitor to set a Redirection URL under Load Balancing and Adaptor Settings. sacha -- Sacha Michel Mallais Senior Developer / President Global Village Consulting Inc. http://www.global-village.net/ PGP Key ID: 7D757B65 AIM: smallais "The bird of paradise alights only upon the hand that does not grasp." -- John Berry From mschrag at mdimension.com Thu Jun 7 10:12:59 2007 From: mschrag at mdimension.com (Mike Schrag) Date: Thu Jun 7 10:13:10 2007 Subject: Changing an Error Message In-Reply-To: References: <0B8516F1-921A-486A-BE52-203A1045BB6C@math.uwaterloo.ca> Message-ID: <9904B604-1595-47A1-A8D6-756D1C6BC5EB@mdimension.com> Also see my apology letter to WebObjects on this topic: http://lists.apple.com/archives/webobjects-dev/2007/Mar/msg00482.html On Jun 7, 2007, at 12:45 PM, Sacha Michel Mallais wrote: > On Jun 7, 2007, at 8:55 AM, Jeff Dunnett wrote: > >> Hello Folks, >> >> I have what seems like a question that should have a very simple >> answer but unfortunately I can't find or figure out what the >> answer should be. >> >> I was wondering how to go about changing the error message a >> person receives whenever an application/instance they are seeing >> is not available. >> >> For example I have an application that can be accessed at: >> >> http://my-domain.com/cgi-bin/WebObjects/MyApp.woa/1 >> >> If for instance the application went down. Is there any way to >> change the error message so that they see "We sorry but the >> application is not available at the moment. Please come back >> later" rather then "The requested application was not found on >> this server." > > Yes: use JavaMonitor to set a Redirection URL under Load Balancing > and Adaptor Settings. > > > sacha > > > -- > Sacha Michel Mallais Senior Developer / President > Global Village Consulting Inc. http://www.global-village.net/ > PGP Key ID: 7D757B65 AIM: smallais > "The bird of paradise alights only upon the hand that does not > grasp." -- John Berry > > > _______________________________________________ > WebObjects-dev mailing list > WebObjects-dev@omnigroup.com > http://www.omnigroup.com/mailman/listinfo/webobjects-dev From rminers at ipv.com Thu Jun 7 05:36:10 2007 From: rminers at ipv.com (minimum) Date: Fri Jun 8 00:20:12 2007 Subject: Trouble with WOWebServiceClient invoke Message-ID: <11007168.post@talk.nabble.com> I'm consuming a WebService written with ASP.net that has a method that uses an 'out' parameter, i.e. of this form. [WebMethod] int GetResultViaOutParam(out int out_param) I have no problems if the method has no 'out' parameters, i.e. of the form. [WebMethod] int GetResultWith2InParams(int param1, int param2) The WebObject code for the 'no out params' method is int arg1 = 3; int arg2 = 4; Object[] arguments = { new Integer(arg1), new Integer(arg2) }; String operation = new String("GetResultWith2InParams"); Object res = serviceClient().invoke(serviceName(), operation, arguments); The WebObject code for the 'out param' method is int arg1 = 0; Object[] arguments = { new Integer(arg1) }; String operation = new String("GetResultViaOutParam"); Object res = serviceClient().invoke(serviceName(), operation, arguments); The exception that is raised by the attempt to invoke 'WebMethodWithOutParam' is Error: Error invoking operation: javax.xml.rpc.JAXRPCException: Number of parameters passed in (1) does not match the number of IN/OUT parameters (0) from the addParameter() calls. How can I consume the 'GetResultViaOutParam' method? -- View this message in context: http://www.nabble.com/Trouble-with-WOWebServiceClient-invoke-tf3883627.html#a11007168 Sent from the WebObjects-Dev mailing list archive at Nabble.com. From raja143chowdary at gmail.com Mon Jun 11 03:45:53 2007 From: raja143chowdary at gmail.com (Raja Chowdary) Date: Mon Jun 11 03:56:06 2007 Subject: Hey Webobjects-dev@omnigroup.com ;) Message-ID: <255677939.1181558753603.JavaMail.root@sfapp085> http://www.hi5.com/register/VuKxX?inviteId=A_7ca7e5e_Y6XatoSURXw0 Raja From dleber at codeferous.com Wed Jun 13 23:29:36 2007 From: dleber at codeferous.com (David LeBer) Date: Wed Jun 13 23:47:07 2007 Subject: Getting Started With WO site Message-ID: <29987C06-547D-4088-9B78-EAB14DC633DE@codeferous.com> Hey all, For those of you who are not attending WWDC, there has been a lively discussion about many things WO. Motivated by this I whipped together a WO Getting Started page and I'd like to get your feedback. This is just a baby step, but please let me know if you think I'm heading in the right direction. This the first of what I hope will be a trio of sites: I would like to create a general WO news blog (with multiple core contributers) so there is a central clearing house for news of interest to the WO community (new features in Wonder or WOLips, announcements from Apple, significant additions to the wikkibook, good blog posts, etc). I would also like to create a tutorial blog where short clear graphical task-oriented tutorials could be posted - I have some ideas of how I'd want these tutorials to be presented, but I still have to work out the style guidelines (I'm thinking: short on text, long on screenshots or maybe screencasts). I approach this with some trepidation - because someone seems to try and do something like this once a year - but my goal is to present unified (a dare I say) inviting front to new developers to the WebObjects platform. We have a ton of outstanding material in the various wikis and lists, and I have no interest in replacing that, but I'd like to give new users a way to find and make sense of what is there. Again, feedback (and offers of assistance) is welcome and appreciated. -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog: http://davidleber.net profile: http://www.linkedin.com/in/davidleber -- Toronto Area Cocoa / WebObjects developers group: http://tacow.org From janine at furfly.net Thu Jun 14 08:40:44 2007 From: janine at furfly.net (Janine Sisk) Date: Thu Jun 14 08:41:18 2007 Subject: Getting Started With WO site In-Reply-To: <29987C06-547D-4088-9B78-EAB14DC633DE@codeferous.com> References: <29987C06-547D-4088-9B78-EAB14DC633DE@codeferous.com> Message-ID: I have been thinking sort of along the same lines. I have received several requests this week to put my tutorial up where other people can edit it, but due to some bad experiences in the past (not with anyone here) I get hives just thinking about allowing open editing. So my thought was to set up a blog specifically for my tutorial, where people could post comments, point out mistakes and suggest future topics. This would also allow me to announce updates to all interested parties without spamming everyone on these lists. I've taken the opposite approach as David on tutorials - Mine is long on words and code, with no screenshots at all. That's partly due to time constraints and I might eventually put some in, but I think there is room for both styles. Some people are verbal learners, others are visual. I think David's idea is a great one, and I hope this can become the central repository of links to WO-related content. Things are a little confusing right how - people talk about "the wiki" and you always have to ask "which one"? That probably won't change, but having one place to send people for links to everything else would be very helpful. janine PS some people have asked me where to find my tutorial, so here's a shameless plug. The downloads are linked from http://wiki.objectstyle.org/confluence/display/WOCOM/WO+Resources+and+Ideas . On Jun 13, 2007, at 11:29 PM, David LeBer wrote: > Hey all, > > For those of you who are not attending WWDC, there has been a lively > discussion about many things WO. Motivated by this I whipped > together a WO Getting Started page > and I'd like to get your feedback. > > This is just a baby step, but please let me know if you think I'm > heading in the right direction. > > This the first of what I hope will be a trio of sites: > > I would like to create a general WO news blog (with multiple core > contributers) so there is a central clearing house for news of > interest to the WO community (new features in Wonder or WOLips, > announcements from Apple, significant additions to the wikkibook, > good blog posts, etc). > > I would also like to create a tutorial blog where short clear > graphical task-oriented tutorials could be posted - I have some > ideas of how I'd want these tutorials to be presented, but I still > have to work out the style guidelines (I'm thinking: short on text, > long on screenshots or maybe screencasts). > > I approach this with some trepidation - because someone seems to try > and do something like this once a year - but my goal is to present > unified (a dare I say) inviting front to new developers to the > WebObjects platform. We have a ton of outstanding material in the > various wikis and lists, and I have no interest in replacing that, > but I'd like to give new users a way to find and make sense of what > is there. > > Again, feedback (and offers of assistance) is welcome and appreciated. > > -- > ;david > > -- > David LeBer > Codeferous Software > 'co-def-er-ous' adj. Literally 'code-bearing' > site: http://codeferous.com > blog: http://davidleber.net > profile: http://www.linkedin.com/in/davidleber > -- > Toronto Area Cocoa / WebObjects developers group: > http://tacow.org > > > _______________________________________________ > 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/janine%40furfly.net > > This email sent to janine@furfly.net > From robertwalker1 at mac.com Thu Jun 14 08:49:16 2007 From: robertwalker1 at mac.com (Robert Walker) Date: Thu Jun 14 08:50:05 2007 Subject: Getting Started With WO site In-Reply-To: References: <29987C06-547D-4088-9B78-EAB14DC633DE@codeferous.com> Message-ID: David, This all sounds great to me. I believe history has shown that open source projects live or die by the efforts of the core contributors. WebObjects is obviously moving to a community based developer environment, which has a great core team that has contributed much to the platform. It's always great when I see posts to this list about some issue with WOLips/WOnder and a day or two later see that the issue has been resolved. That's what open source is all about in my opinion. Keep up the great work guys, I look forward to the future of WebObjects/WOLips/WOnder. You guys have also done much this week to help with my migration to Eclipse/WOLips and I look forward to seeing you later in this morning's WO lab. On Jun 14, 2007, at 8:28 AM, Pascal Robert wrote: > Hi David, > > if you want, you can use the wocommunity.org domain for that. > >> Hey all, >> >> For those of you who are not attending WWDC, there has been a >> lively discussion about many things WO. Motivated by this I >> whipped together a WO Getting Started page > gettingstartedwithwo.codeferous.com/> and I'd like to get your >> feedback. >> >> This is just a baby step, but please let me know if you think I'm >> heading in the right direction. >> >> This the first of what I hope will be a trio of sites: >> >> I would like to create a general WO news blog (with multiple core >> contributers) so there is a central clearing house for news of >> interest to the WO community (new features in Wonder or WOLips, >> announcements from Apple, significant additions to the wikkibook, >> good blog posts, etc). >> >> I would also like to create a tutorial blog where short clear >> graphical task-oriented tutorials could be posted - I have some >> ideas of how I'd want these tutorials to be presented, but I still >> have to work out the style guidelines (I'm thinking: short on >> text, long on screenshots or maybe screencasts). >> >> I approach this with some trepidation - because someone seems to >> try and do something like this once a year - but my goal is to >> present unified (a dare I say) inviting front to new developers to >> the WebObjects platform. We have a ton of outstanding material in >> the various wikis and lists, and I have no interest in replacing >> that, but I'd like to give new users a way to find and make sense >> of what is there. >> >> Again, feedback (and offers of assistance) is welcome and >> appreciated. >> >> -- >> ;david >> >> -- >> David LeBer >> Codeferous Software >> 'co-def-er-ous' adj. Literally 'code-bearing' >> site: http://codeferous.com >> blog: http://davidleber.net >> profile: http://www.linkedin.com/in/davidleber >> -- >> Toronto Area Cocoa / WebObjects developers group: >> http://tacow.org >> >> >> _______________________________________________ >> 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 probert@os.ca > > _______________________________________________ > 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/robertwalker1% > 40mac.com > > This email sent to robertwalker1@mac.com -- Robert Walker robertwalker1@mac.com -------------- next part -------------- An HTML attachment was scrubbed... URL: /mailman/archive/webobjects-dev/attachments/20070614/f4231bba/attachment.html From gavin at umich.edu Thu Jun 14 09:38:34 2007 From: gavin at umich.edu (Gavin Eadie) Date: Thu Jun 14 09:38:54 2007 Subject: Getting Started With WO site In-Reply-To: <08A0BF82-5C90-4B98-8309-5B84842D0C74@os.ca> References: <29987C06-547D-4088-9B78-EAB14DC633DE@codeferous.com> <0918D0C6-278B-4BF6-A40E-537109D602E0@bluecollarsoftware.com> <08A0BF82-5C90-4B98-8309-5B84842D0C74@os.ca> Message-ID: At 8:25 AM -0700 6/14/07, Pascal Robert wrote: >This might actually work against the goal, but what do you think >about having a page where all the people on the lists that use >WebObjects can go and list themselves and their organization as >WebObjects users? ... We did that already! Of course, the problem is that nobody, including me, can remember where it is ... From ab3189 at wayne.edu Thu Jun 14 17:11:22 2007 From: ab3189 at wayne.edu (Charles Plater) Date: Thu Jun 14 17:12:55 2007 Subject: HTML tidy in Eclipse Message-ID: Anyone know if there is some trick to get HTML Tidy to clean up html files generated by XCode? (Or know which list might be appropriate for asking this question)? -- Charles Plater Lead Application Technical Analyst Internet Services +1-313-577-4620 ab3189@wayne.edu -------------- next part -------------- An HTML attachment was scrubbed... URL: /mailman/archive/webobjects-dev/attachments/20070614/d7d2fc6f/attachment.html From mschrag at mdimension.com Thu Jun 14 17:58:14 2007 From: mschrag at mdimension.com (Mike Schrag) Date: Thu Jun 14 17:58:37 2007 Subject: HTML tidy in Eclipse In-Reply-To: References: Message-ID: <909796C4-F2D3-4B20-8672-B08A926F901A@mdimension.com> If you're using a modern (modern = within the last 2-3 weeks), the new component editor has something equivalent to tidy (actually slightly nicer in that it is forgiving). Edit=>Refactor=>Reformat, or cmd-shift-f. ms On Jun 14, 2007, at 5:11 PM, Charles Plater wrote: > Anyone know if there is some trick to get HTML Tidy to clean up > html files generated by XCode? (Or know which list might be > appropriate for asking this question)? > > -- > Charles Plater > Lead Application Technical Analyst > Internet Services > +1-313-577-4620 > ab3189@wayne.edu > > _______________________________________________ > WebObjects-dev mailing list > WebObjects-dev@omnigroup.com > http://www.omnigroup.com/mailman/listinfo/webobjects-dev -------------- next part -------------- An HTML attachment was scrubbed... URL: /mailman/archive/webobjects-dev/attachments/20070614/657d321e/attachment.html From dleber at codeferous.com Sun Jun 17 12:17:12 2007 From: dleber at codeferous.com (David LeBer) Date: Sun Jun 17 12:17:29 2007 Subject: irc channel Message-ID: <11831B18-22A8-4E27-90C8-3F019C971D22@codeferous.com> Hello all, I just registered a WebObjects irc channel: #webo on irc.freenode.net. I figure all the cool kids are doing it... -- ;david -- David LeBer Codeferous Software 'co-def-er-ous' adj. Literally 'code-bearing' site: http://codeferous.com blog: http://davidleber.net profile: http://www.linkedin.com/in/davidleber -- Toronto Area Cocoa / WebObjects developers group: http://tacow.org From th-dev at onlinehome.de Sun Jun 17 13:34:36 2007 From: th-dev at onlinehome.de (Timo Hoepfner) Date: Sun Jun 17 13:45:36 2007 Subject: irc channel In-Reply-To: <11831B18-22A8-4E27-90C8-3F019C971D22@codeferous.com> References: <11831B18-22A8-4E27-90C8-3F019C971D22@codeferous.com> Message-ID: <2061E7C2-487E-4327-8F44-D898AA339F12@onlinehome.de> Hi, just in case someone is looking for a decent IRC client for the Mac, you can find a nice one here: http://colloquy.info Timo PS: We could need a few more people on the channel... :) Am 17.06.2007 um 21:17 schrieb David LeBer: > Hello all, > > I just registered a WebObjects irc channel: #webo on irc.freenode.net. > > I figure all the cool kids are doing it... > > -- > ;david > > -- > David LeBer > Codeferous Software > 'co-def-er-ous' adj. Literally 'code-bearing' > site: http://codeferous.com > blog: http://davidleber.net > profile: http://www.linkedin.com/in/davidleber > -- > Toronto Area Cocoa / WebObjects developers group: > http://tacow.org > > > _______________________________________________ > 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/th-dev% > 40onlinehome.de > > This email sent to th-dev@onlinehome.de From chill at global-village.net Mon Jun 18 14:21:12 2007 From: chill at global-village.net (Chuck Hill) Date: Mon Jun 18 14:47:51 2007 Subject: irc channel In-Reply-To: <11831B18-22A8-4E27-90C8-3F019C971D22@codeferous.com> References: <11831B18-22A8-4E27-90C8-3F019C971D22@codeferous.com> Message-ID: On Jun 17, 2007, at 12:17 PM, David LeBer wrote: > Hello all, > > I just registered a WebObjects irc channel: #webo on irc.freenode.net. > > I figure all the cool kids are doing it... No. No. Nooooooooooooooooooo. :-P Given my nature, I think I ought to stay far away from this. What do you think about scheduling a set hour every week or two when we could all gather and chat. I would be willing to show up for that. Chuck -- Practical WebObjects - for developers who want to increase their overall knowledge of WebObjects or who are trying to solve specific problems. http://www.global-village.net/products/practical_webobjects From programmingosx at mac.com Mon Jun 18 14:49:30 2007 From: programmingosx at mac.com (David Holt) Date: Mon Jun 18 14:51:50 2007 Subject: irc channel In-Reply-To: References: <11831B18-22A8-4E27-90C8-3F019C971D22@codeferous.com> Message-ID: <8311A861-4AD9-49D9-9837-451A11AB6F7A@mac.com> It's unbelievable how much you're missing already :-) heh heh (evil laughter) d -- It's like driving a car at night. You never see further than your headlights, but you can make the whole trip that way. E. L. Doctorow from Sunbeams: http://www.thesunmagazine.org On 18 Jun 2007, at 2:21 PM, Chuck Hill wrote: > > On Jun 17, 2007, at 12:17 PM, David LeBer wrote: > >> Hello all, >> >> I just registered a WebObjects irc channel: #webo on >> irc.freenode.net. >> >> I figure all the cool kids are doing it... > > No. No. Nooooooooooooooooooo. :-P Given my nature, I think I > ought to stay far away from this. > > What do you think about scheduling a set hour every week or two > when we could all gather and chat. I would be willing to show up > for that. > > > Chuck > > > -- > > Practical WebObjects - for developers who want to increase their > overall knowledge of WebObjects or who are trying to solve specific > problems. > http://www.global-village.net/products/practical_webobjects > > > > > > _______________________________________________ > 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 programmingosx@mac.com -------------- next part -------------- An HTML attachment was scrubbed... URL: /mailman/archive/webobjects-dev/attachments/20070618/dbce5924/attachment.html From jalhashal at ubermind.com Mon Jun 18 15:53:42 2007 From: jalhashal at ubermind.com (Jay Al Hashal) Date: Mon Jun 18 16:23:51 2007 Subject: Getting Started With WO site In-Reply-To: <29987C06-547D-4088-9B78-EAB14DC633DE@codeferous.com> References: <29987C06-547D-4088-9B78-EAB14DC633DE@codeferous.com> Message-ID: Hello all, This discussion is really great. It is really getting at some of the core issues we are having with getting together a community portal. The issue that Gavin brings up is a real one. It seems like we are all thinking and leaning towards having documentation and resources managed more like the Eclipse/WOLips projects, that is to say, via a dedicated core team that will provide the main thrust for collecting and classifying documentation and resources, that is both well- managed but is still completely and 100% open to the community to add their contributions, edits and own additions. I think we have some very good ideas formulating here: get an easy to remember url; build an elegant wiki-style resources pages that is managed through a core team made up of a few committed members; have the site open for the community for updates and edits; and link to all the great resources out there that wish to maintain autonomy. The role of the core team would be to get the lates docs out, to edit and publish tutorials, contribute to documenting the open source development arm, and to generally moderate the site and keep things in order. Hopefully, the core team can also negotiate with Apple to provide whatever support they can to the site by perhaps giving us some of the old WO sessions and tutorials, et cetera. The site could have a blog component but will not necessarily take over any of the great independent blogs out there. I think there is room for both. We can link to all the blogs and resources out there that do not wish to become part of the site, and at the same time, have a core team of contributors that will make sure the site is up to snuff and is alive with fresh material. I think we are still waiting on an answer from Apple on how they and if they will support this effort. Nonetheless, David, please count me in. -jay > Hey all, > > For those of you who are not attending WWDC, there has been a > lively discussion about many things WO. Motivated by this I whipped > together a WO Getting Started page gettingstartedwithwo.codeferous.com/> and I'd like to get your > feedback. > > This is just a baby step, but please let me know if you think I'm > heading in the right direction. > > This the first of what I hope will be a trio of sites: > > I would like to create a general WO news blog (with multiple core > contributers) so there is a central clearing house for news of > interest to the WO community (new features in Wonder or WOLips, > announcements from Apple, significant additions to the wikkibook, > good blog posts, etc). > > I would also like to create a tutorial blog where short clear > graphical task-oriented tutorials could be posted - I have some > ideas of how I'd want these tutorials to be presented, but I still > have to work out the style guidelines (I'm thinking: short on text, > long on screenshots or maybe screencasts). > > I approach this with some trepidation - because someone seems to > try and do something like this once a year - but my goal is to > present unified (a dare I say) inviting front to new developers to > the WebObjects platform. We have a ton of outstanding material in > the various wikis and lists, and I have no interest in replacing > that, but I'd like to give new users a way to find and make sense > of what is there. > > Again, feedback (and offers of assistance) is welcome and appreciated. > > -- > ;david > > -- > David LeBer > Codeferous Software > 'co-def-er-ous' adj. Literally 'code-bearing' > site: http://codeferous.com > blog: http://davidleber.net > profile: http://www.linkedin.com/in/davidleber > -- > Toronto Area Cocoa / WebObjects developers group: > http://tacow.org > > > _______________________________________________ > WebObjects-dev mailing list > WebObjects-dev@omnigroup.com > http://www.omnigroup.com/mailman/listinfo/webobjects-dev > Jay Al Hashal Software Engineer ?bermind, Inc. jalhashal@ubermind.com cell: 651-208-0122 skype: jumana.alhashal ichat: special_guest@mac.com -------------- next part -------------- An HTML attachment was scrubbed... URL: /mailman/archive/webobjects-dev/attachments/20070618/5f5887a3/attachment.html From lachlan.deck at gmail.com Tue Jun 19 11:22:49 2007 From: lachlan.deck at gmail.com (Lachlan Deck) Date: Tue Jun 19 11:23:09 2007 Subject: Trouble with WOWebServiceClient invoke In-Reply-To: <466806CD.7030001@ipv.com> References: <466806CD.7030001@ipv.com> Message-ID: <7863A1AA-4D68-4BD0-A2A2-2AC981BEBBE6@gmail.com> A bit late but... On 07/06/2007, at 11:23 PM, Robert Miners wrote: > I'm consuming a WebService written with ASP.net that has a method > that uses an 'out' parameter, i.e. of this form. > > [WebMethod] > int GetResultViaOutParam(out int out_param) > > I have no problems if the method has no 'out' parameters, i.e. of > the form. > > [WebMethod] > int GetResultWith2InParams(int param1, int param2) > > The WebObject code for the 'no out params' method is > > int arg1 = 3; > int arg2 = 4; > Object[] arguments = { new Integer(arg1), new Integer(arg2) }; > String operation = new String("GetResultWith2InParams"); > Object res = serviceClient().invoke(serviceName(), operation, > arguments); > > The WebObject code for the 'out param' method is > > int arg1 = 0; > Object[] arguments = { new Integer(arg1) }; > String operation = new String("GetResultViaOutParam"); > Object res = serviceClient().invoke(serviceName(), operation, > arguments); > > The exception that is raised by the attempt to invoke > 'WebMethodWithOutParam' is > > Error: Error invoking operation: javax.xml.rpc.JAXRPCException: > Number of parameters passed in (1) does not match the > number of IN/OUT parameters (0) from the addParameter() > calls. Did you get this working? Consider an 'out' parameter like an &arg in C. It returns a value rather than receives one. As Java has no such concept, it seems you need to use a holder like this: javax.xml.rpc.holders.IntHolder outVal = new javax.xml.rpc.holders.IntHolder(); Object[] arguments = { outVal }; <...> int receivedOutValue = outVal.value; See 'holders' http://ws.apache.org/axis/java/user-guide.html http://ws.apache.org/axis/java/apiDocs/index.html with regards, -- Lachlan Deck From rmendis at mac.com Sun Jun 24 01:51:28 2007 From: rmendis at mac.com (Ravi Mendis) Date: Sun Jun 24 01:51:38 2007 Subject: svgobjects 2.0: First Beta Message-ID: <68212D3A-045A-4DE0-BC17-5D6F37131CC7@mac.com> Now that many of you are back from WWDC and have had time to play around with Leopard beta, you might be ready to check out Safari?s excellent native SVG support. I?m pleased to release the first beta of svgobjects 2.0. It?s just in time for the release of the iPhone next week. Take a look at the DirectToiPhone example. It?s a 100% D2W application for generating SVG applications for SVG enabled mobile devices. (FYI: I am currently reviewing the SVGObjects 1.0 examples to see if they maybe updated to be compatible with Safari before re-including them in the svgobjects distribution). I hope to release the final svgobjects 2.0 to coincide with the release of WebObjects 5.4. Thanks, Ravi --- http://www.svgobjects2.com From cjaeger at visualfood.ch Fri Jun 29 00:00:47 2007 From: cjaeger at visualfood.ch (Cornelius Jaeger) Date: Fri Jun 29 00:07:30 2007 Subject: Raw Rows and Locking Message-ID: Hi All I have a raw row fetch which fetches about 100000 records in a separate ec. some of these i pass on to another process which has it's own ec (ec2) in which i instantiate an eo from the raw row in the ec2. since these are dicts do i need to pass them to the ec2 first? regards cornelius From mark.ritchie at mac.com Fri Jun 29 04:27:37 2007 From: mark.ritchie at mac.com (Mark Ritchie) Date: Fri Jun 29 04:27:44 2007 Subject: Raw Rows and Locking In-Reply-To: References: Message-ID: <68F84755-C021-4181-863E-EA898C49BDB0@mac.com> On 29-Jun-07, at 3:00 AM, Cornelius Jaeger wrote: > I have a raw row fetch which fetches about 100000 records in a > separate ec. > some of these i pass on to another process which has it's own ec > (ec2) in which i instantiate an eo from the raw row in the ec2. > since these are dicts do i need to pass them to the ec2 first? It's been a while since I've done this but if I remember correctly, the correct procedure is to register the dictionary as a snapshot at the EOAdaptor level and then fault the EO into the second EditingContext. That will ensure that it's registered and that locking will work properly if/when you update the EO. Good luck! Mark __ Mark Ritchie Cocoa and WebObjects Developer Diamond Lake Consulting Inc. Toronto, Ontario, Canada -------------- next part -------------- An HTML attachment was scrubbed... URL: /mailman/archive/webobjects-dev/attachments/20070629/65122d4e/attachment.html From corey.ehmke at marketforward.com Fri Jun 29 08:01:32 2007 From: corey.ehmke at marketforward.com (corey.ehmke@marketforward.com) Date: Fri Jun 29 08:01:43 2007 Subject: Deploying Servlets To a WebO Container? Message-ID: This is going to sound odd, but... Has anyone taken an existing (open source) Java web application, and deployed it within a WebO environment? We're developing an enterprise app in WebO, and we want to have its help system provided via a Wiki. I really don't want to have to run a separate J2EE application server, and I haven't seen any good native WebO wiki applications. Thoughts? Thanks, Corey ---- Corey Ehmke Director, Product Development MarketForward, a Publicis Groupe Company 427 South LaSalle Street Chicago, IL 60605 312.220.3096 (office) 708.557.7287 (cell) 20 rue Bouvier 75 011, Paris www.marketforward.com www.publicis.com From lachlan.deck at gmail.com Sat Jun 30 04:10:54 2007 From: lachlan.deck at gmail.com (Lachlan Deck) Date: Sat Jun 30 04:11:04 2007 Subject: Deploying Servlets To a WebO Container? In-Reply-To: References: Message-ID: <6A7C1783-708D-4CEF-B9B7-64F3A2C9FE8D@gmail.com> On 30/06/2007, at 1:01 AM, corey.ehmke@marketforward.com wrote: > This is going to sound odd, but... > > Has anyone taken an existing (open source) Java web application, and > deployed it within a WebO environment? Interesting idea... > We're developing an enterprise app in WebO, and we want to have its > help > system provided via a Wiki. I really don't want to have to run a > separate > J2EE application server, and I haven't seen any good native WebO wiki > applications. Maybe just create a custom wiki request handler in your wo app to interface with the existing app. with regards, -- Lachlan Deck