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 491 - 520 of 741   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
491
Greetings, I've tried a few of the examples from the Water web site, and I have an idea of how these work, but would like to know if it's possible to host...
bobr04
Offline Send Email
Jan 2, 2004
5:44 am
492
Hello All, Has anyone ever tried writting a HTML file to a .txt file using Water? Attached is a piece of code I am trying with.For the sample table ... Apples...
Vijaya Jonnalagadda
vijayasreej
Offline Send Email
Jan 2, 2004
5:44 am
493
Any Water "programs" you write can be turned into a server application with just a few added lines of code in the Steam IDE. This is one of the great things...
merrick_stemen
Offline Send Email
Jan 5, 2004
3:23 am
494
I have a similar problem converting a table to text. I get an error when I apply the <to_objects/> proprty in this line <set strTable = a_table.<get_with_value...
bill_jamison2000
bill_jamison...
Offline
Jan 7, 2004
1:15 am
495
Hello! I am trying to pull the text out of all the nodes that come under the body tag..In doing this as follows, <set a_Table= <file "C:/a_table.htm"...
bill_jamison2000
bill_jamison...
Offline
Jan 7, 2004
1:15 am
496
Hello! Here is some code that walks through some HTML and pulls out just the text in each element. I'm using <execute /> instead of <to_objects />. _Merrick ...
merrick_stemen
Offline Send Email
Jan 8, 2004
3:24 am
497
... When you use <... returns='all' /> the return type is a vector of <body /> elements; a vector does not have a <to_objects /> method. It looks like you...
merrick_stemen
Offline Send Email
Jan 8, 2004
3:25 am
498
Hello! Below is some code that wraps text within a specified text width. This code would be good to make the text portions of an HTML file wrap within...
merrick_stemen
Offline Send Email
Jan 13, 2004
4:13 am
499
I noticed the spec. for conciseURI on the www.conciseXML.org website and I wonder will ConciseURI will be supported in Water/Steam 4.0? Does anyone know? ...
merrick_stemen
Offline Send Email
Jan 20, 2004
12:07 am
500
Thanks Merrick, I tried your program, executed it within the Steam IDE, and then accessed it locally from the same machine by using 'http://localhost:8181/'. ...
bobr04
Offline Send Email
Jan 20, 2004
12:17 am
501
ConciseURI won't be in 4.0, but could be in 4.1 if there is demand. By the way, ConciseURI is described here: http://www.concisexml.org/ConciseURI.html ...
pluschli
Offline Send Email
Jan 20, 2004
12:39 am
502
... Ooo. Right. This took me a while to get a handle on when I first started to do web programming. For me it was CGI scripts in Perl. To do this, you have to...
merrick_stemen
Offline Send Email
Jan 20, 2004
4:34 am
503
So I want to call a SOAP method. As best I can figure I need to create a uri as such: <uri method="post" Accept="*/*" content_type="application/soap+xml" ...
jan_miller
Offline Send Email
Jan 21, 2004
1:00 am
504
BostonWater User Group: Tue, Jan 27, 2004 7:00pm Cambridge, Massachusetts near MIT Directions and details at: http://www.bostonwater.org/ Modeling and...
pluschli
Offline Send Email
Jan 24, 2004
1:50 am
505
Greetings, I just read through Jan Miller's note about SOAP, shortly after reading Chapter 13 in the Water book about Water Protocol and SOAP. From Jan's note,...
bobr04
Offline Send Email
Jan 26, 2004
4:46 am
506
I have problems setting up a connection to an Oracle database on a remote server. Is there an example somewhere? Regards, Chr....
chrd04
Offline Send Email
Jan 27, 2004
1:04 pm
507
... In a message from last March, I showed how to connect through an ODBC connection. (http://groups.yahoo.com/group/waterlanguage/message/270). To do this,...
merrick_stemen
Offline Send Email
Jan 28, 2004
3:03 pm
508
Hello Merrick! I made use of the function you sent to the board earlier , shuck_the_object. Yet, I need to process various parts of the document and so I would...
bill_jamison2000
bill_jamison...
Offline
Jan 28, 2004
3:03 pm
509
... a ... Thank's. I think JDBC should to be "water-way" to do it - and that is what I have tried (without success). Regards, Chr....
chrd04
Offline Send Email
Jan 28, 2004
10:09 pm
510
... is ... That's what we are talking about in the first link in my previous message. Here's the chunk of code that uses the Sun JdbcOdbc driver: <set...
merrick_stemen
Offline Send Email
Jan 29, 2004
7:44 pm
511
In Oracle I would expect something like: <repository a_uri="jdbc:oracle:thin:@oracle_server:1521:ora92" protocol="oracle.jdbc.driver.OracleDriver" ...
chrd04
Offline Send Email
Feb 3, 2004
8:06 pm
512
... my_db=repository.of."jdbc:oracle:thin:@oracle_server:1521:ora92" ... That code looks logical. I don't have an example at hand. Have you tried variations on...
merrick_stemen
Offline Send Email
Feb 4, 2004
12:28 am
513
... number ... it ... The JDBC connection has been successfully testet with JDeveloper. What I get back from Water is: Runtime error: Database connection...
chrd04
Offline Send Email
Feb 4, 2004
1:24 pm
514
I was playing around on Yahoo! Fincance today and noticed it had a link that would deliver .csv data for stock quotes. I figured that would be pretty easy to...
merrick_stemen
Offline Send Email
Feb 8, 2004
2:04 pm
515
The following generates an error: <defmethod Func param1 param2 param3/> <set function=<web "http://localhost:8081/Func" contract=Func/> /> <set x=<function 1...
jan_miller
Offline Send Email
Feb 11, 2004
7:57 pm
516
I would expect the Example 1 code to produce <vector 9 11 13/>. Instead I get <vector 9 9 9/>. I monitored the HTTP traffic and I do see 9 11 and 13 being...
jan_miller
Offline Send Email
Feb 11, 2004
10:12 pm
517
Here is a work around: <defmethod add_two x> x.<plus 2/> </> <server add_two/> <defmethod call_web_method method_url query> <web <concat method_url "?" ...
jan_miller
Offline Send Email
Feb 12, 2004
12:38 am
518
hello! I am an Mtech student and am new to water language. I would like to study it in detail. I have decided to make this my area of study to do my term paper...
notes4elsa
Offline Send Email
Feb 15, 2004
9:56 pm
519
... to ... to ... suitable ... in ... I'd be glad to help. Others are using Water in various university and college programs, but as far as I know, the Water...
pluschli
Offline Send Email
Feb 16, 2004
2:56 am
520
Hello, I'm fairly new to Water and am working on a project that would include some simple scripting, and I'm trying to implement this scripting with water and...
akrueger9
Offline
Feb 17, 2004
1:02 am
Messages 491 - 520 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