[cisco-voip] AXL AddPhoneRequest on CUCM 8.6 fails with null pointer exception

Hoffmann, Jonas Jonas.Hoffmann at fu-berlin.de
Fri Nov 18 11:19:58 EST 2011


Hello *,

I am desperately trying to add a phone on a CUCM (version 8.6.2.20000-2) via AXL
using schema 8.5 (AXLSoap.xsd and AXLAPI.wsdl).

When I use the 7.1 wsdl and xsd and do an AddPhoneRequest on the same server,
everything works fine, but as soon as I change it to an 8.5 (or 8.0) schema,
the request fails with an NPE (see attached logs).

I tried including and excluding various attributes, tried without setting a line, CSS, etc.
Read the specification forth and back, but all requests fail just like that.

It seems to me as if the request is parsed fine as I can even see the DB INSERT in
the log and whenever I change attributes in the request to invalid values, I get
the according errors complaining about it. I also dobule-checked that
the required entries in the other tables (device pool, location, directory number, etc.)
all exist.

An AddDeviceProfileReq works fine by the way.

Has this behaviour occured to any of you? Who can supply me with an XML log of a
succesful AddPhoneReq using the 8.5 (or 8.0) schema? Or does someone see any obvious
errors in my requests?

Thanks a lot for any help,
Jonas Hoffmann


--- Java code snippet that creates the requests ---

        XPhone xp = new XPhone();
        xp.setName("SEP112233445566");
        xp.setDescription("Test");
        xp.setProduct("Cisco 6941");
        xp.setClazz("Phone");
        xp.setProtocol("SCCP");
        xp.setProtocolSide("User");

        XFkType devicePoolXFk = new XFkType();
        devicePoolXFk.setValue("Default");
        xp.setDevicePoolName(devicePoolXFk);

        XFkType commonPhoneConfigXFk = new XFkType();
        commonPhoneConfigXFk.setValue("Standard Common Phone Profile");
        xp.setCommonPhoneConfigName(commonPhoneConfigXFk);

        XFkType locationName = new XFkType();
        locationName.setValue("Hub_None");
        xp.setLocationName(locationName);

        xp.setUseTrustedRelayPoint("Default");

        XPhoneLine line = new XPhoneLine();
        line.setIndex("5");
        line.setDisplay("Line1");
        XDirn dirn = new XDirn();
        dirn.setPattern("77777");
        XFkType rpnxfk = new XFkType();
        rpnxfk.setValue("Internal");
        dirn.setRoutePartitionName(rpnxfk);
        line.setDirn(dirn);
        XPhone.Lines lines = new XPhone.Lines();
        lines.getLine().add(0, line);
        xp.setLines(lines);

        AddPhoneReq addPhoneReq = new AddPhoneReq();
        addPhoneReq.setPhone(xp);
        StandardResponse response = this.getPort().addPhone(addPhoneReq);
---

--- log output taken from Cisco RTMT with SQL debug ---
2011-11-18 16:51:12,081 INFO  [http-8443-20] servletRouters.AXLFilter - Received request 1320659898151 from ccm-xyz at IP xx.xx.xx.xx
2011-11-18 16:51:12,083 INFO  [http-8443-20] servletRouters.AXLFilter - AXL REQUEST :

<?xml version="1.0" ?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
        <S:Body>
                <ns2:addPhone xmlns:ns2="http://www.cisco.com/AXL/API/8.5">
                        <phone>
                                <name>SEP112233445566</name>
                                <description>Test</description>
                                <product>Cisco 6941</product>
                                <class>Phone</class>
                                <protocol>SCCP</protocol>
                                <protocolSide>User</protocolSide>
                                <callingSearchSpaceName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <devicePoolName>Default</devicePoolName>
                                <commonDeviceConfigName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <commonPhoneConfigName>Standard Common Phone Profile
                                </commonPhoneConfigName>
                                <locationName>Hub_None</locationName>
                                <mediaResourceListName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <networkHoldMohAudioSourceId
                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                <userHoldMohAudioSourceId
                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                <automatedAlternateRoutingCssName
                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                <aarNeighborhoodName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <loadInformation xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <versionStamp xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <mlppDomainId xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <useTrustedRelayPoint>Default</useTrustedRelayPoint>
                                <securityProfileName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <sipProfileName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <cgpnTransformationCssName
                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                <geoLocationName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <geoLocationFilterName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <lines>
                                        <line>
                                                <index>5</index>
                                                <display>Line1</display>
                                                <dirn>
                                                        <pattern>77777</pattern>
                                                        <routePartitionName>Internal</routePartitionName>
                                                </dirn>
                                                <consecutiveRingSetting
                                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                                <ringSettingIdlePickupAlert
                                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                                <ringSettingActivePickupAlert
                                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                                <e164Mask xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                                        xsi:nil="true" />
                                                <recordingProfileName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                                        xsi:nil="true" />
                                                <monitoringCssName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                                        xsi:nil="true" />
                                                <speedDial xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                                        xsi:nil="true" />
                                        </line>
                                </lines>
                                <phoneTemplateName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <primaryPhoneName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <userlocale xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <networkLocale xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <idleTimeout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <softkeyTemplateName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <defaultProfileName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <ownerUserName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <packetCaptureDuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <subscribeCallingSearchSpaceName
                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                <rerouteCallingSearchSpaceName
                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                <dndRingSetting xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <mobilityUserIdName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <mobileSmartClientProfileName
                                        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" />
                                <dialRulesName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                                <featureControlPolicy xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                                        xsi:nil="true" />
                        </phone>
                </ns2:addPhone>
        </S:Body>
</S:Envelope>

2011-11-18 16:51:12,087 DEBUG [http-8443-20] servletRouters.AXLFilter - DBLCNQueue Count: 0
2011-11-18 16:51:12,087 DEBUG [http-8443-20] servletRouters.AXLFilter - Successfully set the value of counter: 4 value: 0
2011-11-18 16:51:12,087 INFO  [http-8443-20] servletRouters.AXLAlpha - SOAPAction : "CUCM:DB ver=8.5 addPhone"
2011-11-18 16:51:12,088 INFO  [http-8443-20] servletRouters.AXLAlpha - Going to axis--->
2011-11-18 16:51:12,093 DEBUG [http-8443-20] axlapiservice.Handler - Inside addTkdataAXIS utils part
2011-11-18 16:51:12,095 DEBUG [http-8443-20] axlapiservice.Handler - Inside addTkdataAXIS utils part
2011-11-18 16:51:12,095 DEBUG [http-8443-20] axlapiservice.Handler - Inside addTkdataAXIS utils part
2011-11-18 16:51:12,096 DEBUG [http-8443-20] axlapiservice.Handler - Inside addTkdataAXIS utils part
2011-11-18 16:51:12,097 DEBUG [http-8443-20] axlapiservice.AddPhoneHandler - select tkModel from TypeProduct where typeproduct.enum='383'
2011-11-18 16:51:12,098 DEBUG [http-8443-20] axlapiservice.Handler - fkCallingSearchSpace  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,099 DEBUG [http-8443-20] axlapiservice.Handler - getPkid Query is :select pkid from DevicePool where my_lower(name ) =my_lower('Default' )
2011-11-18 16:51:12,117 DEBUG [http-8443-20] axlapiservice.Handler - fkFeatureControlPolicy  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,118 DEBUG [http-8443-20] axlapiservice.Handler - select tksupportsfeature, tkdeviceprotocol,param from ProductSupportsFeature where tkproduct='383'  and tkdeviceprotocol in ('0',99)
2011-11-18 16:51:12,122 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 supports feature 104
2011-11-18 16:51:12,122 DEBUG [http-8443-20] axlapiservice.Handler - fkCommonDeviceConfig  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,122 DEBUG [http-8443-20] axlapiservice.Handler - getPkid Query is :select pkid from CommonPhoneConfig where my_lower(name ) =my_lower('Standard Common Phone Profile' )
2011-11-18 16:51:12,125 DEBUG [http-8443-20] axlapiservice.Handler - getPkid Query is :select pkid from Location where my_lower(name ) =my_lower('Hub_None' )
2011-11-18 16:51:12,127 DEBUG [http-8443-20] axlapiservice.Handler - fkMediaResourceList  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,127 DEBUG [http-8443-20] axlapiservice.Handler - fkCallingSearchSpace_AAR  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,128 DEBUG [http-8443-20] axlapiservice.Handler - fkAARNeighborhood  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,128 DEBUG [http-8443-20] axlapiservice.Handler - fkFeatureControlPolicy  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,128 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 supports feature 34
2011-11-18 16:51:12,129 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 supports feature 35
2011-11-18 16:51:12,129 DEBUG [http-8443-20] axlapiservice.Handler - Inside addTkdataAXIS utils part
2011-11-18 16:51:12,130 DEBUG [http-8443-20] axlapiservice.AddPhoneHandler - select pkid from securityprofile where tkmodel = '496' and tkdeviceprotocol = '0' and securityprofile.isStandard = 't' and securityprofile.tkDeviceSecurityMode = '1'
2011-11-18 16:51:12,133 DEBUG [http-8443-20] axlapiservice.Handler - fkPhoneTemplate  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,135 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 supports feature 18
2011-11-18 16:51:12,135 DEBUG [http-8443-20] axlapiservice.Handler - fkSoftkeyTemplate  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,136 DEBUG [http-8443-20] axlapiservice.Handler - ikDevice_defaultProfile  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,136 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 does not support feature 79
2011-11-18 16:51:12,136 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 does not support feature 78
2011-11-18 16:51:12,137 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 supports feature 53
2011-11-18 16:51:12,137 DEBUG [http-8443-20] axlapiservice.Handler - fkCallingSearchspace_restrict  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,138 DEBUG [http-8443-20] axlapiservice.Handler - fkCallingSearchspace_reroute  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,138 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 does not support feature 76
2011-11-18 16:51:12,138 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 does not support feature 76
2011-11-18 16:51:12,139 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 supports feature 72
2011-11-18 16:51:12,139 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 does not support feature 76
2011-11-18 16:51:12,140 DEBUG [http-8443-20] axlapiservice.Handler - Product 383 supports feature 63
2011-11-18 16:51:12,140 DEBUG [http-8443-20] axlapiservice.Handler - fkDialRules  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,140 DEBUG [http-8443-20] axlapiservice.Handler - fkcallingsearchspace_cgpntransform  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,141 DEBUG [http-8443-20] axlapiservice.Handler - insert into Device ( tkDeviceProtocol,fkCallingSearchspace_restrict,SpecialLoadInformation,tkStatus_MLPPIndicationStatus,tkProtocolSide,fkDevicePool,fkPhoneTemplate,fkCallingSearchSpace,fkCallingSearchspace_reroute,isprotected,fkSoftkeyTemplate,fkDialRules,Description,fkAARNeighborhood,fkCommonDeviceConfig,ikDevice_defaultProfile,fkcallingsearchspace_cgpntransform,fkMediaResourceList,fkLocation,Name,tkClass,fkCommonPhoneConfig,tkdndoption,pkid,fkCallingSearchSpace_AAR,fkFeatureControlPolicy,fkSecurityProfile,tkStatus_UseTrustedRelayPoint,tkProduct ) values ( '0',null,null,'2','1','1b1b9eb6-7803-11d3-bdf0-00108302ead1','268d80c1-d8b6-42ce-9379-f808613ada49',null,null,'f',null,null,'Test',null,null,null,null,null,'29c5c1c4-8871-4d1e-8394-0b9181e8c54d','SEP112233445566','1','ac243d17-98b4-4118-8feb-5ff2e1b781ac','2','49dc23c5-d67c-c7be-642f-86e73943225e',null,null,'70d267c5-3b10-41d1-a4bd-de2bb36222ba','2','383' )
2011-11-18 16:51:12,492 DEBUG [http-8443-20] axlapiservice.Handler - fkcallingsearchspace_cgpntransform  IS Being assigned a null value in addfkdataaxis
2011-11-18 16:51:12,493 ERROR [http-8443-20] axlapiservice.AXLAPIServiceSkeleton - com.cisco.www.axlapiservice.AXLAPIServiceSkeleton at 16adc5a
java.lang.NullPointerException
        at com.cisco.www.axlapiservice.AddPhoneHandler.doAdd(AddPhoneHandler.java:931)
        at com.cisco.www.axlapiservice.AXLAPIServiceSkeleton.addPhone(AXLAPIServiceSkeleton.java:13345)
        at com.cisco.www.axlapiservice.AXLAPIServiceMessageReceiverInOut.invokeBusinessLogic(AXLAPIServiceMessageReceiverInOut.java:7446)
        at org.apache.axis2.receivers.AbstractInOutMessageReceiver.invokeBusinessLogic(AbstractInOutMessageReceiver.java:40)
        at org.apache.axis2.receivers.AbstractMessageReceiver.receive(AbstractMessageReceiver.java:100)
        at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:176)
        at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:275)
        at org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:131)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at sun.reflect.GeneratedMethodAccessor334.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:269)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
        at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:301)
        at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
        at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56)
        at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
        at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:646)
        at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:436)
        at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:374)
        at org.apache.catalina.core.ApplicationDispatcher.access$000(ApplicationDispatcher.java:65)
        at org.apache.catalina.core.ApplicationDispatcher$PrivilegedForward.run(ApplicationDispatcher.java:80)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:294)
        at com.cisco.www.servletRouters.AXLAlpha.doPost(Unknown Source)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
        at sun.reflect.GeneratedMethodAccessor334.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:269)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
        at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:301)
        at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:283)
        at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56)
        at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
        at com.cisco.www.servletRouters.AXLFilter.doFilter(Unknown Source)
        at sun.reflect.GeneratedMethodAccessor376.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:269)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
        at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:301)
        at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:243)
        at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
        at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:56)
        at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:189)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
        at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
        at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
        at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:563)
        at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
        at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
        at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:555)
        at org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:394)
        at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
        at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
        at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:857)
        at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
        at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
        at java.lang.Thread.run(Thread.java:662)
2011-11-18 16:51:12,495 DEBUG [http-8443-20] axlapiservice.AXLCallFlow - In AXL CAll Flow
2011-11-18 16:51:12,496 DEBUG [http-8443-20] axlapiservice.AXLCallFlow - In AXL CAll Flow errorCodeStringnull
2011-11-18 16:51:12,496 DEBUG [http-8443-20] axlapiservice.AXLCallFlow - Setting soap fault
2011-11-18 16:51:12,496 DEBUG [http-8443-20] axlapiservice.AXLCallFlow - Setting soap fault2
2011-11-18 16:51:12,497 INFO  [http-8443-20] servletRouters.AXLAlpha - Request processed by AXIS
2011-11-18 16:51:12,498 INFO  [http-8443-20] servletRouters.AXLFilter - <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><soapenv:Fault><faultcode>soapenv:Server</faultcode><faultstring></faultstring><detail><axlError><axlcode>-1</axlcode><axlmessage></axlmessage><request>addPhone</request></axlError></detail></soapenv:Fault></soapenv:Body></soapenv:Envelope>
2011-11-18 16:51:12,498 INFO  [http-8443-20] servletRouters.AXLFilter - Request 1320659898151 was process in 417ms
---

--
Jonas Hoffmann




More information about the cisco-voip mailing list