Jump to content
C4 Forums | Control4

programing issue


k1993

Recommended Posts

I wrote a satelite project but i got error proxyid and connectionid mismatch

 

A matching Connection ID and ProxyBindingID could not be found. For each ProxyBindingID specified, a matching Connection ID must be specified.
DriverValidator - FAIL:  No matching class name was found under the matching connection.  The class name must match the the proxy name.  The class name is also required to be in UPPERCASE.
 

Link to comment
Share on other sites


26 minutes ago, msgreenf said:

you wrote a driver - not a project.

 

Upload your XML here

i solved that error  now i got this error .I have written satelite driver. but while configure time  network connection port number not generating on driver.xml..

driver.xml

port error.png

Link to comment
Share on other sites

Also, typically for a network binding, you'd include the port information along with the <classname> section (note that this driver uses binding ID 6001, not 6000, but either should work):

        <connection>
            <id>6001</id>
            <facing>6</facing>
            <connectionname>Control Connection</connectionname>
            <type>4</type>
            <consumer>True</consumer>
            <audiosource>False</audiosource>
            <videosource>False</videosource>
            <linelevel>True</linelevel>
            <classes>
                <class>
                    <classname>TCP</classname>
                    <ports>
                        <port>
                            <number>80</number>
                            <auto_connect>False</auto_connect>
                            <monitor_connection>False</monitor_connection>
                            <keep_connection>False</keep_connection>
                            <delimiter>0d</delimiter>
                        </port>
                    </ports>
                </class>
            </classes>
        </connection>

RyanE

 

Link to comment
Share on other sites

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.