Hi all, I have a question concerning calling the runRoyaltyFree method: Am I allowed to call this method more times? Can it happen I get this exception when I...
Hello, Does anybody of you know how can I monitor memory used by COM objects when using jacoZoom? I am using jacoZoom from a servlet. The servlet container...
Hi, in order to make sure that you call it only once, do it like that: if(!com.inzoom.comjni.Dll.isLoaded()) com.inzoom.comjni.Dll.runRoyaltyFree(..); Stefan...
Hello, My problem: I have a servlet using jacoZoom to access Primavera P3. The servlet is running in Tomcat as a Window service and the process is consuming...
Hi, as long as you don't explicitly release the COM objects you are using, you rely on the garbage collector to call the finalizer of the COM wrappers. Thus...
How would we save documents as filtered HTML, not straight HTML, using jacoZoom and Word 2003? We currently use WdSaveFormat.wsFormatHTML, but we run into...
How do I construct the JCW class- what is appropriate constructor and what are the input params? I have an in process Com dll. What is the value of the comPtr?...
Hello, Is it possible to access jacoZoom-generated wrappers from multiple Java threads? Let's say I have a thread which creates a session, another one using...
Hi, try the following: From Word, start recording a macro, then perform the operation manually, then stop the macro recorder and look at the generated VB-code....
Hi, pls have a look at the document Wrappers.html which is included with the jacoZoom-download. Only wrappers for coclass-types have a constructor. The...
Hi, generally this is possible. jacoZoom by default runs as freethreaded COM-client. Every thread which enters izmjnicom.dll, is initialized as MTA-thread. But...
Stefan, I have the coclass that has the listener/adapter and all that- that part is OK. This is a different class. By constructor I meant the gettter methods...
Hi, OK, I can do it. Until now I was using jacoZoom 2002-02-25 and there I did not have a problem with multiple threads. I was using one thread to initilize...
Hi, you don't need the _EnterpriseCtiEvents interface. All the methods, which are defined by it, are included with the ICtiClientAllInOne interface. Stefan ......
Hi, no jacoZoom doesn't maintain a thread-list. It just calls CoInitializeEx on a new thread and CoUninitialize before the thread dies. The older version was...
Hello, I have tried to execute the WMI example (http://groups.yahoo.com/group/jacoZoom/files/stefan/samples/) and I had the following error message: Hit...
Hello Stefan, Thanks, it is working now. I would like to know if someone has another example that we can obtain the instances from a WMI class. Thank you in...
Hi, I don't know WMI, but if you have a VB or C++ sample or an MSDN topic which shows what you are intending to do, I can help you port this to jacoZoom. ...
When i try to use any com.inzoom class the a message box with following message appears - jacoZoom unregistered Evaluation license expired. Please consider...
You must purchase a license and then register jacoZoom with the license keys. If you have installed the latest jacoZoom version 1.5, then you have a "Register...
We (Emageon) have already purchased the license but and we use the previous version. I am using Python script to invoke jacozoom. I check if the Dll is loaded....
Thanks, this suggestion got us further. We uncovered that the FileFormat parameter when a filtered HTML document is saved has the value wdFormatFilteredHTML....
Hi, seems you used an older Word-version for wrapper generation. If you use Word 11 from Office2003, then this enum is present. Anyway you can just use the...
Hello: I am sending email from my Java application via Outlook with sendEmail(namespace, mailTo, subject, text); The mail goes into Outlook's outbox and stays...
Sorry: forgot to mention to this sendMail came from either one of your examples or online correspondence. static void sendEmail(_NameSpace namespace, String...
I am using jacoZoom to communicate with a MFC COM server. Sometimes the COM server severs the link before my Java application can remove the event listeners. ...
Hi, I have a VB script program (see a piece of this program below) and I would like to translate this VB script program to java/jacozoom program. I have...