Este site irá ter funcionalidade limitada enquanto fazemos manutenção para melhorar a sua experiência. Se um artigo não resolve o seu problema e quiser colocar uma questão, temos a nossa comunidade de apoio à espera de o ajudar em @FirefoxSupport no Twitter, /r/firefox no Reddit.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

plugin-container.exe crashes

  • 3 respostas
  • 2 têm este problema
  • 1 visualização
  • Última resposta por you_zi53

more options

hi!

     The problem information:
     Computer operating system is Windows 7, and it is 32 bits.
     Firefox browser version is the latest.
     I want use the plugin to import certificate into firefox.
     The interface of import certificate is extracted from NSS, and I test it ok.
     
     Then i use firebreath to make a plugin and add the interface.
     When i use the plugin in firefox browser it will crashe at function SEC_PKCS12DecoderUpdate.
     
     I debug it, the debug information is plugin-container.exe has triggered a breakpoint.
     And pop-up a Runtime Error window:
         Program: C:\program files\mozilla firefox\plugin-container.exe
         this application has requested the runtime to terminate it in an unusual way.
         please contact the application's support team for more information.
    But when I use the plugin in IE, it can be work.
    hope someone can help me!
   thanks!
hi! The problem information: Computer operating system is Windows 7, and it is 32 bits. Firefox browser version is the latest. I want use the plugin to import certificate into firefox. The interface of import certificate is extracted from NSS, and I test it ok. Then i use firebreath to make a plugin and add the interface. When i use the plugin in firefox browser it will crashe at function SEC_PKCS12DecoderUpdate. I debug it, the debug information is plugin-container.exe has triggered a breakpoint. And pop-up a Runtime Error window: Program: C:\program files\mozilla firefox\plugin-container.exe this application has requested the runtime to terminate it in an unusual way. please contact the application's support team for more information. But when I use the plugin in IE, it can be work. hope someone can help me! thanks!

Solução escolhida

"Then i use firebreath to make a plugin and add the interface. "

So, you made that plugin yourself?
If that is the case, there isn't much that we can do for you. This forum is for user support of various Mozilla products, not for developer support.

"But when I use the plugin in IE, it can be work."
A plugin made for IE won't work in Firefox, which uses NPAPI. IE has its own plugin architecture.

See the Mozilla Developer Network for developer articles.
https://developer.mozilla.org/en-US/Add-ons/Plugins

Ler esta resposta no contexto 👍 0

Todas as respostas (3)

more options

刚刚看了一下,可能是插件中使用的nss3.dll与firefox中的nss3.dll冲突。

怎么获取firefox的nss库?

more options

Solução escolhida

"Then i use firebreath to make a plugin and add the interface. "

So, you made that plugin yourself?
If that is the case, there isn't much that we can do for you. This forum is for user support of various Mozilla products, not for developer support.

"But when I use the plugin in IE, it can be work."
A plugin made for IE won't work in Firefox, which uses NPAPI. IE has its own plugin architecture.

See the Mozilla Developer Network for developer articles.
https://developer.mozilla.org/en-US/Add-ons/Plugins

more options

thanks for your help!

问题已解决: 原因是火狐下的nss3.dll和插件中使用的nss3.dll冲突了。 解决办法: 把插件中使用的nss库nss3.dll和nss3.lib更名。 更名需要注意的是,要修改库内部的关联信息,既把所有nss3改为nss1,当然可以取别的名,不过名的长度必须要和nss3一样,否则库会被损坏。记得重新编译插件!