473,807 Members | 2,847 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Bean problem

2 New Member
Hi this is my first post but so far this is pretty good site. I have a file called index.html with the following code:

Expand|Select|Wrap|Line Numbers
  1. <!--  index.html  -->
  2.  
  3. <html>
  4. <head><title>Student Registration Front</title></head>
  5. <body bgcolor="#ffffcc">
  6.  
  7.   <h2 align="center"><font color="#800000">Student Registration Webapp 2007</font></h2>
  8.  
  9.   <p>&nbsp;</p>
  10.   <p>&nbsp;</p>
  11.  
  12.   <!-- <form action="http://localhost:8080/eventRegister/front.jsp" method="post"> -->
  13.    <form action="https://tomcat.cscs.wmin.ac.uk:9191/tomcat/w1009048/front.jsp" method="post">
  14.    <table align="center">
  15.        <tr><th>Student Registration: </th>
  16.            <td><input type="radio" name="choice" value="register" checked> </td>
  17.            <td> <font color="blue">you must register here first</font></td></tr>
  18.  
  19.        <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  20.        <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  21.  
  22.        <tr><th>Login for registered students: </th>
  23.            <td><input type="radio" name="choice" value="login"> </td>
  24.            <td><font color="red">this is not yet implemented<br />
  25.                                  and leads to a blank page</font></td></tr>
  26.  
  27.        <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  28.  
  29.        <tr><td>&nbsp;</td>
  30.            <th><input type="submit" value="Submit"></th>
  31.            <td>&nbsp;</td></tr>
  32.       </table>
  33.   </form>
  34.  
  35. </body>
  36. </html>
  37.  
When they click on submit it goes to my front.jsp which has the following code(front.jsp is actually FrontController .java changed in web.xml):

Expand|Select|Wrap|Line Numbers
  1. //  FrontController.java
  2.  
  3. import java.io.* ;
  4. import java.util.* ;
  5. import javax.servlet.* ;
  6. import javax.servlet.http.* ;
  7. import beans.*;
  8.  
  9. /* 
  10.    The front controller:
  11.    * creates a new 'session' object,
  12.    * creates an empty 'error message' String which it stores in 'session', then
  13.    * redirects the request to either: 
  14.        - 'register' (the real JSP, register.jsp),  or 
  15.        - 'login' (not implemented) 
  16. */
  17.  
  18. public class FrontController extends HttpServlet
  19. {
  20.    public void doPost( HttpServletRequest request, HttpServletResponse response )
  21.                   throws IOException, ServletException
  22.    {
  23.       String strChoice = request.getParameter( "choice" );
  24.  
  25.       if ( strChoice.equals( "register" ) )
  26.       {
  27.          HttpSession session = request.getSession();
  28.  
  29.          String strError = " ";  /*  now 'store' this String object - this is not a bean
  30.                                      but can be stored in 'session' in exactly the same way */
  31.          session.setAttribute( "error", strError );  
  32.  
  33.          RequestDispatcher dispatcher = getServletContext().getRequestDispatcher( "/register.jsp" );
  34.          dispatcher.forward( request, response );
  35.       }
  36.       else
  37.       {
  38.          RequestDispatcher dispatcher = getServletContext().getRequestDispatcher( "/login.jsp" );
  39.          dispatcher.forward( request, response );
  40.       }
  41.    }
  42. }
  43.  
After from frontcontroller , it should go into register.jsp but it does not becuase it i get this error message:

Expand|Select|Wrap|Line Numbers
  1.  
  2. HTTP Status 500 - 
  3.  
  4. --------------------------------------------------------------------------------
  5.  
  6. type Exception report
  7.  
  8. message 
  9.  
  10. description The server encountered an internal error () that prevented it from fulfilling this request.
  11.  
  12. exception 
  13.  
  14. org.apache.jasper.JasperException: /register.jsp(4,0) The value for the useBean class attribute bean.Counter is invalid.
  15.     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
  16.     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
  17.     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
  18.     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
  19.     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  20.     FrontController.doPost(FrontController.java:34)
  21.     javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  22.     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  23.  
  24.  
  25. root cause 
  26.  
  27. org.apache.jasper.JasperException: /register.jsp(4,0) The value for the useBean class attribute bean.Counter is invalid.
  28.     org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
  29.     org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:405)
  30.     org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:146)
  31.     org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1174)
  32.     org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1116)
  33.     org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
  34.     org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2213)
  35.     org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2219)
  36.     org.apache.jasper.compiler.Node$Root.accept(Node.java:456)
  37.     org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
  38.     org.apache.jasper.compiler.Generator.generate(Generator.java:3320)
  39.     org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:198)
  40.     org.apache.jasper.compiler.Compiler.compile(Compiler.java:295)
  41.     org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
  42.     org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
  43.     org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
  44.     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:305)
  45.     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
  46.     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
  47.     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  48.     FrontController.doPost(FrontController.java:34)
  49.     javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  50.     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  51.  
The reason why it shows this error message is cos i add this following line of code in my register.jsp: <jsp:useBean id="counterid" class="bean.Cou nter" scope="applicat ion" />
The full code is here:

Expand|Select|Wrap|Line Numbers
  1. <%--  register.jsp  --%>
  2.  
  3. <%@ page language="java" contentType="text/html; charset-ISO-8859-1" %> 
  4. <jsp:useBean id="counterid" class="bean.Counter" scope="application" />
  5.  
  6. <html>
  7. <head><title>Student Registration Front</title></head>
  8. <body bgcolor="#ffffcc">
  9.   <h2 align="center"><font color="#800000">Student Registration Webapp 2007</font></h2>
  10.  
  11.   <h3 align="center"><font color="red"><i> 
  12.       <% String e = (String) session.getAttribute( "error" );
  13.          out.print( e ); %> 
  14.   </i></font></h3>
  15.  
  16.  
  17.  
  18.   <form action="registerStudent.jsp" method="post">
  19.     <table align="center">
  20.         <tr><th>Enter Surname: </th>
  21.             <td><input type="text" name="surname" size="20"></td></tr>
  22.         <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  23.         <tr><th>Enter First Names: </th>
  24.             <td><input type="text" name="firstname" size="20"></td></tr>
  25.         <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  26.         <tr><th>Enter 8 Registration Digits: </th>
  27.             <td><input type="text" name="reg" size="8"></td></tr>
  28.         <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  29.         <tr><th>Enter Module: </th>
  30.             <td><select name="module">
  31.                   <option value="3sfe513">3sfe513
  32.                   <option value="3sfe7a6">3sfe7a6
  33.                </select>
  34.             </td></tr>
  35.         <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  36.         <tr><th>Enter Password for Webapp Login: </th>
  37.             <td><input type="password" name="password" value="" size="8"></td></tr>
  38.         <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  39.         <tr><th colspan="2"><input type="submit" value="Submit"></th></tr>
  40.      </table>
  41.     </form>
  42.  
  43. </body>
  44. </html>
  45.  
The register.jsp is used to allow member to enter their details and once they are submitted the data will be stored in mysql db. Now, can somone tell me why when i add the following code i get the following error message. If i dont add the following code, after i submit the first page it goes to my register.jsp. Please help if you cannn, please help..
Mar 30 '07 #1
2 2136
r035198x
13,262 MVP
Hi this is my first post but so far this is pretty good site. I have a file called index.html with the following code:

Expand|Select|Wrap|Line Numbers
  1. <!-- index.html -->
  2.  
  3. <html>
  4. <head><title>Student Registration Front</title></head>
  5. <body bgcolor="#ffffcc">
  6.  
  7. <h2 align="center"><font color="#800000">Student Registration Webapp 2007</font></h2>
  8.  
  9. <p>&nbsp;</p>
  10. <p>&nbsp;</p>
  11.  
  12. <!-- <form action="http://localhost:8080/eventRegister/front.jsp" method="post"> -->
  13. <form action="https://tomcat.cscs.wmin.ac.uk:9191/tomcat/w1009048/front.jsp" method="post">
  14. <table align="center">
  15. <tr><th>Student Registration: </th>
  16. <td><input type="radio" name="choice" value="register" checked> </td>
  17. <td> <font color="blue">you must register here first</font></td></tr>
  18.  
  19. <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  20. <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  21.  
  22. <tr><th>Login for registered students: </th>
  23. <td><input type="radio" name="choice" value="login"> </td>
  24. <td><font color="red">this is not yet implemented<br />
  25. and leads to a blank page</font></td></tr>
  26.  
  27. <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  28.  
  29. <tr><td>&nbsp;</td>
  30. <th><input type="submit" value="Submit"></th>
  31. <td>&nbsp;</td></tr>
  32.     </table>
  33. </form>
  34.  
  35. </body>
  36. </html>
  37.  
When they click on submit it goes to my front.jsp which has the following code(front.jsp is actually FrontController .java changed in web.xml):

Expand|Select|Wrap|Line Numbers
  1. // FrontController.java
  2.  
  3. import java.io.* ;
  4. import java.util.* ;
  5. import javax.servlet.* ;
  6. import javax.servlet.http.* ;
  7. import beans.*;
  8.  
  9. /* 
  10. The front controller:
  11. * creates a new 'session' object,
  12. * creates an empty 'error message' String which it stores in 'session', then
  13. * redirects the request to either: 
  14. - 'register' (the real JSP, register.jsp), or 
  15. - 'login' (not implemented) 
  16. */
  17.  
  18. public class FrontController extends HttpServlet
  19. {
  20. public void doPost( HttpServletRequest request, HttpServletResponse response )
  21. throws IOException, ServletException
  22. {
  23. String strChoice = request.getParameter( "choice" );
  24.  
  25. if ( strChoice.equals( "register" ) )
  26. {
  27. HttpSession session = request.getSession();
  28.  
  29. String strError = " "; /* now 'store' this String object - this is not a bean
  30. but can be stored in 'session' in exactly the same way */
  31. session.setAttribute( "error", strError ); 
  32.  
  33. RequestDispatcher dispatcher = getServletContext().getRequestDispatcher( "/register.jsp" );
  34. dispatcher.forward( request, response );
  35. }
  36. else
  37. {
  38. RequestDispatcher dispatcher = getServletContext().getRequestDispatcher( "/login.jsp" );
  39. dispatcher.forward( request, response );
  40. }
  41. }
  42. }
  43.  
After from frontcontroller , it should go into register.jsp but it does not becuase it i get this error message:

Expand|Select|Wrap|Line Numbers
  1.  
  2. HTTP Status 500 - 
  3.  
  4. --------------------------------------------------------------------------------
  5.  
  6. type Exception report
  7.  
  8. message 
  9.  
  10. description The server encountered an internal error () that prevented it from fulfilling this request.
  11.  
  12. exception 
  13.  
  14. org.apache.jasper.JasperException: /register.jsp(4,0) The value for the useBean class attribute bean.Counter is invalid.
  15.     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
  16.     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
  17.     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
  18.     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
  19.     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  20.     FrontController.doPost(FrontController.java:34)
  21.     javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  22.     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  23.  
  24.  
  25. root cause 
  26.  
  27. org.apache.jasper.JasperException: /register.jsp(4,0) The value for the useBean class attribute bean.Counter is invalid.
  28.     org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:39)
  29.     org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:405)
  30.     org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:146)
  31.     org.apache.jasper.compiler.Generator$GenerateVisitor.visit(Generator.java:1174)
  32.     org.apache.jasper.compiler.Node$UseBean.accept(Node.java:1116)
  33.     org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
  34.     org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2213)
  35.     org.apache.jasper.compiler.Node$Visitor.visit(Node.java:2219)
  36.     org.apache.jasper.compiler.Node$Root.accept(Node.java:456)
  37.     org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2163)
  38.     org.apache.jasper.compiler.Generator.generate(Generator.java:3320)
  39.     org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:198)
  40.     org.apache.jasper.compiler.Compiler.compile(Compiler.java:295)
  41.     org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
  42.     org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
  43.     org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
  44.     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:305)
  45.     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
  46.     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
  47.     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  48.     FrontController.doPost(FrontController.java:34)
  49.     javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
  50.     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
  51.  
The reason why it shows this error message is cos i add this following line of code in my register.jsp: <jsp:useBean id="counterid" class="bean.Cou nter" scope="applicat ion" />
The full code is here:

Expand|Select|Wrap|Line Numbers
  1. <%-- register.jsp --%>
  2.  
  3. <%@ page language="java" contentType="text/html; charset-ISO-8859-1" %> 
  4. <jsp:useBean id="counterid" class="bean.Counter" scope="application" />
  5.  
  6. <html>
  7. <head><title>Student Registration Front</title></head>
  8. <body bgcolor="#ffffcc">
  9. <h2 align="center"><font color="#800000">Student Registration Webapp 2007</font></h2>
  10.  
  11. <h3 align="center"><font color="red"><i> 
  12. <% String e = (String) session.getAttribute( "error" );
  13. out.print( e ); %> 
  14. </i></font></h3>
  15.  
  16.  
  17.  
  18. <form action="registerStudent.jsp" method="post">
  19. <table align="center">
  20. <tr><th>Enter Surname: </th>
  21. <td><input type="text" name="surname" size="20"></td></tr>
  22. <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  23. <tr><th>Enter First Names: </th>
  24. <td><input type="text" name="firstname" size="20"></td></tr>
  25. <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  26. <tr><th>Enter 8 Registration Digits: </th>
  27. <td><input type="text" name="reg" size="8"></td></tr>
  28. <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  29. <tr><th>Enter Module: </th>
  30. <td><select name="module">
  31. <option value="3sfe513">3sfe513
  32. <option value="3sfe7a6">3sfe7a6
  33. </select>
  34. </td></tr>
  35. <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  36. <tr><th>Enter Password for Webapp Login: </th>
  37. <td><input type="password" name="password" value="" size="8"></td></tr>
  38. <tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr>
  39. <tr><th colspan="2"><input type="submit" value="Submit"></th></tr>
  40. </table>
  41. </form>
  42.  
  43. </body>
  44. </html>
  45.  
The register.jsp is used to allow member to enter their details and once they are submitted the data will be stored in mysql db. Now, can somone tell me why when i add the following code i get the following error message. If i dont add the following code, after i submit the first page it goes to my register.jsp. Please help if you cannn, please help..
It is bean.Counter or is it supposed to be beans.Counter or possibly just Counter?
Mar 31 '07 #2
nvidia1
2 New Member
It is bean.Counter or is it supposed to be beans.Counter or possibly just Counter?

Ahhhhh, it is meant to be beans.Counter. I looked at my folder name. I don't know about you but sometimes when programming in general you don't always see your own mistakes, therefore it is always good to ask somebody else as they might have a different view. Thanks for you'r help and sorry if i have caused any inconvience.
Mar 31 '07 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

3
6542
by: Jose Munoz | last post by:
Hi all, I want to share some data for all my applications (servlets and jsps). For this i am using a JSP to set the variables with scope=application. When i get this data from some JSP all is o.k, i can see the data that i saved, but when i get access with my servlets, i can't see data saved prev. My request is simple: save data with a JSP and read this data with servlets.? please if you send me a small sample to do this. or tell me...
0
1709
by: jenniferyiu | last post by:
Hi. I downloaded the bean builder and followed the steps told on http://java.sun.com/products/javabeans/beanbuilder/1.0/docs/guide/tutorial.html and the sample tools was created as the above link told. I guess the bean builder can let the developers do something without writing
3
2562
by: Miles Davenport | last post by:
I have the following code (please see base of email) which displays text from a properties file ok. I have changed the properties file so the contents are different, but cannot get the new details to display. I have tried the following: -Stop and restart Apache and Tomcat. -Delete the Tomcat compiled Java and associated class for the JSP, and stop restart the server. -Cleared my browsers cache.
0
1835
by: Borek | last post by:
In my project I have to access in one business method of session bean usually more then 10 CMP Beans. I would like to have some utils classes, which could get me right instance of CMP or create one. Instead of making the same thing again and again. My proposition looks like: 1) Class for taking home interface: public final class JNDILookup { private static Context initialContext; private static HashMap homeInterfaces; private static...
5
5911
by: Casper B | last post by:
Since I am only able to pass simple beans around using my Web Service framework, I wonder how to incorporate business logic around these beans. My idea was to let my Beans be the base class and simply extend these with more sophisticated classes with the nessesary business logic inside. However, when I do a cast from MyObjectBean to MyObject I get a ClassCastException. Is it not possible to cast in this direction? public class...
1
2245
by: seller | last post by:
coded this method in bean. The intent was for the bean to run all the setters using the values in a vector argument. here's the code: public void loadSelf(Vector v) throws Exception { String parms = new String; Class cls = getClass(); java.lang.reflect.Method methods = cls.getMethods(); java.lang.reflect.AccessibleObject.setAccessible(methods, true); int vectorPointer = 0;
0
2540
by: Alfredo | last post by:
Hello everybody I have a problem as a newbie in using beans and I hope someone out there can help me with this. I have a jsp-page that use BeanClass. Somewhere in the jsp code there is the following scriptlet: <% Vector vec=BeanClass.getStateVector();
0
1355
by: jaisi | last post by:
What iam exactly trying to do is..saving the resultset in a bean.....and calling the bean in a servlet and forwarding it to jsp by setting the bean in the request scope; Now i have only one record in the db; But still iam getting the servlet as wellas jsp with no 0 name null; Here is the code: import java.io.Serializable;
1
2678
by: hostel | last post by:
HTML PAGE <html> <body> <form action="second.jsp" method="get"> YOur name <input type=text name="name"> <input type=submit > </form> </body> </html>
0
9720
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9599
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
10372
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
10374
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
9193
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7650
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
5546
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...
2
3854
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3011
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.