Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

waterlanguage · Water Language

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 656 - 688 of 756   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
656 rnilsson1 Send Email Feb 18, 2005
7:09 pm
Here is information about the upcoming Boston Water Users Meeting, to be held at 7:00 PM in Cambridge, MA on Tuesday, February 22. This month we will be taking...
657 merrick_stemen Send Email Feb 24, 2005
4:33 am
Hello! Can anyone tell us what cool new things are being done, and when the next release of Steam XML is expected to be available? _Merrick...
658 caralee859l Send Email Feb 25, 2005
1:56 pm
http://www.ardice.com/Computers/Programming/Languages/Water/ Hello, I found this group at this website....
659 rnilsson1 Send Email Feb 25, 2005
7:54 pm
Here is a quick update on the forthcoming release of Steam XML. It has become a rather major release with lots of new stuff. The new version is enhanced to...
660 zeal_ansari Send Email Mar 1, 2005
11:17 am
Dear All, I am research student and currently i am doing research on some thing which is related to the uses of XML in the source code. I have done extensive...
661 Bob Nilsson
rnilsson1 Send Email
Mar 1, 2005
10:46 pm
Two quick benefits of a language based on XML: (1) there are already millions of programmers who understand HTML/XML and (2) it enables one environment to...
662 Matt Kendall
ncsucodemonkey Send Email
Mar 9, 2005
1:44 am
Does Water simplify the process of making a SOAP request? I can't seem to find any examples (or documentation) on any of the various Water sites or the...
663 merrick_stemen Send Email Apr 4, 2005
11:18 pm
This past week, I got around to using a program I wrote and used last year for my Networks II course. Last year I reported on this here: ...
664 Merrick Stemen
merrick_stemen Send Email
May 3, 2005
1:19 am
Summer is just around the corner, and that seems to be my best time to do some Water language development. I am wondering when the much- awaited SteamXML 4.0...
665 apinker1 May 11, 2005
5:20 pm
Haven't done much down here. Wish I had more time....
666 rnilsson1 Send Email Jun 23, 2005
4:08 am
The next Boston Water Users Meeting will be at 7:00 PM in Cambridge, MA on Tuesday, June 28. Here are some of the topics to be discussed this month. o Using...
667 rnilsson1 Send Email Jul 22, 2005
5:09 am
The next Boston Water Users Meeting will be at 7:00 PM in Cambridge, MA on Tuesday, July 26. The topic this month is SOAP and Water. We will take an inside...
668 rnilsson1 Send Email Aug 9, 2005
8:17 pm
For those of you who missed the recent Tri-XML Conference, we have posted the presentation, "Teaching Web Services and XML with the Water Language" at...
669 willschorn Send Email Sep 5, 2005
12:59 am
Why doesn't the following statement produce an error? <set some_thing=<thing x="5"=integer/> /> Bill Schorn...
670 willschorn Send Email Sep 7, 2005
12:23 am
from p. 73-74 in the book "Water" <set data_string= <string> Mike,Plusch,Wellesley,MA Christopher,Fry,Lexington,MA </string> /> data_string.<to_objects/> ...
671 Merrick Stemen
merrick_stemen Send Email
Sep 8, 2005
2:51 am
Bill, What version of Water/SteamXML are you running? From your code, it looks like it should give you the output you expect. A second thing to watch for is...
672 William N. Schorn
willschorn Send Email
Sep 8, 2005
3:58 am
... Merrick Thanks for your reply. I'm using a trial version that I downloaded on Aug 29 2005. Product name: Steam XML IDE Water version: 4.0 beta-10...
673 Merrick Stemen
merrick_stemen Send Email
Sep 8, 2005
12:09 pm
Bill, I went back and dug up my version 4.0-beta 10 trial--the IDE it was linked to on my machine was 354 days past its trial period! So, after waiting for 5...
674 William N. Schorn
willschorn Send Email
Sep 8, 2005
5:22 pm
... Merrick Pertaining to the "MC" problem. Your 'Hmmm' response was well placed. I rekeyed the entry and it too correctly produced "MC". I went back to my...
675 Merrick Stemen
merrick_stemen Send Email
Sep 9, 2005
2:07 am
Bill, I am glad you tracked down the problem so quickly. I can't count the number of hours I've spent trying to debug code that had no problems but bad data. ...
676 Susan G. Conger
s1g2conger Send Email
Nov 7, 2005
5:34 pm
Why does this give a run time error? [Runtime Error A call to grocery_list received illegal unnamed arg with source: >] <defclass grocery_list...
677 Merrick Stemen
merrick_stemen Send Email
Nov 8, 2005
6:39 am
Susan, Try this (note the keyword 'rest'): <defclass grocery_list store_name=required rest /> <defclass grocery_item name=required quantity=1/> <grocery_list ...
679 Susan G. Conger
s1g2conger Send Email
Nov 8, 2005
5:06 pm
That did it. Are there any other on-line resources for learning the language. It is kind of frustrating to try examples in the book and have them not work....
680 Merrick Stemen
merrick_stemen Send Email
Nov 9, 2005
12:34 am
Susan, There are a few places to check sample code. One place is at http://www.watercode.org/ also http://www.watercode.com/ You could also look over the Quick...
681 skramer072 Send Email Nov 10, 2005
1:07 pm
I see a lot of examples of how to convert Water's HTML objects into strings, but I can't find any examples of how to convert a string of HTML into hypertext...
682 Mike Plusch
pluschli Send Email
Nov 10, 2005
1:39 pm
Yes, it is natural in Water to convert HTML into Water objects. In fact, you just execute the string because the HTML tags are defined already. "<b> hi...
683 Merrick Stemen
merrick_stemen Send Email
Nov 11, 2005
6:14 am
Here's some code using the example you gave: <!-- Set up web resource --> <set x=<web "http://citeseer.ist.psu.edu/Kobayashi00information.html";/> /> <!--...
685 skramer072 Send Email Nov 15, 2005
1:40 am
I'm trying to find something analogous to a sleep() function in Water. I would like to be able to stop processing for a given number of seconds. Is there...
686 Mike Plusch
pluschli Send Email
Nov 15, 2005
1:42 am
This will wait for 1 second: thread.<wait_until_time 1000/> Here's the doc on Water's threading model: ...
688 wesisa Send Email Nov 21, 2005
1:24 am
how do i find the position of a double quote ' " ' using key_of...
Messages 656 - 688 of 756   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help