Search the web
Sign In
New User? Sign Up
waterlanguage · Water Language
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 332 - 361 of 741   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
332
Water Graphics: SVG, Drag-n-drop, 3-D Inspector Tues, Apr 29, 2003 7:00pm Fry and Plusch will show some techniques for working with graphics from Water. SVG is...
pluschli
Offline Send Email
Apr 15, 2003
3:10 pm
333
I was playing around with strings and was puzzled by this: <string>123%hello%7890</string>.<replace "%hello%" "456" /> <string>123%hello%7890</string>. ...
Peter Carmichael
PeterPSC
Offline Send Email
Apr 24, 2003
2:13 am
334
Yep, that's the way the syntax is designed. If you have a path and you want to stick whitespace between the parts, you must stick the whitespace beteen a dot...
cfry0
Offline Send Email
Apr 24, 2003
9:15 pm
335
According to page 51 of the Wiley Water book, "Long paths may be split over multiple lines. No special characters are required to continue the line, but the...
Bob Nilsson
rnilsson1
Offline Send Email
Apr 25, 2003
1:42 pm
336
I just started messing with Water today. I was wondering if their are any tutorials out there so that I can familiarize myself with the language? Thanks in...
kittie_rawks
Offline Send Email
May 7, 2003
4:52 am
337
Hello, The moderator of the waterlang group has changed the group's name. This means that both the group's email address and the group home page location have...
notify@yahoogroups.com
Send Email
May 7, 2003
8:16 am
338
I am just trying to play around and figure out some stuff. I have an input field with the name of "a_var" I am trying to get it to go through an IF statement...
kittie_rawks
Offline Send Email
May 7, 2003
7:33 pm
339
The following shows a method named "choice" that will call different methods depending upon whether the input value was "yes" <defclass my_first_app> ...
pluschli
Offline Send Email
May 7, 2003
7:45 pm
340
During April's Boston User Group you showed a server for a method. I haven't been able to reproduce that. The book (page 121) implies it is only serving...
Peter Carmichael
PeterPSC
Offline Send Email
May 7, 2003
8:59 pm
341
Serving a method works just fine. Here's the code below and the URI to call the method. The error message indicated that it couldn't format the object in...
pluschli
Offline Send Email
May 7, 2003
9:12 pm
342
<defmethod image> <IMG src="image.gif" alt="image.gif not found"/> </> <server image /> <open_browser_window "http://localhost/?"/> Where do I put image.gif to...
Peter Carmichael
PeterPSC
Offline Send Email
May 8, 2003
2:19 am
343
You can put the images in a local folder or remote URI. Making the browser see the images could be accomplished in a number of ways: Option 1: Create an image...
pluschli
Offline Send Email
May 8, 2003
3:12 am
344
With HTML you can use relative addressing for images, and they will be relative to where the HTML file was located. Is there an equivalent in Water ?...
Peter Carmichael
PeterPSC
Offline Send Email
May 8, 2003
2:38 pm
345
Typical Web servers serve out static HTML pages from a folder, and therefore can serve out image files. The Water server has a root_object that is usually not...
pluschli
Offline Send Email
May 8, 2003
3:42 pm
346
I have a project that I am working on. Trying to automate a website. Basically use water to code this, have the information that gets submitted using forms...
kittie_rawks
Offline Send Email
May 12, 2003
3:54 pm
347
Hello all- I am a student at Portland Heald College who is currently making use of XML while patiently waiting for the Cisco Networking Course to come around....
kimagureor2002
Offline Send Email
May 12, 2003
3:54 pm
348
Here is an example that shows: 1. creating a new Water method 2. calling the method locally 3. creating a new server for the Web Service 4. accessing the...
pluschli
Offline Send Email
May 17, 2003
12:21 pm
349
Clear Methods is looking for a VB user who would be willing to help us compare Water and VB. We would like your help in developing a white paper along the...
rnilsson1
Offline Send Email
May 18, 2003
10:53 pm
350
How can I configure Water to send SOAP requests through a proxy server? In Java I do this with System.setProperty("http.proxyHost", "the-host-name"); ...
Volkmann, Mark
mark.volkmann@...
Send Email
May 19, 2003
11:55 pm
351
Water Sketch, described in chapter 42 of the book looks pretty cool, but I don't see anything in the book that explains how to generate the diagrams. Is there...
mvolkmann19
Offline Send Email
May 20, 2003
3:42 am
352
Can Water invoke web services given the URL of a WSDL description? I don't see an example of doing that in the book....
mvolkmann19
Offline Send Email
May 20, 2003
3:42 am
353
Where can I find examples of Water code on the web?...
mvolkmann19
Offline Send Email
May 20, 2003
3:42 am
354
Here are some Water examples that are available on the Web. * Prime numbers sieve demonstration <http://groups.yahoo.com/group/waterlanguage/message/271> ...
Bob Nilsson
rnilsson1
Offline Send Email
May 21, 2003
1:33 pm
355
Some of those examples work with the older version of Water, but are now broken because the language changed. -- Peter...
Peter Carmichael
PeterPSC
Offline Send Email
May 21, 2003
2:09 pm
356
WSDL as input is not yet supported, but is near the top of the new features list. For now, Water Web is the supported description for remote Web resources and...
pluschli
Offline Send Email
May 21, 2003
2:12 pm
357
Water Pics and Water Sketch are currently just specifications, and do not yet have supporting programs. Note: Water Pics and Water Sketch are designed to be a...
pluschli
Offline Send Email
May 21, 2003
2:21 pm
358
[NOTE: If the number of emails you get from the Water community is too high, Yahoo Groups has an option you can set to receive a single daily digest of the...
pluschli
Offline Send Email
May 21, 2003
2:40 pm
359
Does Water support reflection on an object or class to get a list of the fields and methods it supports? If so, how do you use it? I couldn't find any...
mvolkmann19
Offline Send Email
May 21, 2003
3:23 pm
360
There is no special 'reflection' API in Water -- you use just the normal methods on classes and methods. For examples, to get the field keys on a class, use...
pluschli
Offline Send Email
May 21, 2003
7:09 pm
361
What does it mean when it is said that Water is written in XML syntax? Is Water source code itself able to be parsed by standard XML parsing tools? Is there...
Joe Bosworth
smartrobots1
Offline Send Email
May 21, 2003
8:40 pm
Messages 332 - 361 of 741   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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