all groups > vj# > september 2005
Disappointed at J#
Posted by ~~~ .NET Ed ~~~ at 9/28/2005 10:13:44 PM
First I would like to point out that having used (too) many programming
languages over the past 15 years (assembly, visual/basic, pl/1, fortran,
pascal, c, c++, java, c# I decided to give J# a try. I am however no Java
guru as I have not used the language extensively (I have preference for C#)... more >>
Comments about J#'s two type systems
Posted by BGU at 9/26/2005 4:54:25 PM
Hello, I've had numerous problems in past weeks calling ADO.NET
from J#. The cause of these problems frequently stems from ADO.NET's
inability to deal with J#'s native types. My code is full of casts to such
types as
System.Byte
System.Int32
because passing
jav... more >>
J# java.util.zip.ZipFile exception
Posted by admin NO[at]SPAM msquaredweb.com at 9/19/2005 10:23:55 AM
I have a unit test that is attempting to extract a compressed file
using the java.util.zip.ZipFile object from the visual j# library. When
I attempt to create a ZipFile object in the unit test:
java.util.zip.ZipFile newZip = new
java.util.zip.ZipFile(ConfigurationSettings.AppSettings["zipPathAnd... more >>
what instead of javax.mail.*?
Posted by David Thielen at 9/14/2005 7:43:59 PM
Hi;
I need to be able to send email to a SMTP server. .net 2.0/J# does not
appear to support javax.mail.*. Any suggestions on what the closest
equivilent is in .net?
thanks - dave
david@at-at-at@windward.dot.dot.net
Windward Reports -- http://www.WindwardReports.com
Page 2 Stage -- http... more >>
log4j -> log4net wrapper
Posted by David Thielen at 9/14/2005 7:42:41 PM
Hi;
Has anyone written a log4j set of classes that just call directly to
log4net? I want to use log4net, but I don't want to have to change all
of my log calls.
thanks - dave
david@at-at-at@windward.dot.dot.net
Windward Reports -- http://www.WindwardReports.com
Page 2 Stage -- http://... more >>
junit ported to .net
Posted by David Thielen at 9/14/2005 7:40:59 PM
Hi;
Has anyone ported junit directly to J#? I know I can use nunit but I
have several hundred thousand lines of junit tests for my code so I
want to run junit under J#.
thanks - dave
david@at-at-at@windward.dot.dot.net
Windward Reports -- http://www.WindwardReports.com
Page 2 Stage -- ... more >>
Help for C# Interview questions and career decision
Posted by programmerforknowledge at 9/11/2005 7:00:00 AM
Hi All
I am fresh college graduate who has done C and C++ during college
times.After that i had done a C# course from one of our local computer
institute.The course is BCM which ran for 1 year.But now when i am
looking for job the questions asked in interview are really very very
weird and does... more >>
java.net.Socket doesn't correctly route over VPN tunnel
Posted by Douglas Held at 9/8/2005 12:00:00 AM
Hello all,
I've traced a problem with a VJ# library to a failure of the CLR to use the
correct route to the host.
I'm running Windows XP, patched latest, and the .NET framework 1.1. I also
have the following NICs:
Wired ethernet connection
Wireless NIC
Cisco VPN tunnel interface
The... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Testing for equality of strings in VJ#
Posted by Al Christoph at 9/7/2005 5:27:02 PM
I am really puzzled in one piece of code the obvious worked and in another it
didn't
String s; // a global
.....
if (s == "") {
// blah blah blah
}
// the above works just fine
public void ...
String s; // local
if (s == "") {
// blah blah blah
}
// blah blah blah never happends eve... more >>
Xerces and .NET
Posted by andreister NO[at]SPAM gmail.com at 9/2/2005 10:19:12 AM
Hi there!
I'm trying to valiadte XML against XSD using org.apache.xerces library.
The code resembles the following (working OK on j2ee)
==============================================
SAXParserFactory spf = new SAXParserFactoryImpl();
spf.setNamespaceAware(true);
spf.setValidating(true);
spf... more >>
|