473,395 Members | 1,488 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

My Day Today


Today I wrote a c# service that read and parsed and XML file and manipulated
other services based on using the values in the XML to evaluate http calls.

The application uses the ThreadPool to make simultaneous http calls.

What did you do today?
--
ja*****@earthlink.net

Jul 21 '05 #1
7 1461

"A Leaf Blower and A Geode Discussing Politics" <ja*****@earthlink.net>
wrote in message
news:aq******************@newsread2.news.pas.earth link.net...

Today I wrote a c# service that read and parsed and XML file and
manipulated
other services based on using the values in the XML to evaluate http
calls.

The application uses the ThreadPool to make simultaneous http calls.

What did you do today?


Although I can't fathom why you'd care, I wrote a little bit of a compiler
and watched a cubs game.
--
ja*****@earthlink.net

Jul 21 '05 #2
And I wrote a webservice for friends to list, sort and play my mp3s on my
server. They can also edit the mp3 id tags. :P

(hmmm, I wonder who the original poster is ??? (bailo?))
--
===============================
try
{
Linux (any version)
}
catch
{
Format (mainHardDisk)
Install (Windows2000/XP/2003)
}
// You know you want to !!!

John Young
"A Leaf Blower and A Geode Discussing Politics" <ja*****@earthlink.net>
wrote in message
news:aq******************@newsread2.news.pas.earth link.net...

Today I wrote a c# service that read and parsed and XML file and
manipulated
other services based on using the values in the XML to evaluate http
calls.

The application uses the ThreadPool to make simultaneous http calls.

What did you do today?
--
ja*****@earthlink.net

Jul 21 '05 #3

"John Young" <polomint77@askhdg_hotmail.com> wrote in message
news:OA**************@TK2MSFTNGP10.phx.gbl...
And I wrote a webservice for friends to list, sort and play my mp3s on my
server. They can also edit the mp3 id tags. :P

(hmmm, I wonder who the original poster is ??? (bailo?))

Yeah, its bailo. Just one of his more creative psuedonyms.
Jul 21 '05 #4
asj
A Leaf Blower and A Geode Discussing Politics <ja*****@earthlink.net> wrote in message news:<aq******************@newsread2.news.pas.eart hlink.net>...
What did you do today?


today i pleaded with god to give people like you a reason to live
besides cross-posting to a hundred newsgroups almost every freakin'
day.
Jul 21 '05 #5
ASJ and Bailo on the same message thread.. This brings back memories.. :

Today, well, I spenit it fixing up our build...
It turns out that using tlbImp to create COM callable wrappers is dangerous in the hands of some people.

That's my little bitch for the day.

Cheers
Jul 21 '05 #6
A Leaf Blower and A Geode Discussing Politics <ja*****@earthlink.net> wrote in message news:<aq******************@newsread2.news.pas.eart hlink.net>...
Today I wrote a c# service that read and parsed and XML file and manipulated
other services based on using the values in the XML to evaluate http calls.

The application uses the ThreadPool to make simultaneous http calls.

What did you do today?


0430: Woke up. Shit showered shaved. Prepared breakfast for daughter.
Secured and fed pets. Transported daughter to sitter's location (1.25
hour drive).

0700: First site visit. Customer's NetVista is down. Discovered HDD
has bad sectors. Scheduled image recovery and HDD replacement.
Transported workstation to shop so alternate engineer can complete
work order if necessary.

0730: Contaced a customer's ISP - requested an A record to point to
webserver and website I built and deployed yesterday (LAMP).

0800: At shop. Configured three Watchguard MUVPN clients (SHA/DES) for
customer's users in three different countries. NetScreen anyone?

0900: Second site visit. Troubleshot Citrix MetaFrame Presentation
Server - required tweaking ODBC drivers for SQL/SharePoint Portal
Server backend. Recommended raising bandwidth - client latency is
"icky" to say the least.

1145: Third site visit. Migrated customer's network to new T1 circuit.
Built config and flashed Cisco router. Done!

1230: Liquid lunch (I wish).

1300: Called wife at hospital. Checked on 2-day old son. Delivery
complications may keep her in the hospital until Saturday. Adjusted
schedule. Prayed.

1315: Fourth site visit. Customer (MS Exchange) email server down. DBs
corrupt. Restored priv.edb, pub.edb, and necessary logs, .stms, etc.
from tape. Ran utils. Remounted. Successful.

1445: Went for a two mile run.

1530: Muffler broken - hanging 1/2" off the ground. Improvised fix
with clothes hanger. MacGyver? No. MacBrokeAss? Yes.

1550: Fifth site visit. Customer's Novell Groupwise 5.1 server failing
Domain login/network connectivity. Checked logs. Checked
NIC/cable/switch. PINGed servers and workstations - successful. Login
continues to fail. Checked for backup. Ran DSREPAIR.nlm. Rebooted.
Login successful.

1645: Sixth site visit. Customer's WLAN down. SpeedStream 2623 router
to cable modem. Updated firmware. Reset encryption values and Shared
Key. WLAN up.

1730: Recovered daughter. Rough day - batteries on her singing truck
toy died. Stopped to purchase batteries.

1900: Prepared and shared dinner with daughter. Called wife. Fed pets.
Bathed daughter and put her to bed. Began working on eight-page report
due next Monday (I'm earning my MBA).

2200: Took a break. Scanned Google Groups - seattle.general. Responded
to your question.
Jul 21 '05 #7
In comp.lang.java.advocacy, A Leaf Blower and A Geode Discussing Politics
<ja*****@earthlink.net>
wrote
on Thu, 13 May 2004 05:09:26 GMT
<aq******************@newsread2.news.pas.earthlink .net>:

Today I wrote a c# service that read and parsed and XML file and manipulated
other services based on using the values in the XML to evaluate http calls.

The application uses the ThreadPool to make simultaneous http calls.

What did you do today?


Feh. JBoss does most of the parsing and threadpooling. Dunno regarding
the details of the Enterprise Service Bus, as one of the requirements
thereof is *partial parsing of an XML file*. However, using SAX to
clip out part of the file might be easy enough, or one can just write
XSL to find the tag of interest and copy the subtree thereof to
the output, using XSLT (Xalan, perhaps). DOM nowadays is a bit heavy.

I can't say I've played with custom tags but presumably JSP + custom tags
is a now outdated but still effective solution for various problems.
JSP makes hooking up forms to beans simple, although it doesn't
help with the Javascript. (There are times I think Javascript
is beyond help, though. Yuck.)

Or one can go through a SOAP service. I have a very small prototype,
for example, that is basically a "cookbook" therefor -- it's a little
complicated for my liking but it works and answers the question
"What time is it". I'll have to work on integrating it with JNDI,
admittedly -- or just go full EJB with the silly thing hooking SOAP
in as a vector to a stateless or stateful session bean. Presumably
that sort of stuff should be simple, although EJB tends to specify
everything more than once, mostly because the initial setup of EJB
assumed that developer-run tools would do most of the XML generation;
I would highly prefer a more Smalltalk-like system where one can
simply make a call and it either works or it doesn't, coupled with
the ability to inquire as to what calls are available, with
parameters, documentation, and other requirements.

Another issue with EJB is that it uses binary RMI; I'd prefer JAXRPC.
But that's a minor complaint at this point, because EJB is an
established service.

I should mention JMX -- it's nice but incomplete; it needs to be
remotable. (Maybe 1.1 has that capability now?) I've not played
with JMS or JCA but know they exist.

But do feel free to try again to impress us.

As for "HTTP calls" -- no such thing. Http requests, maybe.
SOAP calls, maybe.

--
#191, ew****@earthlink.net
It's still legal to go .sigless.
Jul 21 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Phil Powell | last post by:
The date field I believe is of type datetime, but I'm sorry I have absolutely no idea how to put today's date into a datetime column using ASP and SQL Server. Folks, I'm a LINUX guy!!! This is a...
7
by: Vinnie Davidson | last post by:
Hello! I'm trying to get all records from my SQL Server Database with "DeadlineDate" = today (not today - 24 hours). All records has a field called "DeadlineDate", and the date is stored in...
0
by: Marcel - IDUG Europe 2005 | last post by:
Last Chance to Register Online for IDUG 2005 - Europe - Register Today Online registration closes this Friday, 14 October. https://conferences.idug.org/secure/europe/2005/regform.cfm ...
2
by: tshad | last post by:
I am trying to check the date of my field to check if it is greater that today, but I am getting an error. I am using : <asp:CompareValidator runat="server"...
4
by: Chris | last post by:
Hello, I am attempting to build a MS SQL query that will return data from "today"; today being current day 8:00AM-10:00PM today. My goal is to return the data from a table that is written to...
1
by: dmbkiwi | last post by:
I'm using the dateutil module from http://labix.org/python-dateutil. Am I right in thinking that the rrules module doesn't acknowledge days before today? An example of the issue: >>>...
7
by: joeyej | last post by:
How do I compare today's date with this string (in my inc file) so that I can set an alert if date choice i.e. May 15, 2006 not at least greater than two days from current date? <option...
5
by: M Skabialka | last post by:
I am creating my first Visual Studio project, an inventory database. I have created a form and used written directions to add data from a table to the form using table adapters, data sets, etc. ...
1
by: cinsky | last post by:
Hi, I got confused when I learned the function datetime.today(). So far I learned, unless an instance is created, it is not possible to call the class method. For example: class Foo: def...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.