Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

ColdFusion 9 - The event viewer gives me this error.

New Here ,
Feb 18, 2011 Feb 18, 2011

The event viewer gives me this error.

Name of the application causing the error: JNBDotNetSide.exe Version: 5.10.3764.40502, Time Stamp: 0x4bd1305c
Name of the module causing the error: KERNELBASE.dll, version: 6.1.7600.16385, time stamp: 0x4a5bdfe0
Exception Code: 0xe0434352
Offset error: 0x000000000000aa7d
Process ID is causing the error: 0x688
Time to start the application causing the error: 0x01cbcf4664439dd5
Faulting application path: C:\ColdFusion9\jnbridge\JNBDotNetSide.exe
The path module is causing the error: C:\Windows\system32\KERNELBASE.dll
Report ID: c6cbf773-3b39-11e0-951f-be182a536a23
4.2K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 18, 2011 Feb 18, 2011

Indeed. I too found the JNBridge settings to be in a bit of a mess. Windows finds an error with it everyday.

Adobe consultant Vikas Chandran has a possible solution. It involves matching the port settings in the 2 configuration files, C:\ColdFusion9\lib\neo-dotnet.xml and C:\ColdFusion9\jnbridge\jnbproxy.exe.config.

Back those files up, as you're going to edit them in a text editor. The  file neo-dotnet.xml should contain an element similar to

<struct type="coldfusion.server.ConfigMap">
            <var name="port">
                <string>6087</string>
            </var>
            <var name="dotnetport">
                <string>6088</string>
            </var>
            <var name="protocol">
                <string>tcp</string>
            </var>
            <var name="install_dir">
                <string>C:\ColdFusion9\jnbridge</string>
            </var>

</struct>

Those port settings must match 2 corresponding settings in jnbproxy.exe.config. It is likely that this file doesn't yet have the port settings. If so, add the ports. You should end up with something like

<?xml version="1.0"?>
<configuration>
    <startup>
    </startup>
    <runtime>
    </runtime>
    <jnbridge>
        <dotNetToJavaConfig scheme="jtcp" host="localhost" port="6087″/>
        <javaToDotNetConfig scheme="jtcp" port="6088″/>
    </jnbridge>
</configuration>

Save this. Restart the Windows service ColdFusion 9 .NET Service.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 23, 2011 Feb 23, 2011

Nothing that did not work, then this error shows up. joined to this is:

.NET Runtime

Application: JNBDotNetSide.exe
Architecture Version: v4.0.30319
Description: The process has been terminated due to nieobsłużonego exception.
The exception information: com.jnbridge.jnbcore.InvalidLicenseException
Stack:
in com.jnbridge.jnbcore.DotNetSide.privateStartDotNetSide (System.String [], Int32)
in com.jnbridge.jnbcore.DotNetSide.startDotNetSide ()
in JNBDotNetSide.MainClass.Main (System.String [])

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 23, 2011 Feb 23, 2011

You're right, Maria. It hasn't helped mine either. I'm still looking into it.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Feb 23, 2011 Feb 23, 2011
LATEST
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources