I am facing problem in instantiating TaminoClient.
the code which i am running is as
import org.w3c.dom.;
import com.softwareag.tamino.API.dom.;
public class DemoQuery {
public static void main(String a) {
try
{
TaminoClient tamino = new TaminoClient(“http://localhost/tamino/manoj_database”);
}
catch(Throwable th) {
System.out.println("error is " + th);
th.printStackTrace(System.out);
}
}
}
each time when i try to run this code i am getting this exception
Fatal parse error in (internal) at line 1, column 0:
no document element
Please Help in coming out of this
Thanks in advance