DJUG, Chicago, I wanted to thank all of you who joined the Java Information Group. Also thank you to the moderators for letting me post about our group on this...
University of Colorado at Denver and Health Sciences Center Downtown Denver Continuing Engineering Education Program New Certificate in Systems Engineering ...
Does anyone know how to access an OLAP database from a Java application? Has anyone heard of a JOLAP implementation? I'm trying to access MS Analysis Services...
I'm assuming I'm not the only one without a clue about this - what's an OLAP database? FYI: I needed to access MS Project data for a project I'm working on and...
Thanks for asking! OLAP (OnLine Analysis Processing) refers to multidimensional database technology. I'm pretty new to it, too, so I'm not qualified to...
Hi folks, Just wanted to issue a reminder that this coming Tuesday is the January meeting of Colorado Mobile Developers. Location: Microsoft offices in Denver...
I am trying to tokenize records from a file using "|" as the delimiter. The records may have empty data in one of the columns. Something like "A|B|C" or it...
The exception is being thrown not because the two "|" are together, but because you are trying to grab a token that doesn't exist. In the second case you only...
Use String.split() method. http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html#split(java.lang.String) James spenex <spenex@...> wrote: I am...
University of Colorado at Denver and Health Sciences Center Downtown Denver Continuing Engineering Education Program Bullet Proof Project Management - A...
Who knows about SOAP? Just getting started, I thought all that is needed to be a SOAP client is to open a URLConnection and send a SOAP message (envelope)...
... If you're using 1.4+, use String.split("\\|", -1) to achieve your desired effect. If you are using Java 1.3 or lower, use the "true" return tokens ...
George, Check out the Apache Axis project at ws.apache.org. To write a client, teh easiest way it so start with the web service's WSDL document. Run the Axis...
George, I hand-coded a super-light SOAP client in my Oct'03 BC presentation. That might get you started before you go down the path of autogenerating client...
Wah. Your presentation isn't there. Worse, I think I slept through that one, or more probably glazed over like I usually do when confronted with anything more...
George, Here's a direct link to the file. People had reported that the original tar.gz file in caps (AXIS) was corrupted. I put an alternative .zip file out...
UNIVERSITY OF COLORADO AT DENVER AND HEALTH SCIENCES CENTER College of Engineering and Applied Science and Health Sciences Center Continuing Engineering...
I had the same issue but didn't want to write a load of exception code - my input strings could have varying numbers of tokens (actually, lines in a .csv file...
Gordon, Simon
Simon.Gordon@...
Feb 3, 2005 8:57 pm
247
Is there going to be a Feb meeting? -- Sean LeBlanc:seanleblanc@......
Maybe I'm tired or something, but I am unable to figure out how to get an enum from a value. Let's say I have an enum defined like so: enum Foo { VAL1(1),...
... Could you tell me which part shows what you are talking about? I don't see it. From what I gather from the other response is that I have to create my own...
... Thanks for the response. If you are referring to my email having HTML, it must be your settings in yahoogroups. AFAICT, I'm not sending HTML, as I use mutt...
I am running a report every day during a two week time period. Every report is an accumulation of each days data back to the previous period. So if the...
... I'm not quite sure I understand the problem. Are you just trying to find the 2 week period that the current date resides within (to get start and end...
... Hash: SHA1 You can get the week of the year with calendar.get(Calendar.WEEK_OF_YEAR). If the two-week periods always run consecutively and don't overlap,...