Error accessing method in 3rd party dll

already asked for help a few weeks ago but no one answered and i still wasn't able to figure out what the problem...
i have a 3rd party dll and im trying to access some methods (USING JNI)- i have no problem accessing methods with no parameters and they work fine but a method with parameters just wwont work.
i guess that its something with my syntax - probably incorrect data type when converting from java type to native type...
i dont have any previous expirience with c so help would be appriciated...
heres my java code:
package pavel2.javay;
class Test {
    native String VersionGet();
    native String loadDll();
    native String LogInMT4(int account,String  pass,String server,String a,String v,String c,String d);
    static {
        System.loadLibrary("pavel2");
    public static void main(String args[]) {
        Test t = new Test();
        System.out.println(t.loadDll());
        System.out.println(t.LogInMT4(230622,"qd1bvvs","Orion-DEMO","","","",""));
}and the dll wrapper:
#include <windows.h>
#include <C:\\Program Files\\Java\\jdk1.6.0_10\\include\\jni.h>
#include <C:\\Program Files\\Java\\jdk1.6.0_10\\include\\win32\\jni_md.h>
typedef char*   (*LogIn_MT4)( const int login, const char *password, const char *server, const char *proxyserver,
               const char *proxytype, const char *proxylogin, const char *proxypassword);
HINSTANCE hOle2Dll;
JNIEXPORT jstring JNICALL Java_pavel2_javay_Test_loadDll(JNIEnv * env, jobject jobj){
     hOle2Dll = LoadLibrary(TEXT("D:\\pavel2\\tzmt4api.dll"));
     return  (*env)->NewStringUTF(env, "tzmt4api.dll loaded!!");
     /*if (OleInitialize(NULL) == S_OK)
          if ( hOle2Dll >= 32 )
               //FreeLibrary ( hOle2Dll ) ;
JNIEXPORT jstring JNICALL Java_pavel2_javay_Test_LogInMT4(JNIEnv * env, jobject jobj,jint login, jstring password, jstring server,jstring proxyserver,jstring proxytype,jstring proxylogin,jstring proxypassword){
               LogIn_MT4 fnc ;
               fnc = (LogIn_MT4)GetProcAddress ( hOle2Dll , "LogIn_MT4" ) ;
               if ( fnc == NULL )
                    MessageBox(NULL, TEXT("Error loading Method"), TEXT("Error"), MB_OK);
               else
               const char *pass = (*env)->GetStringUTFChars(env, password, NULL);
               const char *ser = (*env)->GetStringUTFChars(env, server, NULL);
               const char *proxyserv = (*env)->GetStringUTFChars(env, proxyserver, NULL);
               const char *proxyt = (*env)->GetStringUTFChars(env, proxytype, NULL);
               const char *proxylog = (*env)->GetStringUTFChars(env, proxylogin, NULL);
               const char *proxypass = (*env)->GetStringUTFChars(env, proxypassword, NULL);
               int a=fnc(login, pass, ser, proxyserv,proxyt,proxylog,proxypass);
               (*env)->ReleaseStringUTFChars(env, password, pass);
               (*env)->ReleaseStringUTFChars(env, server, ser);
               (*env)->ReleaseStringUTFChars(env, proxyserver, proxyserv);
               (*env)->ReleaseStringUTFChars(env, proxytype, proxyt);
               (*env)->ReleaseStringUTFChars(env, proxylogin, proxylog);
               (*env)->ReleaseStringUTFChars(env, proxypassword, proxypass);
               //return  (*env)->NewStringUTF(env, empty);
               return  (*env)->NewStringUTF(env, "logged");
                         //int c = fnc(login, *password, *server, "", "", "", "");
BOOL APIENTRY DllMain( HMODULE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved
     switch (ul_reason_for_call)
     case DLL_PROCESS_ATTACH:
     case DLL_THREAD_ATTACH:
     case DLL_THREAD_DETACH:
     case DLL_PROCESS_DETACH:
          //todo: unregister class here
          break;
     return TRUE;
}this is the output:
tzmt4api.dll loaded!!
# An unexpected error has been detected by Java Runtime Environment:
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xcccccccc, pid=3792, tid=3824
# Java VM: Java HotSpot(TM) Client VM (11.0-b15 mixed mode, sharing windows-x86)
# Problematic frame:
# C 0xcccccccc
# An error report file with more information is saved as:
# C:\Program Files\TradeZone\TZMT4APInew\Work\hs_err_pid3792.log
# If you would like to submit a bug report, please visit:
# http://java.sun.com/webapps/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
Process finished with exit code 1
p.s - it looks like the login method works but when returning to java the VM crashes
can anyone help me?

jschell - tried this already and got the same ..
ejp - i cant do this bucause i dont have a .lib and this proccess can run only on windows unfortunately...
my problem is that i dont know the how to create the correct type for the method:
this is the signature:
typedef int  (*LogIn_MT4)( const int login, const char *password, const char *server, const char *proxyserver,
               const char *proxytype, const char *proxylogin, const char *proxypassword);how do i create in c this var types?
int a=fnc(1531, "asas", "asd", "","","","");how do i create
const char *xxx type? and its okay for the int just to write a number or i also need to declare it?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • SharePoint Timer Jobs and 3rd Party DLLs

    I have a custom built timer job that references a third party DLL.  Currently, I have the 3rd party DLL stored in the GAC along with the timer job and all works fine.  Our client however, does not want the third party DLL in the GAC.  As such
    I want to put it in the bin folder associated with the SharePoint Central admin port.
    When I deploy the solution, I do see that the third party DLL was copied to the bin folder.  I did restart the SharePoint timer service. When the timer job runs, it complains that it cannot find the third party DLL.
    Is it possible for a timer job running in the GAC to access DLLs in the bin folder?  If so, do I need to modify CAS policies in order for it to work?
    Saul

    CAS policies are deprecated (and all solutions in 2013 are Full Trust). I believe the DLL needs to be in the GAC.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Deployment of Java App with 3rd party dll

    Hi,
    I am developing one application on windows environment. I am using netbeans 6.0 as my IDE. in this application I have to use 3rd party dll along with one 3rd party jar library. this jar library hides all the implementation of the native methods. So i don't have to use native methods in my application directly which means that I just need to call the java classes of the vendors jar library. I am able to execute the application in Netbeans. but I am not able to deploy the application. I want to know that how should i deploy my application which will be simple jar with vendors library and the dlls, so that user just have to run the application just through the command line( java -jar myapp.jar)

    no you didn't understood the question. Wrong.
    I understood the question.
    You however didn't understand the response.
    So let me expand on it.
    The library consists of java and dlls. There is absolutely no way that it will run on a client box without the dlls. So they must be delivered in some way.
    Now I suppose they could have encrypted/packed the dlls in some fashion but that isn't likely. And if it is then the java code of the library is responsible for loading them and there will be nothing you can do about it.
    Excluding that.....
    Shared libraries can ONLY be loaded via one of the following methods.
    1. The dlls must be in the PATH environment of the application
    2. The path must be explicitly provided in the application.
    For the libraries you have one of the following will be true
    1. The dlls must be in the PATH environment of the application
    2. The path must be explicitly provided from your code and passed to the library code.
    3. You must explicitly load the dlls in your code and hope that the library code is smart enough to deal with it.
    For option 2 the library must provide a method for you to pass a path.
    For option 3 the library code must be written to support this.
    For option 1 you will need to modify the client in some way to provide for the PATH (which you can do in various ways, none of which have anything to do with Java specifically although 'WebStart' or whatever it is called might do it.)

  • Error while exporting the 3rd party technical system in SLD

    Dear all,
        We're currently using PI 7.0. When trying to export the technical system in SLD, after the exporting, the IE jumps to the download page automatically, but there's a exclamation mark with no text info. I've tried to create a new 3rd-party technical system and try to export, the same thing happened.
        It happened in both our develop and our production PI system.
        Also I've found following error info in SLD server log:
    Log Record Details
    #33 04/19/2007 10:07:38.573 [SAPEngine_Application_Thread[impl:3]_33]
    ERROR com.sap.sld.wd.technicalsystem.ExportView: null
    Thrown:
    java.lang.UnsupportedOperationException
    at java.util.AbstractCollection.add(AbstractCollection.java:216)
    at java.util.AbstractCollection.addAll(AbstractCollection.java:319)
    at
    com.sap.lcr.webui.admin.ImportExportControl.addAssociatorAndReferenceNames(ImportExportControl.java:1244)
    at com.sap.sld.wd.technicalsystem.ExportView.getBCSystemExportList
    (ExportView.java:285)
    at com.sap.sld.wd.technicalsystem.ExportView.getExport
    (ExportView.java:193)
    at com.sap.sld.wd.technicalsystem.wdp.InternalExportView.getExport
    (InternalExportView.java:137)
    at
    com.sap.sld.wd.technicalsystem.wdp.IPrivateExportView$IContextElement.wdGetObject(IPrivateExportView.java:208)
    at com.sap.tc.webdynpro.progmodel.context.AttributePointer.getObject
    (AttributePointer.java:158)
    at com.sap.tc.webdynpro.clientserver.data.DataContainer.getAndFormat
    (DataContainer.java:1092)
    at com.sap.tc.webdynpro.clientserver.data.DataContainer.getAndFormat
    (DataContainer.java:1064)
    at
    com.sap.tc.webdynpro.clientserver.uielib.standard.impl.FileDownload._getData(FileDownload.java:81)
    at
    com.sap.tc.webdynpro.clientserver.uielib.standard.uradapter.FileDownloadAdapter.getReference(FileDownloadAdapter.java:291)
    at com.sap.tc.ur.renderer.ie6.LinkRenderer.render(LinkRenderer.java:53)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.GridLayoutRenderer.renderGridLayoutCellFragment(GridLayoutRenderer.java:826)
    at
    com.sap.tc.ur.renderer.ie6.GridLayoutRenderer.renderGridLayoutRowFragment(GridLayoutRenderer.java:424)
    at
    com.sap.tc.ur.renderer.ie6.GridLayoutRenderer.renderGridLayoutFragment
    (GridLayoutRenderer.java:336)
    at com.sap.tc.ur.renderer.ie6.GridLayoutRenderer.render
    (GridLayoutRenderer.java:79)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at com.sap.tc.ur.renderer.ie6.GroupRenderer.renderGroupFragment
    (GroupRenderer.java:1184)
    at com.sap.tc.ur.renderer.ie6.GroupRenderer.render
    (GroupRenderer.java:74)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.FlowLayoutRenderer.renderFlowLayoutItemFragment(FlowLayoutRenderer.java:254)
    at
    com.sap.tc.ur.renderer.ie6.FlowLayoutRenderer.renderFlowLayoutFragment
    (FlowLayoutRenderer.java:210)
    at com.sap.tc.ur.renderer.ie6.FlowLayoutRenderer.render
    (FlowLayoutRenderer.java:49)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.ScrollContainerRenderer.renderScrollContainerFragment(ScrollContainerRenderer.java:619)
    at com.sap.tc.ur.renderer.ie6.ScrollContainerRenderer.render
    (ScrollContainerRenderer.java:74)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.ViewContainerRenderer.renderViewContainerFragment(ViewContainerRenderer.java:134)
    at com.sap.tc.ur.renderer.ie6.ViewContainerRenderer.render
    (ViewContainerRenderer.java:49)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.FlowLayoutRenderer.renderFlowLayoutItemFragment(FlowLayoutRenderer.java:254)
    at
    com.sap.tc.ur.renderer.ie6.FlowLayoutRenderer.renderFlowLayoutFragment
    (FlowLayoutRenderer.java:210)
    at com.sap.tc.ur.renderer.ie6.FlowLayoutRenderer.render
    (FlowLayoutRenderer.java:49)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.ScrollContainerRenderer.renderScrollContainerFragment(ScrollContainerRenderer.java:619)
    at com.sap.tc.ur.renderer.ie6.ScrollContainerRenderer.render
    (ScrollContainerRenderer.java:74)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.ViewContainerRenderer.renderViewContainerFragment(ViewContainerRenderer.java:134)
    at com.sap.tc.ur.renderer.ie6.ViewContainerRenderer.render
    (ViewContainerRenderer.java:49)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.ViewContainerRenderer.renderViewContainerFragment(ViewContainerRenderer.java:134)
    at com.sap.tc.ur.renderer.ie6.ViewContainerRenderer.render
    (ViewContainerRenderer.java:49)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.GridLayoutRenderer.renderGridLayoutCellFragment(GridLayoutRenderer.java:826)
    at
    com.sap.tc.ur.renderer.ie6.GridLayoutRenderer.renderGridLayoutRowFragment(GridLayoutRenderer.java:424)
    at
    com.sap.tc.ur.renderer.ie6.GridLayoutRenderer.renderGridLayoutFragment
    (GridLayoutRenderer.java:336)
    at com.sap.tc.ur.renderer.ie6.GridLayoutRenderer.render
    (GridLayoutRenderer.java:79)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.ur.renderer.ie6.ScrollContainerRenderer.renderScrollContainerFragment(ScrollContainerRenderer.java:619)
    at com.sap.tc.ur.renderer.ie6.ScrollContainerRenderer.render
    (ScrollContainerRenderer.java:74)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.UiWindowRenderer.render(UiWindowRenderer.java:52)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:434)
    at
    com.sap.tc.webdynpro.clientimpl.html.renderer.uielements.base.RenderManager.render(RenderManager.java:133)
    at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.sendHtml
    (HtmlClient.java:1039)
    at
    com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.fillDynamicTemplateContext(HtmlClient.java:455)
    at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.sendResponse
    (HtmlClient.java:1223)
    at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.sendResponse
    (HtmlClient.java:1179)
    at com.sap.tc.webdynpro.clientimpl.html.client.HtmlClient.sendResponse
    (HtmlClient.java:299)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.finishTasks
    (AbstractClient.java:173)
    at
    com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:313)
    at
    com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:753)
    at
    com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:705)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing
    (ClientSession.java:261)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:154)
    at
    com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent
    (DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost
    (DispatcherServlet.java:53)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet
    (HttpHandlerImpl.java:401)
    at
    com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet
    (RequestAnalizer.java:387)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet
    (RequestAnalizer.java:365)
    at
    com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle
    (RequestAnalizer.java:266)
    at com.sap.engine.services.httpserver.server.Client.handle
    (Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request
    (Processor.java:160)
    at
    com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run
    (MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run
    (ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute
    (SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run
    (SingleThread.java:170)
    Hope you can help us.
    Thanks and B'Rgds,
    YiNing

    not sure if it has relevance, but the SLD level transports will do nothing but create a CIM file which should be downloaded to your deskktop.
    1. Make sure that there are no Pop Up BLocker's acting on the XI server on your machine.
    2. Make sure that you have the download authorizations on your machine.
    Regards
    Bhavesh

  • Code Signing for 3rd Party DLLs in MPR certfication

    Dear Team,
    I am currently performing MPR test with my Web Application using Windows Server 2012 R2 platform.
    While verifiying test results, i got failed in the validating digital signature for 3rd party binaries(DLL).
    The DLLs are Ajaxcontroltoolkit.dll, interop.Excel.dll etc.,
    Whether Signed DLLs are exists for Ajax Libraries?? If Signed DLLs exists for Ajax Libraries, is it advisable to request Microsoft support team for getting Signed DLL through mail? (or)
    Can i include this point as a waiver in document during test results submission??
    Regarding Interop DLL's is it advisable to include DLL's in waiver request document??
    Kindly review and suggest comments

    Hello,
    When an MPR Test fails due only to 3rd party binaries, please create a Test Results Package, upload to MPR site, complete and send a waiver for review.
    List all failing binaries in the waiver, grouping by their respective owner.
    Thank you,

  • How do I access methods in third party ocx file and get a return response.

    How do I attach a button to a method of an ocx or active x file? Is the activex component available on the front panel?

    You should probably browse directly to the OCX file if the component isn't registered with the system. If it is compatible with the front panel, you can simply drop it into an ActiveX container on the front panel (which requires the OCX to be a control (???)). Otherwise, you can create an ActiveX reference, and browse to the OCX. This will allow you to create invoke and property nodes.
    If you have trouble browsing, please post again, but it should simply be a matter of selecting browse, and then browse in the submenu to get file dialog to point to the OCX file directly. One possibility is that even though the control is registered (which makes it show up in the selection dialog), it may not have an obvious name. It is also safer to point to the OCX fil
    e, as this prevents your code from breaking if the OCX is upgraded or otherwise altered.

  • 1231A Access Point and 3rd Party PoE Injector

    I have a TrendNet TPE-101I power injector and I'm trying to power a 1231A via PoE. The injector is 802.3af-compliant. Is there any way to make this work with a 1231 or do I need to go find a Cisco-branded injector for this model? I attempted to make a reverse polarity Cat5 cable yesterday, but that didn't seem to work. I am by no means a skilled cable-maker, so it may have been what I built. I crimped a standard 568B pinout on one side (WOr-Or-WGr-Bl-WBl-Gr-WBr-Br) and the following pinout on the other end: WOr-Or-WGr-WBr-Br-Gr-WBl-Bl. I know these APs were part of the nascent days of 802.3af, so given reverse polarity, what did I do wrong? Or is it simply not possible? -Chris

    Chris, it appears you need to make a cable that has "straight-thru" data but "crossover power" looking at your wire color description.
    I would suggest using two jacks with 24gauge wire between them instead of trying to crimp the RJ45 connectors for ease of rewiring.
    Sounds like you are adapt at making cables so try this:
    Between the jacks wire pins 1,2,3 & 6 together.
    Then wire pin 4 on jack 1 to pin 8 on the other and pin 5 on jack 1 to 7 on the other to cross the power. Then wire from jack 2 to 1 the same way.
    This should have the appearance of connecting the blue pins to the brown ones keeping the correct polarity.
    Good luck.
    Kevin

  • Password Remember Button does not function; Can't input 3rd Party Passwords for Social Networks/Emails.

    My "Remember" button doesn't work. Simple as that. The "Not Now"
    Button still works, and closes the pop-bar. Remember doesn't do anything.
    [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsLoginManager.js :: anonymous :: line 445" data: no]
    Occurs when trying to input 3rd Party extension passwords.
    I have no master password set, I have also read the "Password not remembered topic", and it didn't help.
    Error Console yields this:
    "'''Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless.
    Source File: https://support.mozilla.com/en-US/questions/new?product=desktop&category=d6&search=Password+Remeber+Button+does+not+function%3B+Can%27t+input+3rd+Party+Passwords+for+Social+Networks%2FEmails.&showform=1#question-form
    Line: 0'''"

    Okay, I have started Firefox in Safe Mode, and the Remember button still didn't work. After checking the error console, It had the following message again:
    "Error: uncaught exception: [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsLoginManager.js :: anonymous :: line 445" data: no]"
    After I Evaluated it (In the error console) it gave me a slightly different version:
    "Error: missing ; before statement
    Source File: javascript:%20Error:%20uncaught%20exception:%20[Exception...%20"'User%20canceled%20master%20password%20entry,%20login%20not%20added.'%20when%20calling%20method:%20[nsILoginManagerStorage::addLogin]"%20%20nsresult:%20"0x8057001e%20(NS_ERROR_XPC_JS_THREW_STRING)"%20%20location:%20"JS%20frame%20::%20file:///C:/Program%2520Files/Mozilla%2520Firefox/components/nsLoginManager.js%20::%20anonymous%20::%20line%20445"%20%20data:%20no]
    Line: 1, Column: 8
    Source Code:
    Error: uncaught exception: [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%2"
    I read the Troubleshooting extensions & Themes, but It didn't help.
    When I tried to read "http://kb.mozillazine.org/Password_Manager" I get a page that says:
    "ERROR
    The requested URL could not be retrieved
    While trying to retrieve the URL: http://kb.mozillazine.org/Password_Manager
    The following error was encountered:
    * Connection Failed
    The system returned:
    (110) Connection timed out
    The remote host or network may be down. Please try the request again.
    Your cache administrator is root. "
    Also, this error occurs in ALL 3rd Party extensions. It can't log me into E-Mail accounts, Facebook, Twitter, anything. The error message has a window title of [JAVASCRIPT APPLICATION] if that says anything.

  • Possible to control 3rd party plugin/palette?

    Is it possible to write something (JavaScript/COM programming/plugin) that has access to a 3rd party plugin/palette? I'm talking about XMPie uDirect. XMPie doesn't offer an official API for the plugin but I want to invoke a special action automatically that can be accessed only by the plugin's InDesign palette. I want some kind of automation.

    This won't work, sorry. The palette cannot be controlled through the menus... except showing/hiding it.
    I got the same idea with system events. It would be great to have a program that sniffs system events and gives information when I press a special button in the InDesign palette. The 3rd party plugin should be a kind of library like DLL that exports functions. Does anybody know a program that can monitor InDesign.exe with all its sub-processes, DLL handles and called DLL functions?
    [Edit:] I tried a DLL viewer which can open and show XMPie's plugin files XMPBackEnd5.apln and XMPFrontEnd5.apln (APLN = InDesign PlugIn). They seem to be normal DLL files. If anybody knows the secrets of "decrypting" DLLs it would be nice to know if this can help me. I need to invoke the plugin's commands for XMPie's "Dynamic Print" (new dialog opens) and then just confirm with "OK" to start the export.

  • Thrid party DLL function call.

    Hello,
    I am a programming novice trying to learn more about Java. I am currently working on a project for my employer (a side project really) that is used in generating some specific alpha-numeric codes. Actually, I am re-writing an existing program into Java as a personal exercise for myself but it may have some useful applications down the line.
    This project requires me to use a 3rd party DLL function call. I have been trying to follow through the process of using the JNI interface, however, I believe that I need to create a wrapper DLL to handle the function call. Does anyone know how to do this or can they point me in the right direction? I believe the 3rd party DLL was written in C++ but that's all I know at this point.
    Any help is appreciated.
    TIA

    To those of you who will look this topic up and wonder how I was able to do that here:
    (using Visual C++ for the example)
    3rd party DLL : Key32.dll
    wrapper DLL: Key32Liaise.dll
    SWIG interface: Key32Liaise.i
    wrapper class: Key32Liaise
    1) Make reference to your external function call as if it were a class method. The class name should be that of your "wrapper" class. (e.g. Key32Liaise.getHashCode() ) I like to call the wrapper class the "laise" class because it acts as the go-between.
    2) Download SWIG. Create your interface file and run the command: swig -java -shadow -c++ Key32Liaise.i This will generate Key32Liaise.java shadow class and Key32Liaise_wrap.cxx wrapper code.
    3) Compile the Java code into Class files and generate a header file for the wrapper class (i.e. javah Key32Liaise). You will need this header file even though the SWIG site doesn't mention this.
    4) Open VC++ and open a new project file Key32Liaise to create a DLL. Write the C++ code that calls up the function from the Key32.dll file. You will have to look that up from the MSDN site...too much to put down here.
    5) Include the appropriate files and complile the wrapper DLL.
    Hope that make sense!!!

  • 3rd Party email - outgoing POP3 configuration

    This is just an FYI for anyone else that may be having a problem sending email from a 3rd party POP3 email account.  I was not able to find the information with numerous searches, so I thought I'd post it here after I got it figured out.
    I just recently switched my internet access to FiOS, and several 3rd party email accounts that had been working just fine in Mozilla Thunderbird quit sending mail.  The receive still worked fine, but any attempt to send a message just timed out with a message that the server was inaccessible.  These accounts were set up using port 25 and no connection security for the SMTP servers.
    It seems that FiOS is blocking access to the SMTP servers on port 25.  I was able to get the accounts working again by using port 465 for the accounts with SSL/TLS security and normal password authentication, and port 587 for the accounts with no connection security.  No other changes to my Thunderbird account setup were needed.

    Yes, I searched in the email areas first.  But the problem is, this has NOTHING to do with Verizon email, and that seems to be all that is covered.  It may be there, but I couldn't find it in the FAQs or other places that I checked.  I'll admit that I did not read several thousand threads in detail on miscilaneous subjects, but I previewed a wole lot of them looking for something that seemed to apply.  If I had known it was specifically an issue with port 25 before I started the research, it would have been easier to solve.
    This issue is about how to set up SMTP outgoing access to a 3rd party email account while using FiOS internet access, NOT using Verizon.net email or any other Verizon email.  And that is why I originally posted this information in the internet forum. 
    A thread about how to set up Thunderbird for Verizon email is of absolutely no value if I do not use Verizon email.
    The simple fact is that I have been successfully using the old Thunderbird settings with port 25, on five different computers, -  including several laptops used for lots of traveling (therefore MANY different ISP connections in multiple countries) for quite a few years.  I was initially stymied when I found that the same computers that have always been able to send email on these accounts from any other internet connection could not do that from FiOS.  I was unable to find any information here about how to access NON-Verizon email accounts from FiOS internet connections, so I had to find it by outside research and trial/error testing.  I simply wanted to post the information so that maybe it would be shared with others that faced the same problem.

  • Securing 3rd party webservice

    I would like some advice please.
    We are building a flex application which is consuming a 3rd
    party web-service. We want to make sure that only the flex
    application we made can have access to this 3rd party web-service.
    The flex application will be publicly available, so there is no way
    of putting in some authentication here. How should I configure the
    proxy-config.xml to prevent other consumers (other than our flex
    app) from using the web-service available through the flex proxy.

    Hi,
    There are ways to secure destinations. Please visit the URL
    below for details on how to secure destinations.
    http://livedocs.adobe.com/blazeds/1/blazeds_devguide/services_config_3.html
    Hope this helps.

  • Problem deploying new version of 3rd party jar

    I have a third party jar file that was recently updated with to a new version. I deleted the old jar file and replaced it with the new version. Modified classpath accordingly. The strange thing is that the only way I could get the classes that use this jar file to work was to recompile them. What am I missing?

    When replacing a jar file it is alway a good idea to recompile against it... this ensures backward compatibity and also prevents Incompatible Class Change Errors. Your new 3rd party jar may not be completely backwards compatible, although it is always a good idea to recompile when implementing a new jar that your application depends on.

  • Error msg is generated when attempt to crop a TIF that included a 3rd party filter (Win7 Pro SP1)

    Error msg is generated when attempt to crop a TIF that included a 3rd party filter not on
    local machine. (Windows 7 Professional SP1)
    1. File created in CS5 with third party filter applied to smart object (filter:Neat Image
    published by ABSoft.)
    2 Transfer to another computer that does not have the filter installed.
    3. Open in Photoshop CS6.
    4. Use crop tool to attempt to crop the photo.
    5. Receive error message "Could not complete the command because of a program
    error."
    6. Crop completes and can be saved, but filter is disabled and cannot be enabled unless
    moved back to original computer.
    Expected result should be:
    Allow filter to be enabled as CS5.  Or message similar to message produced with
    missing font.
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer,
    SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 4
    Logical processor count: 8
    Processor speed: 1995 MHz
    Built-in memory: 6051 MB
    Free memory: 2949 MB
    Memory available to Photoshop: 5290 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: NVIDIA Corporation
    Video Card Renderer: GeForce GT 540M/PCI/SSE2
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1366
    Video Card Number: 1
    Video Card: NVIDIA GeForce GT 540M  
    OpenCL Unavailable
    Driver Version: 8.17.12.6744
    Driver Date: 20110301000000.000000-000
    Video Card Driver:
    nvd3dumx.dll,nvwgf2umx.dll,nvwgf2umx.dll,nvd3dum,nvwgf2um,nvwgf2um
    Video Mode:
    Video Card Caption: NVIDIA GeForce GT 540M  
    Video Card Memory: 1024 MB
    Video Rect Texture Size: 16384
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\wayne\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Startup, 450.2G, 387.4G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64
    Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1642  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   5,0,10,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012
    18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build
    gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build
    gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0;
    BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112  
    0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Collada 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Maximum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mean 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Measurement Core 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Median 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       MMXCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Picture Package Filter 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Range 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Variations 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       WIA Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    See if you can troubleshoot Safari extensions and third party plugins before Safari crashes.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test. If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • Accessing 3rd party jars from ear.

    I was able to create a war with the 3rd party jars in webinf/lib, register it with weblogic and access them from webapps another ear, after specifying this reference in EACH of the webapps.
    However if I want to just make the ear reference these jars, ie., all the webapps in the ear access these jars, without individually specifying the reference, then it gives me an error.
    What is different with providing a reference from an EAR ? I added it to the weblogic-application.xml as the docs suggested....

    http://www.jcp.org
    Cheers
    mbg
    "joe" <[email protected]> wrote in message news:[email protected]..
    >
    what do you mean by "to integrate this back into the specifications"? whatis the
    J2EE way to achieve it if there is one? Thanks
    "Mark Griffith" <[email protected]> wrote:
    Nope, embrace and extend. We are working to integrate this back into
    the
    specifications.
    cheers
    mbg
    "Joe" <[email protected]> wrote in message
    news:3e77c70d$[email protected]..
    Is that part of J2EE or weblogic's implementation?
    "Mark Griffith" <[email protected]> wrote:
    Upgrade to 8.1 and stick the jar's in myEar/APP-INF/lib
    cheers
    mbg
    "Jen" <[email protected]> wrote in message
    news:3e724f46$[email protected]..
    Is there a way to put in one shot instead of modifying every .jar
    and
    ..war's manifest
    file.
    Philip Strube <[email protected]> wrote:
    Hi Sudhindra,
    you can put them in your EAR (on top level or you can create a
    directory
    for them, like "libs" or sth.), and then create class-path entriesin
    the manifest files of your WAR and ejb-jars.
    Example: if myApp.war needs myUtil.jar, then write a line
    Class-Path: myUtil.jar
    in the manifest file of myApp.war. If myUtil.jar is in libs, write
    libs/myUtil.jar and so on.
    -- Philip
    Sudhindra wrote:
    Hi
    I have some common 3rd party jars and zips that are accessed
    by
    my
    WARs and EJB
    JARs. Where in my EAR structure do i place them so that these
    common
    jars like
    classes12, formulaone etc can be accessed from within my WARs
    and
    EJB
    jars?
    Regards Sudhindra

Maybe you are looking for

  • Importing EJBs into web dynpros

    I have created EJBS and I would like to use these EJBs in web dynpros. How do I do it. I think I can create a jar file for the EJBS and reference them in my Web Dynpro project but I think that is not the right way to do it. Thanks, PKK.

  • How do i call a :cp_ or a :cf in a query in reports builder?

    Hi, i got a report. i included a function in 1 of my queries in reports builder but the report is running very long now. so i tryed to put the function in that query in a :cf (formula column) and call the :cf in my query but its not picking up the va

  • Building Distribution Kit with CVI 8.0.1 Fails After Installing CVI 2010

    Build Log output: Adding files to installer *** Error: An internal tool or library returned an error. (Error code -21) *** Error Details: Error in MDF API function: _MDFBuildDevPartMerger_Load nmdkLoadMergeModule returned error code 26152 *** End Err

  • Will Lightroom ever be able to match the color/contrast of DPP?

    Disclaimer, I'm a current 3.4 user and I've been using LR since version 2, it's my goto program for 98% of my work.  What i've noticed is that it never quite renders the raw files as well as DPP and in certain high contrast scenes, DPP does a better

  • Use of outgoing proxy with content engine

    Hi All, I'm experiencing problems using the "outgoing proxy" feature with a content engine running ACNS 4.03. When this feature is enabled, it takes a long time to get the "execute or save to disk" popup window in the web browser, but when I get it,