Re: MySQL server in development mode

2011-03-17 Thread Juan Pablo Gardella
I use maven. So I put this jar as scope provided that meaning that this jar
is provided for the environment where I put the WAR.

Now, you doesn't need the jar to compile because you use it at runtime, so
you can compile your application without the jar in your classpath. Then
delete this jar in the classpath and you don't have problem

Juan

PD: Sorry my english

2011/3/17 Erel Segal 

> I did 3 and it worked.
>
> But I still wonder, do I really have to manually delete this jar
> whenever I upload my application to Tomcat? Or is there a better way?
>
> On 17 מרץ, 13:35, Juan Pablo Gardella 
> wrote:
> > Try this:
> >
> > 1) Verify if you put the mysql-connector-java-5.1.15-bin.jar in correct
> > place. Seehttp://
> tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html.
> >
> > 2) What version of mysql you use? Is the driver for this version? If yes
> > perhaps the jar is corrupt. Try download it again
> >
> > 3) Delete mysql-connector-java-5.1.15-bin.jar from WEB-INF/lib/ if you
> have
> > in your war.
> >
> > Juan
> >
> > 2011/3/17 Erel Segal 
> >
> > > It doesn't work at Tomcat either, but I don't know if the problems are
> > > related. This is what I did regarding Tomcat:
> >
> > > * I put the file "mysql-connector-java-5.1.15-bin.jar" in Tomcat's
> > > lib/ folder;
> >
> > > * I edited the file conf/context.xml to declare a resource:
> > > 
> > >WEB-INF/web.xml
> > > > > type="javax.sql.DataSource"
> > >   maxActive="100" maxIdle="30" maxWait="1"
> > >   username="[username]" password="[password]"
> > > driverClassName="com.mysql.jdbc.Driver"
> > >   url="jdbc:mysql://localhost:3306/gwtchat"/>
> > > 
> >
> > > * I edited my application's web.xml file to declare a resource:
> >
> > > 
> > >  
> > >chatroom
> > >gwtchat.server.ChatRoomServiceImpl
> > >  
> > >  
> > >chatroom
> > >/gwtchat/chatroom
> > >  
> > >  
> > >chatroom
> > >/wizardofoz/chatroom
> > >  
> > >  
> > >  DB Connection
> > >  jdbc/TestDB
> > >  javax.sql.DataSource
> > >  Container
> > >  
> > > 
> >
> > > * I restarted Tomcat.
> >
> > > Now, in the Tomcat log file, I get the following exception:
> > > "No suitable driver found for jdbc:mysql://localhost:3306/gwtchat?..."
> >
> > > On 15 מרץ, 13:16, Juan Pablo Gardella 
> > > wrote:
> > > > It seems that your classpath is good. When you said:
> >
> > > > "But then I restarted the server (from the eclipse "development
> pane"),
> > > > and I started getting errors saying that the server cannot find a
> > > > driver for jdbc:mysql connection!"
> >
> > > > You want to "deploy" the app in a servlet container?. Try make a war
> and
> > > put
> > > > in it and test. Tell me if the error persist
> >
> > > > Juan
> >
> > > > 2011/3/15 Erel Segal 
> >
> > > > > Here it is:
> >
> > > > > 
> > > > > 
> > > > >
> > > > > path="test"/>
> > > > > > > > > path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
> > > > > > > > > path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
> > > > > path="/
> > > > > GeniusBI"/>
> > > > > > > path="/home//workspace/gwtchat/
> > > > > war/WEB-INF/lib/mysql-connector-java-5.1.15-bin.jar"/>
> > > > >
> > > > > 
> >
> > > > > On 9 מרץ, 18:49, Juan Pablo Gardella 
> > > > > wrote:
> > > > > > Is classpath error problem. Show the .classpath file
> >
> > > > > > Juan
> >
> > > > > > 2011/3/9 Erel Segal 
> >
> > > > > > > I added a mysql server to the default GWT application. I put
> the
> > > mysql
> > > > > > > connector jar in the lib folder under WEBINF, and also added it
> to
> > > the
> > > > > > > build path. I ran the web application in development mode and
> it
> > > > > > > worked fine.
> >
> > > > > > > But then I restarted the server (from the eclipse "development
> > > pane"),
> > > > > > > and I started getting errors saying that the server cannot find
> a
> > > > > > > driver for jdbc:mysql connection!
> >
> > > > > > > Can you please help me?
> >
> > > > > > > --
> > > > > > > You received this message because you are subscribed to the
> Google
> > > > > Groups
> > > > > > > "Google Web Toolkit" group.
> > > > > > > To post to this group, send email to
> > > > > google-web-toolkit@googlegroups.com.
> > > > > > > To unsubscribe from this group, send email to
> > > > > > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > > > > > For more options, visit this group at
> > > > > > >http://groups.google.com/group/google-web-toolkit?hl=en.
> >
> > > > > --
> > > > > You received this message because you are subscribed to the Google
> > > Groups
> > > > > "Google Web Toolkit" group.
> > > > > To post to this group, send email to
> > > google-web-toolkit@googlegroups.com.
> > > > > To unsubscribe from this group, send email to
> > > > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > > > For more options, visit this group at
> > > > >http://groups.google.com/group/google-web-toolkit?hl=en.
> >
> > > --
> > > Y

Re: MySQL server in development mode

2011-03-17 Thread Erel Segal
I did 3 and it worked.

But I still wonder, do I really have to manually delete this jar
whenever I upload my application to Tomcat? Or is there a better way?

On 17 מרץ, 13:35, Juan Pablo Gardella 
wrote:
> Try this:
>
> 1) Verify if you put the mysql-connector-java-5.1.15-bin.jar in correct
> place. Seehttp://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html.
>
> 2) What version of mysql you use? Is the driver for this version? If yes
> perhaps the jar is corrupt. Try download it again
>
> 3) Delete mysql-connector-java-5.1.15-bin.jar from WEB-INF/lib/ if you have
> in your war.
>
> Juan
>
> 2011/3/17 Erel Segal 
>
> > It doesn't work at Tomcat either, but I don't know if the problems are
> > related. This is what I did regarding Tomcat:
>
> > * I put the file "mysql-connector-java-5.1.15-bin.jar" in Tomcat's
> > lib/ folder;
>
> > * I edited the file conf/context.xml to declare a resource:
> > 
> >    WEB-INF/web.xml
> >     > type="javax.sql.DataSource"
> >               maxActive="100" maxIdle="30" maxWait="1"
> >               username="[username]" password="[password]"
> > driverClassName="com.mysql.jdbc.Driver"
> >               url="jdbc:mysql://localhost:3306/gwtchat"/>
> > 
>
> > * I edited my application's web.xml file to declare a resource:
>
> > 
> >  
> >    chatroom
> >    gwtchat.server.ChatRoomServiceImpl
> >  
> >  
> >    chatroom
> >    /gwtchat/chatroom
> >  
> >  
> >    chatroom
> >    /wizardofoz/chatroom
> >  
> >  
> >      DB Connection
> >      jdbc/TestDB
> >      javax.sql.DataSource
> >      Container
> >  
> > 
>
> > * I restarted Tomcat.
>
> > Now, in the Tomcat log file, I get the following exception:
> > "No suitable driver found for jdbc:mysql://localhost:3306/gwtchat?..."
>
> > On 15 מרץ, 13:16, Juan Pablo Gardella 
> > wrote:
> > > It seems that your classpath is good. When you said:
>
> > > "But then I restarted the server (from the eclipse "development pane"),
> > > and I started getting errors saying that the server cannot find a
> > > driver for jdbc:mysql connection!"
>
> > > You want to "deploy" the app in a servlet container?. Try make a war and
> > put
> > > in it and test. Tell me if the error persist
>
> > > Juan
>
> > > 2011/3/15 Erel Segal 
>
> > > > Here it is:
>
> > > > 
> > > > 
> > > >        
> > > >        
> > > >         > > > path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
> > > >         > > > path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
> > > >        
> > > >         > path="/home//workspace/gwtchat/
> > > > war/WEB-INF/lib/mysql-connector-java-5.1.15-bin.jar"/>
> > > >        
> > > > 
>
> > > > On 9 מרץ, 18:49, Juan Pablo Gardella 
> > > > wrote:
> > > > > Is classpath error problem. Show the .classpath file
>
> > > > > Juan
>
> > > > > 2011/3/9 Erel Segal 
>
> > > > > > I added a mysql server to the default GWT application. I put the
> > mysql
> > > > > > connector jar in the lib folder under WEBINF, and also added it to
> > the
> > > > > > build path. I ran the web application in development mode and it
> > > > > > worked fine.
>
> > > > > > But then I restarted the server (from the eclipse "development
> > pane"),
> > > > > > and I started getting errors saying that the server cannot find a
> > > > > > driver for jdbc:mysql connection!
>
> > > > > > Can you please help me?
>
> > > > > > --
> > > > > > You received this message because you are subscribed to the Google
> > > > Groups
> > > > > > "Google Web Toolkit" group.
> > > > > > To post to this group, send email to
> > > > google-web-toolkit@googlegroups.com.
> > > > > > To unsubscribe from this group, send email to
> > > > > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > > > > For more options, visit this group at
> > > > > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups
> > > > "Google Web Toolkit" group.
> > > > To post to this group, send email to
> > google-web-toolkit@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Web Toolkit" group.
> > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-web-toolkit+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-

Re: MySQL server in development mode

2011-03-17 Thread Juan Pablo Gardella
Try this:

1) Verify if you put the mysql-connector-java-5.1.15-bin.jar in correct
place. See http://tomcat.apache.org/tomcat-6.0-doc/class-loader-howto.html.

2) What version of mysql you use? Is the driver for this version? If yes
perhaps the jar is corrupt. Try download it again

3) Delete mysql-connector-java-5.1.15-bin.jar from WEB-INF/lib/ if you have
in your war.

Juan

2011/3/17 Erel Segal 

> It doesn't work at Tomcat either, but I don't know if the problems are
> related. This is what I did regarding Tomcat:
>
> * I put the file "mysql-connector-java-5.1.15-bin.jar" in Tomcat's
> lib/ folder;
>
> * I edited the file conf/context.xml to declare a resource:
> 
>WEB-INF/web.xml
> type="javax.sql.DataSource"
>   maxActive="100" maxIdle="30" maxWait="1"
>   username="[username]" password="[password]"
> driverClassName="com.mysql.jdbc.Driver"
>   url="jdbc:mysql://localhost:3306/gwtchat"/>
> 
>
> * I edited my application's web.xml file to declare a resource:
>
> 
>  
>chatroom
>gwtchat.server.ChatRoomServiceImpl
>  
>  
>chatroom
>/gwtchat/chatroom
>  
>  
>chatroom
>/wizardofoz/chatroom
>  
>  
>  DB Connection
>  jdbc/TestDB
>  javax.sql.DataSource
>  Container
>  
> 
>
> * I restarted Tomcat.
>
> Now, in the Tomcat log file, I get the following exception:
> "No suitable driver found for jdbc:mysql://localhost:3306/gwtchat?..."
>
>
>
> On 15 מרץ, 13:16, Juan Pablo Gardella 
> wrote:
> > It seems that your classpath is good. When you said:
> >
> > "But then I restarted the server (from the eclipse "development pane"),
> > and I started getting errors saying that the server cannot find a
> > driver for jdbc:mysql connection!"
> >
> > You want to "deploy" the app in a servlet container?. Try make a war and
> put
> > in it and test. Tell me if the error persist
> >
> > Juan
> >
> > 2011/3/15 Erel Segal 
> >
> > > Here it is:
> >
> > > 
> > > 
> > >
> > >
> > > > > path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
> > > > > path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
> > >
> > > path="/home//workspace/gwtchat/
> > > war/WEB-INF/lib/mysql-connector-java-5.1.15-bin.jar"/>
> > >
> > > 
> >
> > > On 9 מרץ, 18:49, Juan Pablo Gardella 
> > > wrote:
> > > > Is classpath error problem. Show the .classpath file
> >
> > > > Juan
> >
> > > > 2011/3/9 Erel Segal 
> >
> > > > > I added a mysql server to the default GWT application. I put the
> mysql
> > > > > connector jar in the lib folder under WEBINF, and also added it to
> the
> > > > > build path. I ran the web application in development mode and it
> > > > > worked fine.
> >
> > > > > But then I restarted the server (from the eclipse "development
> pane"),
> > > > > and I started getting errors saying that the server cannot find a
> > > > > driver for jdbc:mysql connection!
> >
> > > > > Can you please help me?
> >
> > > > > --
> > > > > You received this message because you are subscribed to the Google
> > > Groups
> > > > > "Google Web Toolkit" group.
> > > > > To post to this group, send email to
> > > google-web-toolkit@googlegroups.com.
> > > > > To unsubscribe from this group, send email to
> > > > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > > > For more options, visit this group at
> > > > >http://groups.google.com/group/google-web-toolkit?hl=en.
> >
> > > --
> > > You received this message because you are subscribed to the Google
> Groups
> > > "Google Web Toolkit" group.
> > > To post to this group, send email to
> google-web-toolkit@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: MySQL server in development mode

2011-03-17 Thread Erel Segal
OK, the problem with Tomcat was solved when I deleted  mysql-connector-
java-5.1.15-bin.jar from WEB-INF/lib under webapps. It probably should
be only in the Tomcat lib. Very strange, as it means I cannot just
copy my project and paste it into webapps.


On 17 מרץ, 09:42, Erel Segal  wrote:
> It doesn't work at Tomcat either, but I don't know if the problems are
> related. This is what I did regarding Tomcat:
>
> * I put the file "mysql-connector-java-5.1.15-bin.jar" in Tomcat's
> lib/ folder;
>
> * I edited the file conf/context.xml to declare a resource:
> 
>     WEB-INF/web.xml
>      type="javax.sql.DataSource"
>                maxActive="100" maxIdle="30" maxWait="1"
>                username="[username]" password="[password]"
> driverClassName="com.mysql.jdbc.Driver"
>                url="jdbc:mysql://localhost:3306/gwtchat"/>
> 
>
> * I edited my application's web.xml file to declare a resource:
>
> 
>   
>     chatroom
>     gwtchat.server.ChatRoomServiceImpl
>   
>   
>     chatroom
>     /gwtchat/chatroom
>   
>   
>     chatroom
>     /wizardofoz/chatroom
>   
>   
>       DB Connection
>       jdbc/TestDB
>       javax.sql.DataSource
>       Container
>   
> 
>
> * I restarted Tomcat.
>
> Now, in the Tomcat log file, I get the following exception:
> "No suitable driver found for jdbc:mysql://localhost:3306/gwtchat?..."
>
> On 15 מרץ, 13:16, Juan Pablo Gardella 
> wrote:
>
> > It seems that your classpath is good. When you said:
>
> > "But then I restarted the server (from the eclipse "development pane"),
> > and I started getting errors saying that the server cannot find a
> > driver for jdbc:mysql connection!"
>
> > You want to "deploy" the app in a servlet container?. Try make a war and put
> > in it and test. Tell me if the error persist
>
> > Juan
>
> > 2011/3/15 Erel Segal 
>
> > > Here it is:
>
> > > 
> > > 
> > >        
> > >        
> > >         > > path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
> > >         > > path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
> > >        
> > >         > > path="/home//workspace/gwtchat/
> > > war/WEB-INF/lib/mysql-connector-java-5.1.15-bin.jar"/>
> > >        
> > > 
>
> > > On 9 מרץ, 18:49, Juan Pablo Gardella 
> > > wrote:
> > > > Is classpath error problem. Show the .classpath file
>
> > > > Juan
>
> > > > 2011/3/9 Erel Segal 
>
> > > > > I added a mysql server to the default GWT application. I put the mysql
> > > > > connector jar in the lib folder under WEBINF, and also added it to the
> > > > > build path. I ran the web application in development mode and it
> > > > > worked fine.
>
> > > > > But then I restarted the server (from the eclipse "development pane"),
> > > > > and I started getting errors saying that the server cannot find a
> > > > > driver for jdbc:mysql connection!
>
> > > > > Can you please help me?
>
> > > > > --
> > > > > You received this message because you are subscribed to the Google
> > > Groups
> > > > > "Google Web Toolkit" group.
> > > > > To post to this group, send email to
> > > google-web-toolkit@googlegroups.com.
> > > > > To unsubscribe from this group, send email to
> > > > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > > > For more options, visit this group at
> > > > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > > --
> > > You received this message because you are subscribed to the Google Groups
> > > "Google Web Toolkit" group.
> > > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: MySQL server in development mode

2011-03-17 Thread Erel Segal
It doesn't work at Tomcat either, but I don't know if the problems are
related. This is what I did regarding Tomcat:

* I put the file "mysql-connector-java-5.1.15-bin.jar" in Tomcat's
lib/ folder;

* I edited the file conf/context.xml to declare a resource:

WEB-INF/web.xml



* I edited my application's web.xml file to declare a resource:


  
chatroom
gwtchat.server.ChatRoomServiceImpl
  
  
chatroom
/gwtchat/chatroom
  
  
chatroom
/wizardofoz/chatroom
  
  
  DB Connection
  jdbc/TestDB
  javax.sql.DataSource
  Container
  


* I restarted Tomcat.

Now, in the Tomcat log file, I get the following exception:
"No suitable driver found for jdbc:mysql://localhost:3306/gwtchat?..."



On 15 מרץ, 13:16, Juan Pablo Gardella 
wrote:
> It seems that your classpath is good. When you said:
>
> "But then I restarted the server (from the eclipse "development pane"),
> and I started getting errors saying that the server cannot find a
> driver for jdbc:mysql connection!"
>
> You want to "deploy" the app in a servlet container?. Try make a war and put
> in it and test. Tell me if the error persist
>
> Juan
>
> 2011/3/15 Erel Segal 
>
> > Here it is:
>
> > 
> > 
> >        
> >        
> >         > path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
> >         > path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
> >        
> >        
> >        
> > 
>
> > On 9 מרץ, 18:49, Juan Pablo Gardella 
> > wrote:
> > > Is classpath error problem. Show the .classpath file
>
> > > Juan
>
> > > 2011/3/9 Erel Segal 
>
> > > > I added a mysql server to the default GWT application. I put the mysql
> > > > connector jar in the lib folder under WEBINF, and also added it to the
> > > > build path. I ran the web application in development mode and it
> > > > worked fine.
>
> > > > But then I restarted the server (from the eclipse "development pane"),
> > > > and I started getting errors saying that the server cannot find a
> > > > driver for jdbc:mysql connection!
>
> > > > Can you please help me?
>
> > > > --
> > > > You received this message because you are subscribed to the Google
> > Groups
> > > > "Google Web Toolkit" group.
> > > > To post to this group, send email to
> > google-web-toolkit@googlegroups.com.
> > > > To unsubscribe from this group, send email to
> > > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > > For more options, visit this group at
> > > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Web Toolkit" group.
> > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-web-toolkit+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: MySQL server in development mode

2011-03-15 Thread Juan Pablo Gardella
It seems that your classpath is good. When you said:

"But then I restarted the server (from the eclipse "development pane"),
and I started getting errors saying that the server cannot find a
driver for jdbc:mysql connection!"

You want to "deploy" the app in a servlet container?. Try make a war and put
in it and test. Tell me if the error persist

Juan




2011/3/15 Erel Segal 

> Here it is:
>
> 
> 
>
>
> path="com.google.gwt.eclipse.core.GWT_CONTAINER"/>
> path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
>
>
>
> 
>
> On 9 מרץ, 18:49, Juan Pablo Gardella 
> wrote:
> > Is classpath error problem. Show the .classpath file
> >
> > Juan
> >
> > 2011/3/9 Erel Segal 
> >
> > > I added a mysql server to the default GWT application. I put the mysql
> > > connector jar in the lib folder under WEBINF, and also added it to the
> > > build path. I ran the web application in development mode and it
> > > worked fine.
> >
> > > But then I restarted the server (from the eclipse "development pane"),
> > > and I started getting errors saying that the server cannot find a
> > > driver for jdbc:mysql connection!
> >
> > > Can you please help me?
> >
> > > --
> > > You received this message because you are subscribed to the Google
> Groups
> > > "Google Web Toolkit" group.
> > > To post to this group, send email to
> google-web-toolkit@googlegroups.com.
> > > To unsubscribe from this group, send email to
> > > google-web-toolkit+unsubscr...@googlegroups.com.
> > > For more options, visit this group at
> > >http://groups.google.com/group/google-web-toolkit?hl=en.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: MySQL server in development mode

2011-03-15 Thread Erel Segal
Here it is:












On 9 מרץ, 18:49, Juan Pablo Gardella 
wrote:
> Is classpath error problem. Show the .classpath file
>
> Juan
>
> 2011/3/9 Erel Segal 
>
> > I added a mysql server to the default GWT application. I put the mysql
> > connector jar in the lib folder under WEBINF, and also added it to the
> > build path. I ran the web application in development mode and it
> > worked fine.
>
> > But then I restarted the server (from the eclipse "development pane"),
> > and I started getting errors saying that the server cannot find a
> > driver for jdbc:mysql connection!
>
> > Can you please help me?
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Web Toolkit" group.
> > To post to this group, send email to google-web-toolkit@googlegroups.com.
> > To unsubscribe from this group, send email to
> > google-web-toolkit+unsubscr...@googlegroups.com.
> > For more options, visit this group at
> >http://groups.google.com/group/google-web-toolkit?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: MySQL server in development mode

2011-03-09 Thread Juan Pablo Gardella
Is classpath error problem. Show the .classpath file

Juan

2011/3/9 Erel Segal 

> I added a mysql server to the default GWT application. I put the mysql
> connector jar in the lib folder under WEBINF, and also added it to the
> build path. I ran the web application in development mode and it
> worked fine.
>
> But then I restarted the server (from the eclipse "development pane"),
> and I started getting errors saying that the server cannot find a
> driver for jdbc:mysql connection!
>
> Can you please help me?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to google-web-toolkit@googlegroups.com.
> To unsubscribe from this group, send email to
> google-web-toolkit+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



MySQL server in development mode

2011-03-09 Thread Erel Segal
I added a mysql server to the default GWT application. I put the mysql
connector jar in the lib folder under WEBINF, and also added it to the
build path. I ran the web application in development mode and it
worked fine.

But then I restarted the server (from the eclipse "development pane"),
and I started getting errors saying that the server cannot find a
driver for jdbc:mysql connection!

Can you please help me?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.