Hi,
- Im using a VPS server with Windows Server R12
- installed the B4J and compiled the JRCD2 on it, got a fixed IP. In the other hand i create a Mysql table in another of my hosting provider.
- put the address of W Server to allow Mysql connection to. (Wilcard is enabled too) in the another hosting provider (Mysql database location)
- Installed wamp server too
- Tested on VPS the local ip to see if it works 127.0.0.1:17178/test (work fine)
- Tested on VPS the local ip to see if it works 127.0.0.1:17178/rcd (access denied)
- On one of my programming computer launched the b4a client example (thats reach succesfully the jrdc server)
I saw some docs in Stackoverflow and see the string connector may be the trouble
In the example the msyql connector is :
JdbcUrl=jdbc:mysql://50.xx.13x.79:3306/rdc?characterEncoding=utf8
But in Stack say this string connector need be
jdbc:mysql://localhost:3306/dbname
Need i do?
JdbcUrl=jdbc:mysql://50.xx.13x.79:3306/mydatabasename?characterEncoding=utf8
and user and pass?
and the other stuff may be the name of the connector AdditionalJar: mysql-connector-java-5.1.27-bin
i just found mysql-connector-java-5.1.27.jar and renamed as up (a copy on library) and works i think so.
mysql-connector-java-5.1.27-bin.jar
Well if need more info.
Thanks to all