Wrox Programmer Forums
|
BOOK: Beginning Spring Framework 2 ISBN: 978-0-470-10161-2
This is the forum to discuss the Wrox book Beginning Spring Framework 2 by Thomas Van de Velde, Bruce Snyder, Christian Dupuis, Sing Li, Anne Horton, Naveen Balani; ISBN: 9780470101612
Welcome to the p2p.wrox.com Forums.

You are currently viewing the BOOK: Beginning Spring Framework 2 ISBN: 978-0-470-10161-2 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 16th, 2009, 05:15 AM
Registered User
 
Join Date: Mar 2009
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default thanks for solution but still have problem in later section

Dear all

thanks for the solution for editting the pom.xml, but still if follows this pom.xml, any one can pass the Dao Test at page 62?
l have the problem to mvn exec:...........
Scanning for projects...
Searching repository for plugin with prefix: 'exec'.
------------------------------------------------------------------------
Building Unnamed - wrox:pixweb:war:0.0.1
task-segment: [exec:java]
------------------------------------------------------------------------
Preparing exec:java
No goals needed for project - skipping
G] POM for 'jaxen:jaxen:pom:1.1-beta-9:compile' is invalid.

endencies (if any) will NOT be available to the current build.
G] POM for 'xfire:xfire-jsr181-api:pom:1.0-M1:compile' is invalid.

endencies (if any) will NOT be available to the current build.
[exec:java]
------------------------------------------------------------------------
BUILD ERROR
------------------------------------------------------------------------
An exception occured while executing the Java class. com.wrox.beginspring.pix.dao.e
.AlbumDaoTest

------------------------------------------------------------------------
For more information, run Maven with the -e switch
------------------------------------------------------------------------
Total time: 1 second
Finished at: Sat May 16 16:46:50 SGT 2009
Final Memory: 11M/20M


any help? thanks a lot
and I think we should suggest the publisher to release the new source code.
 
Old August 22nd, 2009, 09:13 AM
Registered User
 
Join Date: Aug 2009
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Angry Why don't these code examples work?

I have tried to build the package using these suggested modifications to the pom. Only to get other problems: activemq-core not found.

Surely the author or wrox press could make the example code work.
I realise that the repositories change. But why doesn't Wrox have their own?
The code and its corrections is surely vital for reading and trying out the examples.

I think the buyer doesn't buy a book to solve the book's example code problems or remake dated ones.

If anyone recently has got this code to build please let me know otherwise I will have to spend time to do this, which I haven't got.
 
Old August 24th, 2009, 12:30 AM
Registered User
 
Join Date: Apr 2009
Posts: 3
Thanks: 1
Thanked 1 Time in 1 Post
Default Wrox loses points

Hi,

I've posted a solution earlier, but in the meantime things may have changed once again at the repository central.
To be honest: I did not continue Spring. After having used Wrox books (and their respective forums) successfully for a couple of other topics, I notice that there is simply no support from Wrox here. Maybe no one of the four authors feel responsible for their work, maybe the publisher simply doesn't care.

To use maven, which depends from the web, and adding no support in this build tool renders this book not a "beginning" one, but a "pain".

For me, I will consider other publishers for future purchases.
The Following User Says Thank You to pi4630 For This Useful Post:
 
Old August 24th, 2009, 03:52 AM
Authorized User
 
Join Date: Aug 2009
Posts: 10
Thanks: 3
Thanked 3 Times in 3 Posts
Smile Build Error

I was trying to get the procedures in Appendix C to work also. I tried the new pom.xml file referenced in prior posts and was still receiving errors. Specifically one referencing activemq/activemq-core. Doing a little research I noticed that in the pom.xml file the version for activemq/activemq-core was 4.1.1. I found the referenced file at http://repo1.maven.org/maven2/org/ap...activemq-core/ but also noticed newer versions [4.1.2, 5.0.0, 5.1.0, 5.2.0]. I also noticed another file named maven.metadata.xml and decided to open it. The file showed that the latest release version was 5.2.0. I decided to change the version number in the pom.xml file for the variable activemq-version from 4.1.1 to 5.2.0 and rerun mvn package -Dmaven.test.skip=true. Don't forget to have a .jpg file with the name football.jpg in the wrox-pix-web\test\resources directory. I just copied and renamed one of the existing .jpg files. The build was successful. The WAR file was created. I deployed the WAR file to Tomcat, started the server and was able to see the album-creation page in my web browser [Firefox]. I will post the pom.xml file in its entirety below. I am new to Spring and Maven but am not new to programming. It is very frustrating when authors do not take responsibility for their work especially in our world of ever changing data. I hope this info helps.
Code:
<?xml version="1.0" encoding="UTF-8"?><project>
 <modelVersion>4.0.0</modelVersion>
 <groupId>wrox</groupId>
 <artifactId>pixweb</artifactId>
 <packaging>war</packaging>
 <version>0.0.1</version>
 <description></description>
 <build>
   <sourceDirectory>src/main/java</sourceDirectory>
   <testSourceDirectory>src/test/java</testSourceDirectory>
   <resources>
     <resource>
       <filtering>true</filtering>
       <directory>src/main/java</directory>
       <excludes>
         <exclude>**/*.java</exclude>
       </excludes>
     </resource>
     <resource>
       <directory>src/main/resources</directory>
       <includes>
         <include>**/*.properties</include>
         <include>**/*.xml</include>
       </includes>
     </resource>
   </resources>
   <testResources>
     <testResource>
       <filtering>true</filtering>
       <directory>src/test/java</directory>
       <excludes>
         <exclude>**/*.java</exclude>
       </excludes>
     </testResource>
     <testResource>
       <directory>src/test/resources</directory>
     </testResource>
   </testResources>
   <plugins>
     <plugin>
       <artifactId>maven-compiler-plugin</artifactId>
       <configuration>
         <source>1.5</source>
         <target>1.5</target>
       </configuration>
     </plugin>
     <plugin>
       <artifactId>maven-eclipse-plugin</artifactId>
       <configuration>
         <wtpversion>1.0</wtpversion>
         <additionalBuildcommands>
           <buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
         </additionalBuildcommands>
         <additionalProjectnatures>
           <projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
         </additionalProjectnatures>
       </configuration>
     </plugin>
   <plugin>
       <groupId>org.codehaus.mojo</groupId>
       <version>1.0-20061017.160413-3</version>
       <artifactId>xfire-maven-plugin</artifactId>
         <executions>
          <execution>
             <goals>
                <goal>wsgen</goal>
             </goals>
          </execution>
       </executions>
       <configuration>
         <package>com.wrox.webservice.emailvalidation.client</package>
         <overwrtite>true</overwrtite>
         <generateServerStubs>false</generateServerStubs>
         <forceBare>false</forceBare>
         <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
         <wsdls>
           <wsdl>http://ws.xwebservices.com/XWebEmailValidation/V2/XWebEmailValidation.wsdl</wsdl>
         </wsdls>
       </configuration>
     </plugin>
   </plugins>
 </build>
 <pluginRepositories>
  <pluginRepository>
     <id>Codehaus Snapshots</id>
     <url>http://snapshots.repository.codehaus.org/</url>
     <snapshots>
       <enabled>true</enabled>
     </snapshots>
     <releases>
       <enabled>false</enabled>
     </releases>
 </pluginRepository>
</pluginRepositories>
 <dependencies>
   <dependency>
     <groupId>taglibs</groupId>
     <artifactId>standard</artifactId>
     <version>${taglibs-standard-version}</version>
   </dependency>
   <dependency>
     <groupId>javax.servlet</groupId>
     <artifactId>jstl</artifactId>
     <version>${jstl-version}</version>
   </dependency>
   <dependency>
     <groupId>javax.servlet</groupId>
     <artifactId>servlet-api</artifactId>
     <version>${servlet-api-version}</version>
     <scope>provided</scope>
   </dependency>
   <dependency>
     <groupId>commons-fileupload</groupId>
     <artifactId>commons-fileupload</artifactId>
     <version>${commons-fileupload-version}</version>
   </dependency>
   <dependency>
     <groupId>org.springframework</groupId>
     <artifactId>spring-webmvc</artifactId>
     <version>${spring-version}</version>
   </dependency>
   <dependency>
     <groupId>org.springframework</groupId>
     <artifactId>spring-jpa</artifactId>
     <version>${spring-version}</version>
   </dependency>
   <dependency>
     <groupId>org.hibernate</groupId>
     <artifactId>hibernate-entitymanager</artifactId>
     <version>3.2.1.ga</version>
     <exclusions>
       <exclusion>
         <artifactId>jta</artifactId>
         <groupId>javax.transaction</groupId>
       </exclusion>
     </exclusions>
   </dependency>
   <dependency>
     <groupId>geronimo-spec</groupId>
     <artifactId>geronimo-spec-jta</artifactId>
     <version>1.0.1B-rc4</version>
   </dependency>
   <dependency>
     <groupId>org.springframework</groupId>
     <artifactId>spring-aspects</artifactId>
     <version>${spring-version}</version>
   </dependency>
   <dependency>
     <groupId>org.springframework</groupId>
     <artifactId>spring-aop</artifactId>
     <version>${spring-version}</version>
   </dependency>
   <dependency>
     <groupId>org.springframework</groupId>
     <artifactId>spring-webflow</artifactId>
     <version>${spring-webflow-version}</version>
   </dependency>
   <dependency>
     <groupId>org.springframework</groupId>
     <artifactId>spring-mock</artifactId>
     <version>${spring-version}</version>
     <scope>test</scope>
   </dependency>
   <dependency>
     <groupId>org.springframework</groupId>
     <artifactId>spring-jms</artifactId>
     <version>${spring-version}</version>
   </dependency>
   <dependency>
     <groupId>hsqldb</groupId>
     <artifactId>hsqldb</artifactId>
     <version>${hsqldb-version}</version>
   </dependency>
   <dependency>
     <groupId>org.directwebremoting</groupId>
     <artifactId>dwr</artifactId>
     <version>${dwr-version}</version>
   </dependency>
   <dependency>
     <groupId>junit</groupId>
     <artifactId>junit</artifactId>
     <version>${junit-version}</version>
     <scope>test</scope>
   </dependency>
   <dependency>
     <groupId>commons-lang</groupId>
     <artifactId>commons-lang</artifactId>
     <version>${commons-lang-version}</version>
   </dependency>
   <dependency>
     <groupId>log4j</groupId>
     <artifactId>log4j</artifactId>
     <version>${log4j-version}</version>
   </dependency>
   <dependency>
     <groupId>com.lowagie</groupId>
     <artifactId>itext</artifactId>
     <version>1.4.8</version>
   </dependency>
   <dependency>
     <groupId>rome</groupId>
     <artifactId>rome</artifactId>
     <version>0.9</version>
   </dependency>
   <dependency>
     <groupId>org.codehaus.xfire</groupId>
     <artifactId>xfire-aegis</artifactId>
     <version>${xfire-version}</version>
   </dependency>
   <dependency>
     <groupId>org.codehaus.xfire</groupId>
     <artifactId>xfire-core</artifactId>
     <version>${xfire-version}</version>
   </dependency>
   <dependency>
     <groupId>org.codehaus.xfire</groupId>
     <artifactId>xfire-spring</artifactId>
     <version>${xfire-version}</version>
     <exclusions>
       <exclusion>
         <artifactId>spring</artifactId>
         <groupId>org.springframework</groupId>
       </exclusion>
     </exclusions>
   </dependency>
   <dependency>
     <groupId>org.codehaus.xfire</groupId>
     <artifactId>xfire-java5</artifactId>
     <version>1.2.5</version>
   </dependency>
   <dependency>
     <groupId>org.codehaus.xfire</groupId>
     <artifactId>xfire-generator</artifactId>
     <version>${xfire-version}</version>
     <scope>compile</scope>
     <exclusions>
       <exclusion>
         <artifactId>spring</artifactId>
         <groupId>org.springframework</groupId>
       </exclusion>
     </exclusions>
   </dependency>
   <dependency>
     <groupId>org.codehaus.xfire</groupId>
     <artifactId>xfire-jaxws</artifactId>
     <version>${xfire-version}</version>
     <scope>compile</scope>
   </dependency>
   <dependency>
     <groupId>org.apache.activemq</groupId>
     <artifactId>activemq-core</artifactId>
     <version>${activemq-version}</version>
   </dependency>
   <dependency>
     <groupId>fm.void.jetm</groupId>
     <artifactId>jetm</artifactId>
     <version>${jetm-version}</version>
   </dependency>
   <dependency>
     <groupId>fm.void.jetm</groupId>
     <artifactId>jetm-optional</artifactId>
     <version>${jetm-version}</version>
   </dependency>
   <dependency>
     <groupId>cglib</groupId>
     <artifactId>cglib-nodep</artifactId>
     <version>${cglib-version}</version>
   </dependency>
 </dependencies>
 <properties>
   <activemq-version>5.2.0</activemq-version>
   <spring-webflow-version>1.0.3</spring-webflow-version>
   <spring-version>2.0.5</spring-version>
   <junit-version>3.8.2</junit-version>
   <commons-lang-version>2.1</commons-lang-version>
   <dwr-version>2.0.1</dwr-version>
   <jstl-version>1.0</jstl-version>
   <taglibs-standard-version>1.1.1</taglibs-standard-version>
   <hsqldb-version>1.8.0.7</hsqldb-version>
   <servlet-api-version>2.5</servlet-api-version>
   <log4j-version>1.2.14</log4j-version>
   <commons-fileupload-version>1.1.1</commons-fileupload-version>
   <xfire-version>1.2.4</xfire-version>
   <jetm-version>1.2.1</jetm-version>
   <cglib-version>2.1_3</cglib-version>
 </properties>
</project>
I hope i did that right and you can copy and paste it.

EverettG.
 
Old August 24th, 2009, 05:31 AM
Registered User
 
Join Date: Aug 2009
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Wrox loses points

Hi,

My sentiments entirely.

lunalobo
 
Old August 24th, 2009, 08:49 AM
jminatel's Avatar
Wrox Staff
Points: 18,059, Level: 58
Points: 18,059, Level: 58 Points: 18,059, Level: 58 Points: 18,059, Level: 58
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
 
Join Date: May 2003
Posts: 1,906
Thanks: 62
Thanked 139 Times in 101 Posts
Default

pi4630 and everyone else: I'll see if we can get the authors to respond.
__________________
Jim Minatel
Associate Publisher, WROX - A Wiley Brand
Did someone here help you? Click on their post!
The Following 2 Users Say Thank You to jminatel For This Useful Post:
egoodenuf (August 30th, 2009)
 
Old August 29th, 2009, 05:11 PM
Wrox Author
 
Join Date: May 2005
Posts: 4
Thanks: 1
Thanked 2 Times in 2 Posts
Default

Due to consolidation of open source projects, the xfire-maven-plugin has been moved out of the main maven repository

The plugin is now located (as a snapshot) at http://snapshots.repository.codehaus.org

Because of this, you need to:
  • add the snapshots repository URL as one of your plugin repositories
  • specify the 1.0-SNAPSHOT version as the version you need
Add the snapshot repository URL as one of your plugin repositories

In the pom.xml of wrox-pix-web, find and add the <pluginRepositories>... </pluginRepositories> section:


<?xml version="1.0" encoding="UTF-8"?><project>
<modelVersion>4.0.0</modelVersion>
<groupId>wrox</groupId>
<artifactId>pixweb</artifactId>
<packaging>war</packaging>
<version>0.0.1</version>
<description></description>
<pluginRepositories>
<pluginRepository>
<id>codehaus snapshot</id>
<url>http://snapshots.repository.codehaus.org</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<resources>
<resource>
.....


Specify the 1.0-SNAPSHOT version as the plugin version you need

In the pom.xml of wrox-pix-web, find and add the following <version>…</version> tag:

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xfire-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
….

This should fix the build problem associated with the relocation of the xfire-maven-plugin.

Last edited by SingLi; August 30th, 2009 at 01:54 AM..
The Following User Says Thank You to SingLi For This Useful Post:
egoodenuf (August 30th, 2009)
 
Old August 30th, 2009, 02:48 PM
Authorized User
 
Join Date: Aug 2009
Posts: 10
Thanks: 3
Thanked 3 Times in 3 Posts
Default Build Error

Quote:
Originally Posted by SingLi View Post
Due to consolidation of open source projects, the xfire-maven-plugin has been moved out of the main maven repository

The plugin is now located (as a snapshot) at http://snapshots.repository.codehaus.org

Because of this, you need to:
  • add the snapshots repository URL as one of your plugin repositories
  • specify the 1.0-SNAPSHOT version as the version you need
Add the snapshot repository URL as one of your plugin repositories

In the pom.xml of wrox-pix-web, find and add the <pluginRepositories>... </pluginRepositories> section:


<?xml version="1.0" encoding="UTF-8"?><project>
<modelVersion>4.0.0</modelVersion>
<groupId>wrox</groupId>
<artifactId>pixweb</artifactId>
<packaging>war</packaging>
<version>0.0.1</version>
<description></description>
<pluginRepositories>
<pluginRepository>
<id>codehaus snapshot</id>
<url>http://snapshots.repository.codehaus.org</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<build>
<sourceDirectory>src/main/java</sourceDirectory>
<testSourceDirectory>src/test/java</testSourceDirectory>
<resources>
<resource>
.....


Specify the 1.0-SNAPSHOT version as the plugin version you need

In the pom.xml of wrox-pix-web, find and add the following <version>…</version> tag:

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xfire-maven-plugin</artifactId>
<version>1.0-SNAPSHOT</version>
<executions>
….

This should fix the build problem associated with the relocation of the xfire-maven-plugin.
First, thank you for your help. Does this mean that every pom.xml file used throughout the book needs to be updated?
I have been discovering many, many problems trying to execute the "Try It Out" sections mainly due to changes such as you mentioned in the post. Myself and others have mentioned this several times and the frustration level is quite high. I don't mind trying to figure out problems but most of us have purchased this book to learn, not to debug problems with the book. I hope that you and the other authors will be following this forum and helping current and future users of your book so that we all may benefit and learn from it. Many past users have given up trying and abandoned your book as a resource and even have gone so far as to abandon Wrox publishing books altogether, can you blame them. I am going to try and tough out the rest of the book. Being a software engineer for over 35 years I have experienced this situation many times and have learned may valuable lessons from the work put into debugging book problems, but you must admit that it does take time and sometimes you don't find an answer to a particular problem and it may cause you to be unable to complete the rest of the book.

I do thank you for your help and hope that you and your fellow authors will continue to provide it in the future.

Thank you.

EverettG.
The Following User Says Thank You to egoodenuf For This Useful Post:
 
Old September 6th, 2009, 09:52 AM
Registered User
 
Join Date: Sep 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Problem on build wrox-pix-web

Please help me i am getting this error, it seems, some modules missing in the project source code.

[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building Unnamed - wrox:pixweb:war:0.0.1
[INFO] task-segment: [eclipse:eclipse]
[INFO] ------------------------------------------------------------------------
[INFO] Preparing eclipse:eclipse
[INFO] [xfire:wsgen {execution: default}]
[INFO] Executing XFire WsGen task with url: http://ws.xwebservices.com/XWebEmail...alidation.wsdl
[ERROR] log4j:WARN No appenders could be found for logger (org.codehaus.xfire.gen.Wsdl11Generator).
[ERROR] log4j:WARN Please initialize the log4j system properly.
Retrieving schema at 'XWebEmailValidation.xsd', relative to 'http://ws.xwebservices.com/XWebEmailValidation/V2/XWebEmailValidation.wsdl'.
com/xwebservices/ws/xwebemailvalidation/emailvalidation/v2/messages/ObjectFactory.java
com/xwebservices/ws/xwebemailvalidation/emailvalidation/v2/messages/ValidateEmailRequest.java
com/xwebservices/ws/xwebemailvalidation/emailvalidation/v2/messages/ValidateEmailResponse.java
com/xwebservices/ws/xwebemailvalidation/emailvalidation/v2/messages/package-info.java
com/wrox/webservice/emailvalidation/client/EmailValidationClient.java
com/wrox/webservice/emailvalidation/client/XWebEmailValidationInterface.java
[INFO] [eclipse:eclipse {execution: default-cli}]
[INFO] Adding support for WTP version 1.0.
[INFO] Using Eclipse Workspace: null
[INFO] Adding default classpath container: org.eclipse.jdt.launching.JRE_CONTAINER
[INFO] Resource directory's path matches an existing source directory. Resources will be merged with the source directory src/main/java
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Request to merge when 'filtering' is not identical. Original=source src/main/java: output=null, include=[**/*.java], exclude=[], test=false, filtering=false, merging with=resource src/main/java: output=target/classes, include=[], exclude=[**/*.java|**/*.java], test=false, filtering=true
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8 seconds
[INFO] Finished at: Mon Sep 07 00:41:14 IST 2009
[INFO] Final Memory: 16M/29M
[INFO] ------------------------------------------------------------------------
 
Old September 23rd, 2010, 04:44 AM
Registered User
 
Join Date: Sep 2010
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Default

When I tried to run the source code of the book, I encountered this problem. I followed whatever solution you people have mentioned but didn't work out. Could anyone help me out? The exception being thrown as follows..

mvn package
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building Unnamed - wrox:pixweb:war:0.0.1
[INFO] task-segment: [package]
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).


Project ID: org.codehaus.mojo:xfire-maven-plugin
POM Location: C:\Users\lakpa\.m2\repository\org\codehaus\mojo\xf ire-maven-plugin
\1.0-SNAPSHOT\xfire-maven-plugin-1.0-SNAPSHOT.pom

Reason: Not a v4.0.0 POM. for project org.codehaus.mojo:xfire-maven-plugin at C:
\Users\lakpa\.m2\repository\org\codehaus\mojo\xfir e-maven-plugin\1.0-SNAPSHOT\xf
ire-maven-plugin-1.0-SNAPSHOT.pom


[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: < 1 second
[INFO] Finished at: Thu Sep 23 09:39:31 BST 2010
[INFO] Final Memory: 5M/9M





Similar Threads
Thread Thread Starter Forum Replies Last Post
VB2005 Project Build Error ashg657 Visual Basic 2005 Basics 1 August 6th, 2006 06:57 PM
C# - Chapter 3 Build Error TJ BOOK: Beginning ASP.NET 2.0 BOOK VB ISBN: 978-0-7645-8850-1; C# ISBN: 978-0-470-04258-8 0 July 29th, 2006 03:43 PM
Build Error, not IIS application VictorVictor ASP.NET 2.0 Basics 0 January 11th, 2006 04:43 PM
Build Error - Plz Help - Thanks ank2go ASP.NET 1.0 and 1.1 Basics 1 February 23rd, 2004 10:09 PM
error on build stewbaby C++ Programming 1 October 30th, 2003 06:07 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.