473,756 Members | 1,799 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

What does "WXBUnit undefined" mean?

I'm seeing one of my websites giving me an error message on the page after
it loads up as "WXBUnit Undefined" What does that mean? The formatting of
the site is horrible! I'm not sure what is going on with it.

Thanks.
Nov 18 '05 #1
4 2526
It means that some reference to an object, named "WXBUnit" is undefined,
null, Nothing.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Flip" <[remove]ph******@hotmai l.com> wrote in message
news:uX******** ******@TK2MSFTN GP10.phx.gbl...
I'm seeing one of my websites giving me an error message on the page after
it loads up as "WXBUnit Undefined" What does that mean? The formatting of the site is horrible! I'm not sure what is going on with it.

Thanks.

Nov 18 '05 #2
> It means that some reference to an object, named "WXBUnit" is undefined,
null, Nothing.

hhhmmm when I wrote this, I originally thought I had been hacked into. Who
consciously creates a var name WXBUnit? I'm sorry, I'm still getting used
to leaving my w2k3server box open to the public like this. I used to run
RedHat Linux and I didn't worry about it. Before that, I had NT4.0 and it
was hacked into three times in two years. :< So I'm a bit nervous and
watching for any odd signs something is wrong.

I myself, don't have anything like that on the page, HOWEVER, I do have a
reference to TheWeatherNetwo rk and a JavaScript reference to their site. I
think that might be causing the problem! I know, I know, it's a simple
problem that's pretty self-evident, but in this case, it's not a simple
trivial matter IMHO as I didn't code up an object (in C#, html or JS), but
it's obviously being referenced somehow, as you pointed out.

Yup, I think I confirmed it. Try this out.

<html>
<body>
testhing
<script language=javasc ript>var city =
'ottawa_on';</script>
<script language=javasc ript
src='http://www.theweathern etwork.com/weatherbutton/test.js'></script>
</body>
</html>

It will generate the same JS error in IE. Thanks for your help pointing me
in the right direction! :>
Nov 18 '05 #3
Hi Flip,

It does seem like "WXBUnit" would logically be referring to a Weather
entity, as "Wx" is a typical abbreviation for "Weather." I'm not sure what
your "referece to TheWeatherNetwo rk" is, but it sounds like a Web Reference
(Web Service). That wouldn't have anything to do with JavaScript, though. I
was able to run the JavaScript you posted without errors, and it does show a
weather forecast for Ottawa, Ontario on my computer. Perhaps you don't need
a Web Reference? You would only need a Web Reference for a server-side
Control.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Neither a follower
nor a lender be.

"Flip" <[remove]ph******@hotmai l.com> wrote in message
news:ej******** *****@TK2MSFTNG P10.phx.gbl...
It means that some reference to an object, named "WXBUnit" is undefined,
null, Nothing. hhhmmm when I wrote this, I originally thought I had been hacked into.

Who consciously creates a var name WXBUnit? I'm sorry, I'm still getting used
to leaving my w2k3server box open to the public like this. I used to run
RedHat Linux and I didn't worry about it. Before that, I had NT4.0 and it
was hacked into three times in two years. :< So I'm a bit nervous and
watching for any odd signs something is wrong.

I myself, don't have anything like that on the page, HOWEVER, I do have a
reference to TheWeatherNetwo rk and a JavaScript reference to their site. I think that might be causing the problem! I know, I know, it's a simple
problem that's pretty self-evident, but in this case, it's not a simple
trivial matter IMHO as I didn't code up an object (in C#, html or JS), but
it's obviously being referenced somehow, as you pointed out.

Yup, I think I confirmed it. Try this out.

<html>
<body>
testhing
<script language=javasc ript>var city =
'ottawa_on';</script>
<script language=javasc ript
src='http://www.theweathern etwork.com/weatherbutton/test.js'></script>
</body>
</html>

It will generate the same JS error in IE. Thanks for your help pointing me in the right direction! :>

Nov 18 '05 #4
Howdy Kevin. Speaking of weather, we're having one heck of a snow fall
today! :>

A pictures worth a thousand words? :> This is a live webcam of our
parliament buildings. DOH!
http://www.parliamenthill.gc.ca/text/hillcam_e.html
Odd, but last night I tried it and it was back in working order! DOH! Your
posting was at midnight, which was after I found out it was working (after I
removed the code from my development box and was about to copy it to the web
server :>).
It does seem like "WXBUnit" would logically be referring to a Weather
entity, as "Wx" is a typical abbreviation for "Weather." I'm not sure what I didn't know Wx was an abbreviation for weather, so that makes sense then.
a Web Reference? You would only need a Web Reference for a server-side

I was hoping not to need a reference. But I am asking them for a textual
reference to the weather as well as an image. I help out with a disability
website (http://www.ottawamobility.ca/) and I'm reworking the site (it
sorely needs it :<) and images need to have alt text for visuall impaired
people to use their reader software for img alt tags but their image doesn't
have that at the moment. So I am hoping they expose a web service to do
this soon! :>

Thanks again for your help, you pointed me in the right direction and showed
me my server wasn't being hacked into! :> Thank you.
Nov 18 '05 #5

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

Similar topics

70
8898
by: Roy Yao | last post by:
Does it mean "(sizeof(int))* (p)" or "sizeof( (int)(*p) )" ? According to my analysis, operator sizeof, (type) and * have the same precedence, and they combine from right to left. Then this expression should equal to "sizeof( (int)(*p) )", but the compiler does NOT think so. Why? Can anyone help me? Thanks. Best regards. Roy
6
2721
by: M Welinder | last post by:
The title more or less says it all: in C99, is the value of INT_MIN % -1 well defined (when performed as signed integers) under the assumption of two-complement representation. Note, that this is not the usual negative-values-and-% question -- the problem here is that the corresponding signed division, INT_MIN / -1, overflows. Thus I don't see what use a%b = a-(a/b)*b can be here.
7
1892
by: Bruce Sam | last post by:
Is this a pointer array of function?If I was wrong,what does it means?
188
17421
by: infobahn | last post by:
printf("%p\n", (void *)0); /* UB, or not? Please explain your answer. */
22
3665
by: Xah Lee | last post by:
The Nature of the “Unix Philosophy” Xah Lee, 2006-05 In the computing industry, especially among unix community, we often hear that there's a “Unix Philosophy”. In this essay, i dissect the nature and characterization of such “unix philosophy”, as have been described by Brian Kernighan, Rob Pike, Dennis Ritchie, Ken Thompson, and Richard P Gabriel et al, and in recent years by Eric Raymond.
37
3984
by: jht5945 | last post by:
For example I wrote a function: function Func() { // do something } we can call it like: var obj = new Func(); // call it as a constructor or var result = Func(); // call it as a function
2
2082
by: whiskers | last post by:
I'm debugging some code and I have to admit that I don't know yet how it works. But I ran into a problem I can't explain The program is a DLL that retrieves raw data from a camera, builds histograms based on the pixel values, and displays them on the screen; here's a small excerpt: VOID CHistogramContainer::appendFrameData(WORD *pdwRawData, int nWidth, int nHeight) {
26
11750
by: =?gb2312?B?wNbA1rTzzOzKpg==?= | last post by:
i wrote: ----------------------------------------------------------------------- ---------------------------------------- unsigned char * p = reinterpret_cast<unsigned char *>("abcdg"); sizeof(reinterpret_cast<const char *>(p)); ----------------------------------------------------------------------- ---------------------------------------- the compiler tells me that "reinterpret_cast from type "const char * " to type "unsigned char *"...
7
318
by: rsk | last post by:
char *i_reg_fname = "none"; -- Message posted using http://www.talkaboutprogramming.com/group/comp.lang.c/ More information at http://www.talkaboutprogramming.com/faq.html
0
9287
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9886
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9857
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9722
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7259
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupr who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5155
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5318
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3817
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2677
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.