RestComm / gmlc

Restcomm Location Server
http://www.restcomm.com/
GNU Affero General Public License v3.0
17 stars 40 forks source link

Replace jixb exec usage with proper jixb maven plugin #71

Closed jaimecasero closed 8 years ago

jaimecasero commented 8 years ago

Current solutions requires jixb jars to be included in code, and different profiles for linux/windows when setting paths.By using jixb plugin all of these would be unnecessary.

In addition, on systems with different java version the build may fail, since the exec maven plugin is not using the "java" goal, a java version for compiling may be using, while schema compiling uses system wide java version...

jaimecasero commented 8 years ago
        <plugin>
            <groupId>org.jibx</groupId>
            <artifactId>jibx-maven-plugin</artifactId>
            <version>1.2.6</version>
            <executions>
                <execution>
                    <id>JiBX Generate Sources</id>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>schema-codegen</goal>
                    </goals>
                    <configuration>
                        <customizations>
                            <customization>${basedir}/src/main/config/custom.xml</customization>
                        </customizations>
                        <targetDirectory>${basedir}/target/generated-sources</targetDirectory>
                        <includeSchemas>
                            <includeSchema>mlp_svc_result_310.xsd</includeSchema>
                            <includeSchema>mlp_svc_init_310.xsd</includeSchema>
                        </includeSchemas>
                    </configuration>
                </execution>
                <execution>
                    <id>JiBX Compile Bindings</id>
                    <phase>process-classes</phase>
                    <goals>
                        <goal>bind</goal>
                    </goals>
                    <configuration>
                    <schemaBindingDirectory>target/generated-sources</schemaBindingDirectory>
                    <load>true</load>
                    <validate>true</validate>
                    <!--<verbose>true</verbose>-->
                    <verify>true</verify>
                    </configuration>
                </execution>                    
            </executions>

        </plugin>
angrygreenfrogs commented 8 years ago

This is related to https://github.com/RestComm/gmlc/issues/48

The problem is that the official maven plugin is buggy and was causing an unknown failure in the "compile-binding" task. It was producing a "Should never be called with null root" error when doing the binding process, and we couldn't find a way of making it work without re-writing part of the plugin itself.

There's also been some reports of the plugin being incompatible with newer versions of Maven, and it seems to be unmaintained, so it'd be a question of us all taking on maintenance of the plugin in order to use it in our project (possible, of course).

I'd suggest that the compromise for an enhancement would be to figure out how to use the java goal to do the equivalent of what we're doing now by directing running java (which I agree is not ideal).

jaimecasero commented 8 years ago

@angrygreenfrogs
output for schema compilation: --- jibx-maven-plugin:1.2.6:schema-codegen (JiBX Generate Sources) @ sbbs --- Generating Java sources in target/generated-sources from schemas available in src/main/config... Loaded and validated 2 specified schema(s) Generated 106 top-level classes (plus 21 inner classes) in package org.oma.protocols.mlp.svc_init Generated 110 top-level classes (plus 18 inner classes) in package org.oma.protocols.mlp.svc_result Total top-level classes in model: 216 Total classes (including inner classes) in model: 255

I cant see any "should never be called with null root". Do you still have the plugin conf you were using?

angrygreenfrogs commented 8 years ago

Note: In your output example there, I can only see the source generation output.. which that part always worked, it was the binding compilation that failed.

If your jibx config isn't actually doing the binding, the whole build will look like it works, but when you try a MLP request the XML processing will fail, so please make sure you test that XML processing is working to be sure.

Sure, it's in the code history for the original sbbs pom.xml:

<plugin>
    <groupId>org.jibx</groupId>
    <artifactId>jibx-maven-plugin</artifactId>
    <version>1.2.6</version>
    <configuration>
        <customizations>
            <customizations>${basedir}/src/main/config/custom.xml</customizations>
        </customizations>
    </configuration>
    <executions>
        <execution>
            <id>generate-code</id>
            <goals>
                <goal>schema-codegen</goal>
            </goals>
            <configuration>
                <includeSchemas>
                    <includeSchema>mlp_svc_result_310.xsd</includeSchema>
                    <includeSchema>mlp_svc_init_310.xsd</includeSchema>
                </includeSchemas>
            </configuration>
        </execution>
        <execution>
            <id>compile-binding</id>
            <goals>
                <goal>bind</goal>
            </goals>
            <configuration>
                <includeSchemaBindings>
                    <includeSchemaBinding>binding.xml</includeSchemaBinding>
                </includeSchemaBindings>
                <load>true</load>
                <validate>false</validate>
                <!--<verbose>true</verbose>-->
                <verify>false</verify>
            </configuration>
        </execution>
    </executions>
</plugin>
jaimecasero commented 8 years ago
                <execution>
                    <id>JiBX Compile Bindings</id>
                    <phase>process-classes</phase>
                    <goals>
                        <goal>bind</goal>
                    </goals>
                    <configuration>
target/generated-sources
                    <load>true</load>
                    <validate>true</validate>
                    <!--<verbose>true</verbose>-->
                    <verify>true</verify>
                    </configuration>
                </execution>

this conf seems to deliver.. --- jibx-maven-plugin:1.2.6:bind (JiBX Compile Bindings) @ sbbs --- Running JiBX binding compiler (single-module mode) on 1 binding file(s) Verification failure on class org.oma.protocols.mlp.svc_init.SvcInit: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMungeAdapter: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Hdr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Slir: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.EmeLir: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Tlrr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Tlrsr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Client: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Id: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Pwd: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Serviceid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Requestmode: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Sessionid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Requestor: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Subclient: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Msid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Msid$Type: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.MsidRange: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.StartMsid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.StopMsid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Msids: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Codeword: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Session: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Esrd: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Esrk: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.EmeEvent: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.TlrrEvent: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.MsAction: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Interval: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.LocType: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Prio: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Pushaddr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Url: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.ReqId: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.StartTime: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.StopTime: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.TimeRemaining: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Eqop: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.RespReq: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.RespTimer: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.LlAcc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.HorAcc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.AltAcc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.MaxLocAge: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Qop: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Pos: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Pd: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Poserr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.GsmNetParam: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.EmePos: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.TrlPos: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Time: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Shape: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Alt: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Speed: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Direction: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.LevConf: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Result: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.AddInfo: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.GeoInfo: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.CoordinateReferenceSystem: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Identifier: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Code: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.CodeSpace: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Edition: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Point: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.LineString: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Polygon: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Box: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.CircularArea: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.CircularArcArea: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.EllipticalArea: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.MultiLineString: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.MultiPoint: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.MultiPolygon: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.DistanceUnit: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.AngularUnit: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Angle: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Coord: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.X: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Y: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Z: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.LinearRing: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.OuterBoundaryIs: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.InnerBoundaryIs: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.InRadius: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.OutRadius: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.StartAngle: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.StopAngle: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Radius: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.SemiMajor: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.SemiMinor: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Cgi: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Neid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Nmr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Ta: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Lmsi: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Imsi: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Mcc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Mnc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Lac: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Cellid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Vmscid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Vlrid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Cc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Ndc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Vmscno: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_init.Vlrno: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.SvcResult: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Hdr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Slia: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Slirep: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Slrep: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.EmeLia: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Emerep: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Tlra: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Tlrep: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Tlrsa: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Client: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Id: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Pwd: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Serviceid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Requestmode: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Sessionid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Requestor: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Subclient: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Msid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Msid$Type: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.MsidRange: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.StartMsid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.StopMsid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Msids: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Codeword: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Session: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Esrd: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Esrk: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.EmeEvent: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.TlrrEvent: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.MsAction: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Interval: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.LocType: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Prio: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Pushaddr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Url: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.ReqId: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.StartTime: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.StopTime: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.TimeRemaining: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Eqop: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.RespReq: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.RespTimer: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.LlAcc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.HorAcc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.AltAcc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.MaxLocAge: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Qop: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Pos: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Pd: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Poserr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.GsmNetParam: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.EmePos: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.TrlPos: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Time: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Shape: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Alt: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Speed: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Direction: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.LevConf: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Result: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.AddInfo: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.GeoInfo: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.CoordinateReferenceSystem: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Identifier: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Code: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.CodeSpace: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Edition: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Point: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.LineString: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Polygon: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Box: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.CircularArea: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.CircularArcArea: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.EllipticalArea: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.MultiLineString: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.MultiPoint: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.MultiPolygon: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.DistanceUnit: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.AngularUnit: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Angle: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Coord: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.X: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Y: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Z: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.LinearRing: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.OuterBoundaryIs: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.InnerBoundaryIs: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.InRadius: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.OutRadius: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.StartAngle: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.StopAngle: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Radius: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.SemiMajor: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.SemiMinor: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Cgi: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Neid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Nmr: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Ta: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Lmsi: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Imsi: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Mcc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Mnc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Lac: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Cellid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Vmscid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Vlrid: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Cc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Ndc: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Vmscno: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.svc_result.Vlrno: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSvcInit_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingClient_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSessionid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingId_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRequestor_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPwd_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingServiceid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRequestmode_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSubclient_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMsid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMsidRange_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMsids_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCodeword_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEsrd_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEsrk_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSession_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStartMsid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStopMsid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEmeEvent_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTlrrEvent_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMsAction_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingInterval_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLocType_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPrio_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPushaddr_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingReqId_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStartTime_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStopTime_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingUrl_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTimeRemaining_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEqop_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingQop_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLlAcc_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingHorAcc_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMaxLocAge_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRespReq_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRespTimer_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPos_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEmePos_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTrlPos_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPd_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPoserr_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTime_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAlt_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAltAcc_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingDirection_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSpeed_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLevConf_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingGeoInfo_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCoordinateReferenceSystem_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingIdentifier_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCode_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCodeSpace_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEdition_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAddInfo_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingResult_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingShape_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingDistanceUnit_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAngularUnit_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAngle_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCoord_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingX_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingY_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingZ_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPoint_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLineString_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingBox_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLinearRing_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPolygon_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingOuterBoundaryIs_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingInnerBoundaryIs_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCircularArcArea_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCircularArea_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEllipticalArea_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingInRadius_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingOutRadius_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRadius_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSemiMajor_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSemiMinor_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStartAngle_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStopAngle_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMultiLineString_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMultiPoint_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMultiPolygon_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingGsmNetParam_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCgi_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingNeid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingVmscid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingVlrid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingNmr_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMcc_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMnc_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingNdc_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCc_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingVmscno_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingVlrno_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLac_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCellid_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTa_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLmsi_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingImsi_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingHdr_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSlir_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEmeLir_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTlrr_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTlrsr_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSvcResult_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingClient_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSessionid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingId_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRequestor_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPwd_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingServiceid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRequestmode_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSubclient_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMsid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMsidRange_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMsids_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCodeword_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEsrd_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEsrk_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSession_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStartMsid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStopMsid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEmeEvent_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTlrrEvent_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMsAction_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingInterval_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLocType_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPrio_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPushaddr_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingReqId_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStartTime_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStopTime_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingUrl_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTimeRemaining_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEqop_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingQop_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLlAcc_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingHorAcc_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMaxLocAge_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRespReq_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRespTimer_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPos_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEmePos_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTrlPos_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPd_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPoserr_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTime_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAlt_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAltAcc_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingDirection_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSpeed_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLevConf_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingGeoInfo_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCoordinateReferenceSystem_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingIdentifier_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCode_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCodeSpace_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEdition_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAddInfo_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingResult_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingShape_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingDistanceUnit_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAngularUnit_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingAngle_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCoord_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingX_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingY_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingZ_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPoint_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLineString_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingBox_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLinearRing_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingPolygon_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingOuterBoundaryIs_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingInnerBoundaryIs_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCircularArcArea_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCircularArea_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEllipticalArea_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingInRadius_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingOutRadius_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingRadius_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSemiMajor_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSemiMinor_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStartAngle_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingStopAngle_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMultiLineString_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMultiPoint_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMultiPolygon_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingGsmNetParam_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCgi_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingNeid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingVmscid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingVlrid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingNmr_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMcc_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingMnc_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingNdc_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCc_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingVmscno_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingVlrno_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLac_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingCellid_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTa_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingLmsi_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingImsi_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingHdr_access1: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSlia_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSlirep_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingSlrep_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEmeLia_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingEmerep_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTlra_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTlrep_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingTlrsa_access: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

Verification failure on class org.oma.protocols.mlp.JiBX_bindingFactory: VERIFIED_REJECTED Repository.lookup() failed. FILE NOT FOUND?

wdyt?

On Fri, Aug 12, 2016 at 2:01 PM, Andrew Eross notifications@github.com wrote:

Note: In your output example there, I can only see the source generation output.. which that part always worked, it was the binding compilation that failed.

If your jibx config isn't actually doing the binding, the whole build will look like it works, but when you try a MLP request the XML processing will fail, so please make sure you test that XML processing is working to be sure.

Sure, it's in the code history for the original sbbs pom.xml:

org.jibx jibx-maven-plugin 1.2.6 ${basedir}/src/main/config/custom.xml generate-code schema-codegen mlp_svc_result_310.xsd mlp_svc_init_310.xsd compile-binding bind binding.xml true false false

— You are receiving this because you were assigned. Reply to this email directly, view it on GitHub https://github.com/RestComm/gmlc/issues/71#issuecomment-239428618, or mute the thread https://github.com/notifications/unsubscribe-auth/AHe9SRhYAISMayAD3a-6WFRwtrb0Q51Wks5qfGCAgaJpZM4JirLH .

deruelle commented 8 years ago

@jaimecasero did you test the result as @angrygreenfrogs mentioned in his previous comment

If your jibx config isn't actually doing the binding, the whole build will look like it works, but when you try a MLP request the XML processing will fail, so please make sure you test that XML processing is working to be sure.

deruelle commented 8 years ago

@angrygreenfrogs can you try @jaimecasero patch to see if that works ?

angrygreenfrogs commented 8 years ago

@deruelle No worries, I found a minute just now to give it a test.

@jaimecasero At a first try this isn't working - it's suffering from the issue I mentioned where the binding process isn't actually occurring even though it looks like it worked.

If you try to send a XML request to the system, the error log in jboss reports:

03:17:51,501 INFO  [MobileCoreNetworkInterfaceSbb] (SLEE-EventRouterExecutor-3-thread-1) Exception while marshalling XML response data: Unable to access binding information for class org.oma.protocols.mlp.svc_result.SvcResult
Make sure the binding has been compiled

However, happily that's just a small thing:

You need to replace: <includeSchemaBindings>*-binding.xml</includeSchemaBindings> with: <includeSchemaBinding>binding.xml</includeSchemaBinding>

After making that correction, the binding occurs properly, and happy to say that the "null root" error jibx was previously outputting isn't occurring any more (although I don't know why, but I mean I'm happy it's not). And it seems to be working just fine, so if you can make that correction to the PR this looks good and we can remove the temporary copy of jibx that was stored in tools/jibx as well.

FerUy commented 8 years ago

Thanks @angrygreenfrogs , done as for: https://github.com/RestComm/gmlc/commit/d5fa821596b89d92250a0df1af0727e915397917