Jawin NULL GIT Peer problem
This is my class that accesses a COM tlb through jawin.
package com.teamion.iscope.proxy;
publicclass Test
{
publicstaticvoid main(String[] args)
{
IScan m_scan =new IScan();
int[] port ={0};
int success = 0;
try
{
success = m_scan.Connect(port);
}catch(Exception e)
{
System.out.println(e.getMessage());
}
if (success < 0)
{
System.out.println("Cant connect");
}
else
{
System.out.println("Connected");
}
}
}
The e.getMessage() prints out 80000ffff: NULL GIT peer
Dont have a clue what that is !! I have not connected with the device yet. I am working offine.
Any kind of help will be appreciated, thanks !!

