WSSERVLET11: failed to parse runtime descriptor

Hi All
Your help will be appriciated.
I have created a simple hello world program.
Interface:
@WebService(name="HelloWorldPort",serviceName="HelloWorld" )
@SOAPBinding(style=SOAPBinding.Style.DOCUMENT,
use=SOAPBinding.Use.LITERAL)
public interface HelloWorld {
@WebMethod(operationName="greet", action="urn:greet")
@WebResult(name="greeting")
Greeting createGreeting(@WebParam(name="person") Person per);
implementation:
@WebService(name="HelloWorldPort",serviceName="HelloWorld" )
@SOAPBinding(style=SOAPBinding.Style.DOCUMENT,
use=SOAPBinding.Use.LITERAL)
public class HelloWorldImpl implements HelloWorld{
@WebMethod(operationName="greet", action="urn:greet")
@WebResult(name="greeting")
public Greeting createGreeting(Person per) {
Greeting grt = new Greeting();
grt.setMessage("Welcome back " + per.getFirstName() + "," +
per.getLastName());
grt.setDateTime(new Date());
return grt;
besides, i have Greeting and Person class defined.
I am using JAXWS RI (https://jax-ws.dev.java.net/jax-ws-20-fcs/) and
tomcat 5.5.25 with eclipse IDE 3.2.0
I am getting the following error while starting the tomcat server.
Below is an entire console log
Sep 13, 2007 4:06:41 PM org.apache.catalina.core.AprLifecycleListener
lifecycleEvent
INFO: The Apache Tomcat Native library which allows optimal
performance in production environments was not found on the
java.library.path: C:\Program Files\Java\jre1.5.0_12\bin;.;C:\WINDOWS
\system32;C:\WINDOWS;C:\Program Files\Java\jdk1.5.0_12\jre\bin;C:
\Program Files\PHP\;%AXIS2C_HOME%\lib;C:\j2sdk1.4.2_05\bin;%AXIS2_HOME%
\bin;C:\OraHome9i\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program
Files\Oracle\jre\1.1.8\bin;C:\oracle\ora81\bin;C:\Program Files\Oracle
\jre\1.1.7\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS
\System32\Wbem;C:\Program Files\ATI Technologies\ATI Control Panel;C:
\Program Files\QuickTime\QTSystem\;C:\ant\bin;C:\Program Files
\Subversion\bin;C:\Program Files\Subversion\bin;C:\Program Files
\Microsoft Visual Studio 8\SDK\v2.0\Bin;C:\product
\10.1.3.1\OraBPEL_1\MOBILE\sdk\bin;C:\Program Files\Java
\jdk1.5.0_12\jre\bin;C:\apache-cxf-2.1-incubator-SNAPSHOT\bin;C:\Sun
\jwsdp-2.0\jwsdp-shared\bin;C:\Program Files\PHP\;C:\axis2c-bin-1.0.0-
win32\lib;C:\j2sdk1.4.2_05\bin;C:\axis2-1.2\bin;C:\OraHome9i\bin;C:
\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre
\1.1.8\bin;C:\oracle\ora81\bin;C:\Program Files\Oracle\jre\1.1.7\bin;C:
\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files
\ATI Technologies\ATI Control Panel;C:\Program Files\QuickTime\QTSystem
\;C:\ant\bin;C:\Program Files\Subversion\bin;C:\Program Files
\Subversion\bin;C:\Program Files\Microsoft Visual Studio 8\SDK
\v2.0\Bin;C:\maven-2.0.7\bin
Sep 13, 2007 4:06:41 PM org.apache.coyote.http11.Http11BaseProtocol
init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Sep 13, 2007 4:06:41 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 1156 ms
Sep 13, 2007 4:06:41 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
Sep 13, 2007 4:06:41 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.25
Sep 13, 2007 4:06:41 PM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
Sep 13, 2007 4:06:42 PM
com.sun.xml.ws.transport.http.servlet.WSServletContextListener
contextInitialized
INFO: WSSERVLET12: JAX-WS context listener initializing
Sep 13, 2007 4:06:43 PM
com.sun.xml.ws.transport.http.servlet.RuntimeEndpointInfoParser
processWsdlLocation
INFO: wsdl cannot be found from DD or annotation. Will generate and
publish a new WSDL for SEI endpoints.
Sep 13, 2007 4:06:43 PM
com.sun.xml.ws.transport.http.servlet.WSServletContextListener
contextInitialized
SEVERE: WSSERVLET11: failed to parse runtime descriptor: class:
demo.hw.server.jaxws.CreateGreeting could not be found
class: demo.hw.server.jaxws.CreateGreeting could not be found
at com.sun.xml.ws.modeler.RuntimeModeler.getClass(RuntimeModeler.java:
269)
at
com.sun.xml.ws.modeler.RuntimeModeler.processDocWrappedMethod(RuntimeModeler.java:
558)
at
com.sun.xml.ws.modeler.RuntimeModeler.processMethod(RuntimeModeler.java:
505)
at
com.sun.xml.ws.modeler.RuntimeModeler.processClass(RuntimeModeler.java:
353)
at
com.sun.xml.ws.modeler.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:
249)
at
com.sun.xml.ws.server.RuntimeEndpointInfo.createSEIModel(RuntimeEndpointInfo.java:
168)
at
com.sun.xml.ws.server.RuntimeEndpointInfo.init(RuntimeEndpointInfo.java:
315)
at
com.sun.xml.ws.transport.http.servlet.WSServletContextListener.createModelAndMetadata(WSServletContextListener.java:
197)
at
com.sun.xml.ws.transport.http.servlet.WSServletContextListener.contextInitialized(WSServletContextListener.java:
117)
at
org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:
3764)
at
org.apache.catalina.core.StandardContext.start(StandardContext.java:
4216)
at
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:
760)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:
740)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:
544)
at
org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:
626)
at
org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:
553)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:
488)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
at
org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:
311)
at
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:
120)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:
1022)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:
1014)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:
443)
at
org.apache.catalina.core.StandardService.start(StandardService.java:
448)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:
700)
at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
Sep 13, 2007 4:06:43 PM org.apache.catalina.core.StandardContext
listenerStart
SEVERE: Exception sending context initialized event to listener
instance of class
com.sun.xml.ws.transport.http.servlet.WSServletContextListener
WSSERVLET11: failed to parse runtime descriptor: class:
demo.hw.server.jaxws.CreateGreeting could not be found
at
com.sun.xml.ws.transport.http.servlet.WSServletContextListener.contextInitialized(WSServletContextListener.java:
128)
at
org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:
3764)
at
org.apache.catalina.core.StandardContext.start(StandardContext.java:
4216)
at
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:
760)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:
740)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:
544)
at
org.apache.catalina.startup.HostConfig.deployDescriptor(HostConfig.java:
626)
at
org.apache.catalina.startup.HostConfig.deployDescriptors(HostConfig.java:
553)
at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:
488)
at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1138)
at
org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:
311)
at
org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:
120)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:
1022)
at org.apache.catalina.core.StandardHost.start(StandardHost.java:736)
at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:
1014)
at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:
443)
at
org.apache.catalina.core.StandardService.start(StandardService.java:
448)
at org.apache.catalina.core.StandardServer.start(StandardServer.java:
700)
at org.apache.catalina.startup.Catalina.start(Catalina.java:552)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:295)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:433)
Caused by: class: demo.hw.server.jaxws.CreateGreeting could not be
found
at com.sun.xml.ws.modeler.RuntimeModeler.getClass(RuntimeModeler.java:
269)
at
com.sun.xml.ws.modeler.RuntimeModeler.processDocWrappedMethod(RuntimeModeler.java:
558)
at
com.sun.xml.ws.modeler.RuntimeModeler.processMethod(RuntimeModeler.java:
505)
at
com.sun.xml.ws.modeler.RuntimeModeler.processClass(RuntimeModeler.java:
353)
at
com.sun.xml.ws.modeler.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:
249)
at
com.sun.xml.ws.server.RuntimeEndpointInfo.createSEIModel(RuntimeEndpointInfo.java:
168)
at
com.sun.xml.ws.server.RuntimeEndpointInfo.init(RuntimeEndpointInfo.java:
315)
at
com.sun.xml.ws.transport.http.servlet.WSServletContextListener.createModelAndMetadata(WSServletContextListener.java:
197)
at
com.sun.xml.ws.transport.http.servlet.WSServletContextListener.contextInitialized(WSServletContextListener.java:
117)
... 24 more
Sep 13, 2007 4:06:43 PM org.apache.catalina.core.StandardContext start
SEVERE: Error listenerStart
Sep 13, 2007 4:06:43 PM org.apache.catalina.core.StandardContext start
SEVERE: Context [JWSDP] startup failed due to previous errors
Sep 13, 2007 4:06:43 PM
com.sun.xml.ws.transport.http.servlet.WSServletContextListener
contextDestroyed
INFO: WSSERVLET13: JAX-WS context listener destroyed
Sep 13, 2007 4:06:44 PM org.apache.catalina.core.ApplicationContext
log
INFO: org.apache.webapp.balancer.BalancerFilter: init(): ruleChain:
[org.apache.webapp.balancer.RuleChain:
[org.apache.webapp.balancer.rules.URLStringMatchRule: Target string:
News / Redirect URL: http://www.cnn.com],
[org.apache.webapp.balancer.rules.RequestParameterRule: Target param
name: paramName / Target param value: paramValue / Redirect URL:
http://www.yahoo.com],
[org.apache.webapp.balancer.rules.AcceptEverythingRule: Redirect URL:
http://jakarta.apache.org]]
Sep 13, 2007 4:06:44 PM org.apache.catalina.core.ApplicationContext
log
INFO: ContextListener: contextInitialized()
Sep 13, 2007 4:06:44 PM org.apache.catalina.core.ApplicationContext
log
INFO: SessionListener: contextInitialized()
Sep 13, 2007 4:06:44 PM org.apache.catalina.core.ApplicationContext
log
INFO: ContextListener: contextInitialized()
Sep 13, 2007 4:06:44 PM org.apache.catalina.core.ApplicationContext
log
INFO: SessionListener: contextInitialized()
Sep 13, 2007 4:06:45 PM org.apache.coyote.http11.Http11BaseProtocol
start
INFO: Starting Coyote HTTP/1.1 on http-8080
Sep 13, 2007 4:06:45 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
Sep 13, 2007 4:06:45 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/78 config=null
Sep 13, 2007 4:06:45 PM org.apache.catalina.storeconfig.StoreLoader
load
INFO: Find registry server-registry.xml at classpath resource
Sep 13, 2007 4:06:46 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 4406 ms
Thanks in advance.

First, you have not correctly annotated your SEI and implemenation class. If you want to use a SEI to define your web service. Then your implementation class should not have any JAX-WS/ JSR 181 annotations except the following.
@WebService(endpointInterface="whateverpackage.HelloWorld", portName="HelloWorldPort",serviceName="HelloWorld" )
public class HelloWorldImpl implements HelloWorld{
public Greeting createGreeting(Person per) {
Greeting grt = new Greeting();
grt.setMessage("Welcome back " + per.getFirstName() + "," +
per.getLastName());
grt.setDateTime(new Date());
return grt;
and the SEI should be:
@WebService(name="HelloWorldPort")
@SOAPBinding(style=SOAPBinding.Style.DOCUMENT,
use=SOAPBinding.Use.LITERAL)
public interface HelloWorld {
@WebMethod(operationName="greet", action="urn:greet")
@WebResult(name="greeting")
Greeting createGreeting(@WebParam(name="person") Person per);
This is because the SEI defines the abstract description of the web service in the WSDL which is the PortType definition. Therefore no serviceName should be specified on the SEI. The implementation class defines the concrete portion of the WSDL so it will only specify the portName, serviceName and then reference the SEI via the endpointInterface element of the @WebService annotation.
As for helping out with Eclipse I can't be of any help. You might want to give NetBeans 5.5.1 or later a try.
Edited by: dkohlert on Sep 13, 2007 9:19 PM

Similar Messages

  • URGENT: Failed to parse descriptor file

    I have a servlet which actually act as an EJB client. The ejb server application
    is running on the same server(WL 7.0 SP4). The servlet was working fine when
    we were using a policy file which give all permissions to the code. Now as per
    customer requirement we changed the policy file to include only the permissions
    that we require. It is throwing this exception after this policy file change.
    What the code is doing is that using reflection, get the findByPrimaryKey method
    and invoke it on the home interface.
    The exception is:
    java.rmi.RemoteException: cannot unmarshaling return; nested exception is:
         java.rmi.UnexpectedException: Failed to parse descriptor file; nested exception
    is:
         org.xml.sax.SAXException: ResourceEntityResolver: did not resolve entity for
    publicId = -//BEA Systems, Inc.//RMI Runtime DTD 1.0//EN with resource name rmi.dtd
    What permission I will need to give in the policy file inorder to fix this problem?
    Thanks in advance,
    DW

    You might want to ask this in the security newsgroup.

  • JMSException : Failed to parse descriptor file : npx BasicRuntimeDescriptor

    I'm trying to implement my first jms queue using Weblogic and Eclipse and get an error message when I try to create a topic connection.
    I have a "Oracle WebLogic Server 12c (12.1.1) at localhost [base_domain]" server running. I run the following code using Debug As >>Java Application.
    public static void main(String[] args) throws Exception {
         Hashtable<String,String> env = new Hashtable<String,String>();
         env.put(Context.INITIAL_CONTEXT_FACTORY, "weblogic.jndi.WLInitialContextFactory");
         env.put(Context.PROVIDER_URL, "t3://localhost:7001");
         env.put("weblogic.jndi.createIntermediateContexts", "true");
         InitialContext ic = new InitialContext(env);
    TopicConnectionFactory tconFactory = (TopicConnectionFactory)
         PortableRemoteObject.narrow(ic.lookup("weblogic.jms.ConnectionFactory"),
         TopicConnectionFactory.class);
    TopicConnection tcon = tconFactory.createTopicConnection();
    The failure occurs when the last statement about is executed. Thanks in advance for your help.
    \====================================================================
    Exception in thread "main" weblogic.jms.common.JMSException: [JMSClientExceptions:055053]Error creating connection to the server: java.rmi.MarshalException: failed to marshal connectionCreateRequest(Lweblogic.jms.frontend.FEConnectionCreateRequest;); nested exception is:
         java.rmi.UnexpectedException: Failed to parse descriptor file; nested exception is:
         java.lang.NullPointerException.
         at weblogic.jms.client.JMSConnectionFactory.setupJMSConnection(JMSConnectionFactory.java:258)
         at weblogic.jms.client.JMSConnectionFactory.createConnectionInternal(JMSConnectionFactory.java:285)
         at weblogic.jms.client.JMSConnectionFactory.createTopicConnection(JMSConnectionFactory.java:184)
         at examples.jms.topic.TopicReceive.main(TopicReceive.java:121)
    Caused by: java.rmi.MarshalException: failed to marshal connectionCreateRequest(Lweblogic.jms.frontend.FEConnectionCreateRequest;); nested exception is:
         java.rmi.UnexpectedException: Failed to parse descriptor file; nested exception is:
         java.lang.NullPointerException
         at weblogic.rjvm.BasicOutboundRequest.marshalArgs(BasicOutboundRequest.java:92)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:453)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:272)
         at weblogic.jms.frontend.FEConnectionFactoryImpl_1211_WLStub.connectionCreateRequest(Unknown Source)
         at weblogic.jms.client.JMSConnectionFactory.setupJMSConnection(JMSConnectionFactory.java:224)
         ... 3 more
    Caused by: java.rmi.UnexpectedException: Failed to parse descriptor file; nested exception is:
         java.lang.NullPointerException
         at weblogic.rmi.internal.DescriptorManager.createRuntimeDescriptor(DescriptorManager.java:114)
         at weblogic.rmi.internal.DescriptorManager.getBasicRuntimeDescriptor(DescriptorManager.java:85)
         at weblogic.rmi.internal.DescriptorManager.getDescriptor(DescriptorManager.java:51)
         at weblogic.rmi.internal.DescriptorManager.getDescriptor(DescriptorManager.java:37)
         at weblogic.rmi.internal.OIDManager.makeServerReference(OIDManager.java:194)
         at weblogic.rmi.internal.OIDManager.getReplacement(OIDManager.java:175)
         at weblogic.rmi.utils.io.RemoteObjectReplacer.replaceSmartStubInfo(RemoteObjectReplacer.java:117)
         at weblogic.rmi.utils.io.RemoteObjectReplacer.replaceObject(RemoteObjectReplacer.java:103)
         at weblogic.rmi.utils.io.InteropObjectReplacer.replaceObject(InteropObjectReplacer.java:62)
         at weblogic.utils.io.ChunkedObjectOutputStream.replaceObject(ChunkedObjectOutputStream.java:39)
         at weblogic.utils.io.ChunkedObjectOutputStream$NestedObjectOutputStream.replaceObject(ChunkedObjectOutputStream.java:142)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1140)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:346)
         at weblogic.messaging.dispatcher.DispatcherWrapper.writeExternal(DispatcherWrapper.java:156)
         at weblogic.jms.frontend.FEConnectionCreateRequest.writeExternal(FEConnectionCreateRequest.java:98)
         at java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1443)
         at java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1414)
         at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1174)
         at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:346)
         at weblogic.rjvm.MsgAbbrevOutputStream.writeObject(MsgAbbrevOutputStream.java:623)
         at weblogic.rjvm.MsgAbbrevOutputStream.writeObjectWL(MsgAbbrevOutputStream.java:614)
         at weblogic.rmi.internal.ObjectIO.writeObject(ObjectIO.java:38)
         at weblogic.rjvm.BasicOutboundRequest.marshalArgs(BasicOutboundRequest.java:88)
         ... 7 more
    Caused by: java.lang.NullPointerException
         at weblogic.rmi.internal.BasicRuntimeDescriptor.createSkeletonClass(BasicRuntimeDescriptor.java:271)
         at weblogic.rmi.internal.BasicRuntimeDescriptor.<init>(BasicRuntimeDescriptor.java:157)
         at weblogic.rmi.internal.BasicRuntimeDescriptor.<init>(BasicRuntimeDescriptor.java:139)
         at weblogic.rmi.internal.DescriptorManager.createRuntimeDescriptor(DescriptorManager.java:106)
         ... 29 more

    I found another thread which indicates explicitly including the JARs in the class path clears up this issue. I tried that and it looks like it is working.

  • Failed to parse SQL Expression Field

    Hi,
    I design a report with an SQLExpressionField.  When I change datasource at runtime:
                    reportClientDoc.getDatabaseController().setTableLocation(table, tableNew);
    I got this error:
    ERROR com.businessobjects.reports.sdk.JRCCommunicationAdapter -  detected an exception: Failed to parse expression.
         at com.crystaldecisions.reports.reportdefinition.SQLExpressionFieldDefinition.ta(Unknown Source)
    How should I handle SQLExpressionFields?
    I am using CRJ (2.0.1.r566)

    Could be a couple of reasons.
    You can't use SQL SELECT statments in SQLExpressions, they were not nor are they supported to be used this way.
    SQLExpressions functions are defined in the Driver you are using so it may be you are not using the same Driver version as originally created with.
    Need more info on the driver you are using and the Expression SQL you are using?
    It may be you are failing to log on to the new server also.
    Don

  • Could not parse deployment descriptor: org.xml.sax.SAXParseException

    I am using Taglib in JSP file .
    I am calling the AbcTagLib from my jsp Login.jsp file.
    The entries for the taglib is there in web.xml file.
    Please see the attachments.
    I am getting the following errors while running my JSP file:
    Parsing of JSP File '/jsp/Login.jsp' failed:
    /jsp/Login.jsp: Could not parse deployment descriptor: org.xml.sax.SAXParseException:
    Could not parse: taglib starting at line 1
    probably occurred due to an error in /jsp/Login.jsp:
    <%@ taglib uri="AbcTagLib" prefix="abc" %>
    Please look in to it and suggest some solution.
    The files are :
    AbcTagLib.tld
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc. //DTD JSP Tag Library 1.1//EN"
    "web-jsptaglib_1_1.dtd">
    <taglib>
    <tlibversion>1.0</tlibversion>
    <jspversion>1.1</jspversion>
    <shortname>TagLib</shortname>
         <tag>
         <name>label</name>
         <tagclass>com.abc.internet.common.taglib.LiteralTag</tagclass>
         <bodycontent>empty</bodycontent>
         <info>This is a simple tag for ABC</info>
              <attribute>
                   <name>name</name>
                   <required>false</required>
                   <rtexpvalue>false</rtexpvalue>
              </attribute>
         </tag>
         <tag>
         <name>linkAccess</name>
         <tagclass>com.abc.internet.common.taglib.LinkAccessTag</tagclass>
         <bodycontent>JSP</bodycontent>
         <info>this is the tag class for showing the button</info>
         <attribute>
         <name>linkId</name>
         <required>true</required>
         <rtexpvalue>false</rtexpvalue>
         </attribute>
         <attribute>
         <name>flag</name>
         <required>true</required>
         <rtexpvalue>false</rtexpvalue>
         </attribute>
         </tag>
    </taglib>
    web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN'
    'file:///D:/bea/wlserver6.0sp1/web-app_2_2.dtd'>
    <web-app>
    <taglib>
    <taglib-uri>AbcTagLib</taglib-uri>
    <taglib-location>/WEB-INF/AmsTagLib.tld</taglib-location>
    </taglib>
    </web-app>
    Login.jsp
    <%@ page language="Java" errorPage="/jsp/AbcJspError.jsp" import="java.util.Vector,com.abc.internet.common.util.UtilFunctions,com.abc.internet.welcome.form.LoginForm,com.abc.internet.common.util.*"%>
    <%@ taglib uri="AbcTagLib" prefix="abc" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <HTML>
    <HEAD>
         <TITLE>LOGIN SCREEN</TITLE>
         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </HEAD>
    <BODY class="imgSpacerTan" onUnload="javascript:funcCloseErrorWindow();">
    <html:form action="/struts/Login" name="LoginForm" type="com.abc.internet.welcome.form.LoginForm"
    onsubmit="onLogin()">
         <table align="center" cellpadding=0 cellspacing=0 border=0 class="imgSpacerTan">
              <tr>
                   <td align="left">
                        <img border="0" src="../images/logo.gif">
                   </td>
              </tr>
         </table>
         <table align="center" cellpadding=0 cellspacing=0 border=0 class="imgSpacerTan">
              <tr> <td ALIGN="center" class="header" height=30px><font class="fontBlue" >Welcome
    to the</font></td></tr>
              <tr> <td ALIGN="center" class="header" height=30px><font class="fontBlue" >ABC
    System</font></td></tr>
              <tr> <td ALIGN="center" class="header" height=20>  </td></tr>
         </table>
         <table cellpadding=0 cellspacing=0 border=5 bordercolor="#293163" class="deadlineHistoryTablebgcolor"
    align="center">
              <tr class="deadlineHistoryTablebgcolor">
                   <td class="deadlineHistoryTablebgcolor">
                        <table cellpadding=10 cellspacing=10 border=0 width="400" class="deadlineHistoryTablebgcolor"
    align="center">
                             <tr>
                                  <td>
                                       <script language="javascript">
                                            if(navigator.appName.indexOf("Netscape") != -1)
                                                      document.write('<table cellpadding=0 cellspacing=0 border=1 width="400"
    bordercolor="#293163" class="deadlineHistoryTablebgcolor" align="center">');
                                            else
                                                      document.write('<table cellpadding=0 cellspacing=0 border=1 width="400"
    bordercolorlight="#293163" class="deadlineHistoryTablebgcolor" align="center">');
                                       </script>
                                            <tr>
                                                 <td>
                                                      <table cellpadding=7 cellspacing=7 border=0 width="400" bordercolor="#293163"
    class="deadlineHistoryTablebgcolor" align="center">
                                                           <tr>
                                                                <td>
                                                                     <font class="fontBlue">   USER ID       &nbsp:  </font><input
    type="text" name="iv-user">
                                                                </td>
                                                           </tr>
                                                      </table>
                                                 </td>
                                            </tr>
                                       </table>     
                                  </td>
                             </tr>
                             <tr>
                                  <td>
                                       <table cellpadding=0 cellspacing=0 border=1 width="400" class="borderBlue"
    class="deadlineHistoryTablebgcolor" align="center">
                                            <tr>
                                                 <td>
                                                      <table cellpadding=7 cellspacing=7 border=0 width="400" class="borderBlue"
    class="deadlineHistoryTablebgcolor" align="center">
                                                           <tr>
                                                                <td align="center" ><input type="submit" value="Submit" onclick="return
    (onLogin())" ></td>
                                                           </tr>
                                                      </table>
                                                 </td>
                                            </tr>
                                       </table>
                                  </td>
                             </tr>
                        </table>
                   </td>
              </tr>
         </table>
    </html:form>     
    </body>
    </html>
    Thanks

    I am using Taglib in JSP file .
    I am calling the AbcTagLib from my jsp Login.jsp file.
    The entries for the taglib is there in web.xml file.
    Please see the attachments.
    I am getting the following errors while running my JSP file:
    Parsing of JSP File '/jsp/Login.jsp' failed:
    /jsp/Login.jsp: Could not parse deployment descriptor: org.xml.sax.SAXParseException:
    Could not parse: taglib starting at line 1
    probably occurred due to an error in /jsp/Login.jsp:
    <%@ taglib uri="AbcTagLib" prefix="abc" %>
    Please look in to it and suggest some solution.
    The files are :
    AbcTagLib.tld
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc. //DTD JSP Tag Library 1.1//EN"
    "web-jsptaglib_1_1.dtd">
    <taglib>
    <tlibversion>1.0</tlibversion>
    <jspversion>1.1</jspversion>
    <shortname>TagLib</shortname>
         <tag>
         <name>label</name>
         <tagclass>com.abc.internet.common.taglib.LiteralTag</tagclass>
         <bodycontent>empty</bodycontent>
         <info>This is a simple tag for ABC</info>
              <attribute>
                   <name>name</name>
                   <required>false</required>
                   <rtexpvalue>false</rtexpvalue>
              </attribute>
         </tag>
         <tag>
         <name>linkAccess</name>
         <tagclass>com.abc.internet.common.taglib.LinkAccessTag</tagclass>
         <bodycontent>JSP</bodycontent>
         <info>this is the tag class for showing the button</info>
         <attribute>
         <name>linkId</name>
         <required>true</required>
         <rtexpvalue>false</rtexpvalue>
         </attribute>
         <attribute>
         <name>flag</name>
         <required>true</required>
         <rtexpvalue>false</rtexpvalue>
         </attribute>
         </tag>
    </taglib>
    web.xml
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN'
    'file:///D:/bea/wlserver6.0sp1/web-app_2_2.dtd'>
    <web-app>
    <taglib>
    <taglib-uri>AbcTagLib</taglib-uri>
    <taglib-location>/WEB-INF/AmsTagLib.tld</taglib-location>
    </taglib>
    </web-app>
    Login.jsp
    <%@ page language="Java" errorPage="/jsp/AbcJspError.jsp" import="java.util.Vector,com.abc.internet.common.util.UtilFunctions,com.abc.internet.welcome.form.LoginForm,com.abc.internet.common.util.*"%>
    <%@ taglib uri="AbcTagLib" prefix="abc" %>
    <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
    <HTML>
    <HEAD>
         <TITLE>LOGIN SCREEN</TITLE>
         <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </HEAD>
    <BODY class="imgSpacerTan" onUnload="javascript:funcCloseErrorWindow();">
    <html:form action="/struts/Login" name="LoginForm" type="com.abc.internet.welcome.form.LoginForm"
    onsubmit="onLogin()">
         <table align="center" cellpadding=0 cellspacing=0 border=0 class="imgSpacerTan">
              <tr>
                   <td align="left">
                        <img border="0" src="../images/logo.gif">
                   </td>
              </tr>
         </table>
         <table align="center" cellpadding=0 cellspacing=0 border=0 class="imgSpacerTan">
              <tr> <td ALIGN="center" class="header" height=30px><font class="fontBlue" >Welcome
    to the</font></td></tr>
              <tr> <td ALIGN="center" class="header" height=30px><font class="fontBlue" >ABC
    System</font></td></tr>
              <tr> <td ALIGN="center" class="header" height=20>  </td></tr>
         </table>
         <table cellpadding=0 cellspacing=0 border=5 bordercolor="#293163" class="deadlineHistoryTablebgcolor"
    align="center">
              <tr class="deadlineHistoryTablebgcolor">
                   <td class="deadlineHistoryTablebgcolor">
                        <table cellpadding=10 cellspacing=10 border=0 width="400" class="deadlineHistoryTablebgcolor"
    align="center">
                             <tr>
                                  <td>
                                       <script language="javascript">
                                            if(navigator.appName.indexOf("Netscape") != -1)
                                                      document.write('<table cellpadding=0 cellspacing=0 border=1 width="400"
    bordercolor="#293163" class="deadlineHistoryTablebgcolor" align="center">');
                                            else
                                                      document.write('<table cellpadding=0 cellspacing=0 border=1 width="400"
    bordercolorlight="#293163" class="deadlineHistoryTablebgcolor" align="center">');
                                       </script>
                                            <tr>
                                                 <td>
                                                      <table cellpadding=7 cellspacing=7 border=0 width="400" bordercolor="#293163"
    class="deadlineHistoryTablebgcolor" align="center">
                                                           <tr>
                                                                <td>
                                                                     <font class="fontBlue">   USER ID       &nbsp:  </font><input
    type="text" name="iv-user">
                                                                </td>
                                                           </tr>
                                                      </table>
                                                 </td>
                                            </tr>
                                       </table>     
                                  </td>
                             </tr>
                             <tr>
                                  <td>
                                       <table cellpadding=0 cellspacing=0 border=1 width="400" class="borderBlue"
    class="deadlineHistoryTablebgcolor" align="center">
                                            <tr>
                                                 <td>
                                                      <table cellpadding=7 cellspacing=7 border=0 width="400" class="borderBlue"
    class="deadlineHistoryTablebgcolor" align="center">
                                                           <tr>
                                                                <td align="center" ><input type="submit" value="Submit" onclick="return
    (onLogin())" ></td>
                                                           </tr>
                                                      </table>
                                                 </td>
                                            </tr>
                                       </table>
                                  </td>
                             </tr>
                        </table>
                   </td>
              </tr>
         </table>
    </html:form>     
    </body>
    </html>
    Thanks

  • Remote App from Ipad return "Failed to parse authorization Challange"

    Hi,
    I have set up a Remote App infrastructure on Windows 2012 server , I have publish some apps , I have publish my server on internet opening port 443 and 3389 for RDP with a public rapid SSL wildcard certificate  ... everything works on pcs but when I try
    to connect with my ipad from external I receive the error:
    "Failed to parse authorization Challange"
    with the following log:
    ===== DO NOT DELETE CONTENT BELOW THIS LINE =====
    [2014-May-06 12:03:11] RDP (0): Resolved 'apps.mydomain.com' to '195.206.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:03:11] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:03:11] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:03:11] RDP (0): Error message: The gateway failed to connect with the message: 404 Not Found(phase: 0, type: 0, reason: 0, systemCode: -1, systemMessage: )
    [2014-May-06 12:03:11] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-May-06 12:03:11] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:03:11] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-May-06 12:03:13] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-May-06 12:03:13] RDP (0): client version: 8.0.5.24403 on iPad3,6 (iPhone OS 7.1.1)
    [2014-May-06 12:03:13] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:03:13] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 77310DD3EA18B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 01C00DD3EA18B941;
        gatewayMode = 2;
        host = "SRVAPP.MYDOMAIN";
        label = AS400;
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||AS400";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            77310DD3EA18B941,
            84F1ABD3EA18B941,
            51A54AD4EA18B941,
            DF88EED4EA18B941,
            9E7D8DD5EA18B941,
            E1EB2BD6EA18B941,
            CA18C3D6EA18B941
        host = "apps.mydomain.com";
        id = 01C00DD3EA18B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:03:13] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:03:13] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:03:13] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:03:13] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:03:13] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:03:13] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:03:13] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:03:13] RDP (0): Not using any proxy
    [2014-May-06 12:03:13] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:03:13] RDP (0): Resolved 'SRVAPP.mydomain' to 'ERROR: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:03:13] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.(phase: 0, type: 0, reason: 0, systemCode: 0, systemMessage: )
    [2014-May-06 12:03:13] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:03:14] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 77310DD3EA18B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 01C00DD3EA18B941;
        gatewayMode = 2;
        gwAutodetectState = kConnectionGwAutodectedForceGW;
        host = "SRVAPP.mydomain";
        label = AS400;
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||AS400";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            77310DD3EA18B941,
            84F1ABD3EA18B941,
            51A54AD4EA18B941,
            DF88EED4EA18B941,
            9E7D8DD5EA18B941,
            E1EB2BD6EA18B941,
            CA18C3D6EA18B941
        host = "apps.mydomain.com";
        id = 01C00DD3EA18B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:03:14] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:03:14] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:03:14] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:03:14] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:03:14] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:03:14] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:03:14] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:03:14] RDP (0): Not using any proxy
    [2014-May-06 12:03:14] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:03:14] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:03:14] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:03:14] RDP (0): HTTP RPC_IN_DATA connection redirected from https://apps.mydomain.com:443/rpc/rpcproxy.dll?localhost:3388 to https://apps.mydomain.com/RDWeb/rpc/rpcproxy.dll
    [2014-May-06 12:03:14] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:03:14] RDP (0): HTTP RPC_OUT_DATA connection redirected from https://apps.mydomain.com:443/rpc/rpcproxy.dll?localhost:3388 to https://apps.mydomain.com/RDWeb/rpc/rpcproxy.dll
    [2014-May-06 12:03:14] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:03:16] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:03:16] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:03:16] RDP (0): Error message: The gateway failed to connect with the message: 404 Not Found(phase: 0, type: 0, reason: 0, systemCode: -1, systemMessage: )
    [2014-May-06 12:03:16] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-May-06 12:03:16] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:03:16] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-May-06 12:05:15] RDP (0): Application went into background
    [2014-May-06 12:26:21] RDP (0): Application became foreground application
    [2014-May-06 12:26:31] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-May-06 12:26:31] RDP (0): client version: 8.0.5.24403 on iPad3,6 (iPhone OS 7.1.1)
    [2014-May-06 12:26:31] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:26:31] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 9EB75556F018B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 01C00DD3EA18B941;
        gatewayMode = 2;
        host = "SRVAPP.MYDOMAIN";
        label = "CAPA_64bit";
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||CAPA_64bit";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            77310DD3EA18B941,
            84F1ABD3EA18B941,
            51A54AD4EA18B941,
            DF88EED4EA18B941,
            9E7D8DD5EA18B941,
            E1EB2BD6EA18B941,
            CA18C3D6EA18B941,
            5F0AB755F018B941,
            9EB75556F018B941,
            57CCEC56F018B941
        host = "apps.mydomain.com";
        id = 01C00DD3EA18B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:26:31] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:26:31] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:26:31] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:26:31] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:26:31] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:26:31] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:26:31] RDP (0): Not using any proxy
    [2014-May-06 12:26:31] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:26:31] RDP (0): Resolved 'SRVAPP.MYDOMAIN' to 'ERROR: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:26:31] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.(phase: 0, type: 0, reason: 0, systemCode: 0, systemMessage: )
    [2014-May-06 12:26:31] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:26:31] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 9EB75556F018B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 01C00DD3EA18B941;
        gatewayMode = 2;
        gwAutodetectState = kConnectionGwAutodectedForceGW;
        host = "SRVAPP.MYDOMAIN";
        label = "CAPA_64bit";
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||CAPA_64bit";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            77310DD3EA18B941,
            84F1ABD3EA18B941,
            51A54AD4EA18B941,
            DF88EED4EA18B941,
            9E7D8DD5EA18B941,
            E1EB2BD6EA18B941,
            CA18C3D6EA18B941,
            5F0AB755F018B941,
            9EB75556F018B941,
            57CCEC56F018B941,
            BFD38857F018B941
        host = "apps.mydomain.com";
        id = 01C00DD3EA18B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:26:31] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:26:31] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:26:31] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:26:31] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:26:31] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:26:31] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:26:31] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:26:31] RDP (0): Not using any proxy
    [2014-May-06 12:26:31] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:26:31] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:26:31] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:26:33] RDP (0): HTTP RPC_OUT_DATA connection redirected from https://apps.mydomain.com:443/rpc/rpcproxy.dll?localhost:3388 to https://apps.mydomain.com/RDWeb/rpc/rpcproxy.dll
    [2014-May-06 12:26:33] RDP (0): HTTP RPC_IN_DATA connection redirected from https://apps.mydomain.com:443/rpc/rpcproxy.dll?localhost:3388 to https://apps.mydomain.com/RDWeb/rpc/rpcproxy.dll
    [2014-May-06 12:26:33] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:26:33] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:26:33] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:26:33] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:26:33] RDP (0): Error message: The gateway failed to connect with the message: 404 Not Found(phase: 0, type: 0, reason: 0, systemCode: -1, systemMessage: )
    [2014-May-06 12:26:33] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-May-06 12:26:33] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:26:33] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-May-06 12:28:37] RDP (0): Application went into background
    [2014-May-06 12:34:23] RDP (0): Application became foreground application
    [2014-May-06 12:34:32] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-May-06 12:34:32] RDP (0): client version: 8.0.5.24403 on iPad3,6 (iPhone OS 7.1.1)
    [2014-May-06 12:34:32] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:34:32] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 31CE4F37F218B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 01C00DD3EA18B941;
        gatewayMode = 2;
        host = "SRVAPP.MYDOMAIN";
        label = "DifettiProduzione_64bit";
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||DifettiProduzione_64bit";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            77310DD3EA18B941,
            84F1ABD3EA18B941,
            51A54AD4EA18B941,
            DF88EED4EA18B941,
            9E7D8DD5EA18B941,
            E1EB2BD6EA18B941,
            CA18C3D6EA18B941,
            5F0AB755F018B941,
            9EB75556F018B941,
            57CCEC56F018B941,
            BFD38857F018B941,
            F6424158F018B941,
            66C1EC58F018B941,
            83858B59F018B941,
            6EA42436F218B941,
            1CEEAB36F218B941,
            31CE4F37F218B941,
            F7B0DF37F218B941,
            3D436438F218B941
        host = "apps.mydomain.com";
        id = 01C00DD3EA18B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:34:32] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:34:32] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:34:32] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:34:32] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:34:32] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:34:32] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:34:32] RDP (0): Not using any proxy
    [2014-May-06 12:34:32] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:34:32] RDP (0): Resolved 'SRVAPP.MYDOMAIN' to 'ERROR: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:34:32] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.(phase: 0, type: 0, reason: 0, systemCode: 0, systemMessage: )
    [2014-May-06 12:34:32] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:34:32] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 31CE4F37F218B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 01C00DD3EA18B941;
        gatewayMode = 2;
        gwAutodetectState = kConnectionGwAutodectedForceGW;
        host = "SRVAPP.MYDOMAIN";
        label = "DifettiProduzione_64bit";
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||DifettiProduzione_64bit";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            77310DD3EA18B941,
            84F1ABD3EA18B941,
            51A54AD4EA18B941,
            DF88EED4EA18B941,
            9E7D8DD5EA18B941,
            E1EB2BD6EA18B941,
            CA18C3D6EA18B941,
            5F0AB755F018B941,
            9EB75556F018B941,
            57CCEC56F018B941,
            BFD38857F018B941,
            F6424158F018B941,
            66C1EC58F018B941,
            83858B59F018B941,
            6EA42436F218B941,
            1CEEAB36F218B941,
            31CE4F37F218B941,
            F7B0DF37F218B941,
            3D436438F218B941,
            45F0EB38F218B941
        host = "apps.mydomain.com";
        id = 01C00DD3EA18B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:34:32] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:34:32] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:34:32] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:34:32] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:34:32] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:34:32] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:34:32] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:34:32] RDP (0): Not using any proxy
    [2014-May-06 12:34:32] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:34:32] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:34:32] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:34:35] RDP (0): HTTP RPC_IN_DATA connection redirected from https://apps.mydomain.com:443/rpc/rpcproxy.dll?localhost:3388 to https://apps.mydomain.com/RDWeb/rpc/rpcproxy.dll
    [2014-May-06 12:34:35] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:34:35] RDP (0): HTTP RPC_OUT_DATA connection redirected from https://apps.mydomain.com:443/rpc/rpcproxy.dll?localhost:3388 to https://apps.mydomain.com/RDWeb/rpc/rpcproxy.dll
    [2014-May-06 12:34:35] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:34:35] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:34:35] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:34:35] RDP (0): Error message: The gateway failed to connect with the message: 404 Not Found(phase: 0, type: 0, reason: 0, systemCode: -1, systemMessage: )
    [2014-May-06 12:34:35] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-May-06 12:34:35] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:34:35] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-May-06 12:35:28] RDP (0): Application went into background
    [2014-May-06 12:35:34] RDP (0): Application became foreground application
    [2014-May-06 12:35:45] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-May-06 12:35:45] RDP (0): client version: 8.0.5.24403 on iPad3,6 (iPhone OS 7.1.1)
    [2014-May-06 12:35:45] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:35:45] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 2C11E07DF218B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 8CDC4B79F218B941;
        gatewayMode = 2;
        host = "SRVAPP.MYDOMAIN";
        label = "DifettiProduzione_64bit";
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||DifettiProduzione_64bit";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            30664B79F218B941,
            37A6A77CF218B941,
            EA3C467DF218B941,
            2C11E07DF218B941,
            EBE2767EF218B941,
            26E3887FF218B941,
            06F10D80F218B941,
            3EAE9580F218B941
        host = "apps.mydomain.com";
        id = 8CDC4B79F218B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:35:45] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:35:45] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:35:45] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:35:45] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:35:45] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:35:45] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:35:45] RDP (0): Not using any proxy
    [2014-May-06 12:35:45] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:35:45] RDP (0): Resolved 'SRVAPP.MYDOMAIN' to 'ERROR: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:35:45] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.(phase: 0, type: 0, reason: 0, systemCode: 0, systemMessage: )
    [2014-May-06 12:35:45] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:35:45] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 2C11E07DF218B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 8CDC4B79F218B941;
        gatewayMode = 2;
        gwAutodetectState = kConnectionGwAutodectedForceGW;
        host = "SRVAPP.MYDOMAIN";
        label = "DifettiProduzione_64bit";
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||DifettiProduzione_64bit";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            30664B79F218B941,
            37A6A77CF218B941,
            EA3C467DF218B941,
            2C11E07DF218B941,
            EBE2767EF218B941,
            26E3887FF218B941,
            06F10D80F218B941,
            3EAE9580F218B941
        host = "apps.mydomain.com";
        id = 8CDC4B79F218B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:35:45] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:35:45] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:35:45] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:35:45] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:35:45] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:35:45] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:35:45] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:35:45] RDP (0): Not using any proxy
    [2014-May-06 12:35:45] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:35:45] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:35:45] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:35:46] RDP (0): HTTP RPC_IN_DATA connection redirected from https://apps.mydomain.com:443/rpc/rpcproxy.dll?localhost:3388 to https://apps.mydomain.com/RDWeb/rpc/rpcproxy.dll
    [2014-May-06 12:35:46] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:35:46] RDP (0): HTTP RPC_OUT_DATA connection redirected from https://apps.mydomain.com:443/rpc/rpcproxy.dll?localhost:3388 to https://apps.mydomain.com/RDWeb/rpc/rpcproxy.dll
    [2014-May-06 12:35:46] RDP (0): Resolved 'apps.mydomain.com' to '195.z.y.x' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:35:46] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:35:46] RDP (0): Exception caught: Exception in file '/Users/build/jenkins/workspace/rc-ios-develop/protocols/RDP/librdp/librdp/private/httpendpoint.cpp' at line 209
        User Message : The gateway failed to connect with the message: 404 Not Found
    [2014-May-06 12:35:46] RDP (0): Error message: The gateway failed to connect with the message: 404 Not Found(phase: 0, type: 0, reason: 0, systemCode: -1, systemMessage: )
    [2014-May-06 12:35:46] RDP (0): Protocol state changed to: ProtocolDisconnecting(7)
    [2014-May-06 12:35:46] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:35:46] RDP (0): ------ END ACTIVE CONNECTION ------
    [2014-May-06 12:37:52] RDP (0): Application went into background
    [2014-May-06 12:38:25] RDP (0): Application became foreground application
    [2014-May-06 12:38:33] RDP (0): ----- BEGIN ACTIVE CONNECTION -----
    [2014-May-06 12:38:33] RDP (0): client version: 8.0.5.24403 on iPad3,6 (iPhone OS 7.1.1)
    [2014-May-06 12:38:33] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:38:34] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:38:34] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 75AFEF2AF318B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 8CDC4B79F218B941;
        gatewayMode = 2;
        host = "SRVAPP.MYDOMAIN";
        label = "DifettiProduzione_64bit";
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||DifettiProduzione_64bit";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
        connections =     (
            30664B79F218B941,
            37A6A77CF218B941,
            EA3C467DF218B941,
            2C11E07DF218B941,
            EBE2767EF218B941,
            26E3887FF218B941,
            06F10D80F218B941,
            3EAE9580F218B941,
            7F340829F318B941,
            1BBDAE29F318B941,
            26A8452AF318B941,
            75AFEF2AF318B941
        host = "apps.mydomain.com";
        id = 8CDC4B79F218B941;
        port = 443;
        temporary = 1;
        type = rdp;
        kCFProxyTypeKey = kCFProxyTypeNone;
    [2014-May-06 12:38:34] RDP (0): --- BEGIN INTERFACE LIST ---
    [2014-May-06 12:38:34] RDP (0): lo0 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): lo0 af=30 (AF_INET6)  addr=::1 netmask=ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff
    [2014-May-06 12:38:34] RDP (0): lo0 af=2 (AF_INET)  addr=127.0.0.1 netmask=255.0.0.0
    [2014-May-06 12:38:34] RDP (0): lo0 af=30 (AF_INET6)  addr=fe80::1%lo0 netmask=ffff:ffff:ffff:ffff::
    [2014-May-06 12:38:34] RDP (0): pdp_ip0 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): pdp_ip0 af=2 (AF_INET)  addr=109.112.3.43 netmask=255.255.255.255
    [2014-May-06 12:38:34] RDP (0): pdp_ip1 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): pdp_ip2 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): pdp_ip3 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): ap1 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): en0 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): en2 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): awdl0 af=18  addr= netmask=
    [2014-May-06 12:38:34] RDP (0): --- END INTERFACE LIST ---
    [2014-May-06 12:38:34] RDP (0): Not using any proxy
    [2014-May-06 12:38:34] RDP (0): Protocol state changed to: ProtocolConnectingNetwork(1)
    [2014-May-06 12:38:35] RDP (0): Resolved 'SRVAPP.MYDOMAIN' to 'ERROR: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.' using NameResolveMethod_Unknown(0)
    [2014-May-06 12:38:35] RDP (0): Error message: Unable to connect to remote PC. Please provide the fully-qualified name or the IP address of the remote PC, and then try again.(phase: 0, type: 0, reason: 0, systemCode: 0, systemMessage: )
    [2014-May-06 12:38:35] RDP (0): Protocol state changed to: ProtocolDisconnected(8)
    [2014-May-06 12:38:35] RDP (0): Final rdp configuration used: {
        activeUsername = "COPAN\\ataglietti";
        arcTimeout = 1800;
        cacheId = 75AFEF2AF318B941;
        certificatesUseRedirectName = 1;
        configurationVersion = 8;
        font = 1;
        gatewayId = 8CDC4B79F218B941;
        gatewayMode = 2;
        gwAutodetectState = kConnectionGwAutodectedForceGW;
        host = "SRVAPP.MYDOMAIN";
        label = "DifettiProduzione_64bit";
        loadBalanceInfo = "tsv://MS Terminal Services Plugin.1.QuickSessionCollection";
        mouseMode = "-1";
        port = 3389;
        remoteProgram = "||DifettiProduzione_64bit";
        remoteProgramArguments = "";
        remoteProgramRail = 1;
        temporary = 1;
        type = rdp;
        useAlt = 0;
        utilityBar = "-1";
        webFeedVersion = "Windows 2008 R2 or newer";
       THANKS FOR SUGGESTION

    Hi,
    Thank you for posting in Windows Server Forum.
    Please check that you have enable RD Web SSO and as you have buy RapidSSL wildcard certificate you need to see that certificate installed with its private key and also need to store the certificate under local computer personal store.
    In addition check the group policy whether you added server name in “Allow Delegating Default Credentials” under below path.
    Computer Configuration\Administrative Templates\System\Credentials Delegation
    Please check below articles for details.
    Remote Desktop Web Access single sign-on now easier to enable in Windows Server 2012
    http://blogs.msdn.com/b/rds/archive/2012/06/25/remote-desktop-web-access-single-sign-on-now-easier-to-enable-in-windows-server-2012.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • LO Error 26005 Failed to parse XML

    Good Afternoon,
    I currently have an Xcelsius document that is attached to a Crystal Report that is in Infoview.  I have it connected by using Live Office.  The Crystal report basically contains a cross tab of data and is run nightly in our system.  I bring back the data into Excel in order to build an Xcelsius document off of it.  I havent' been using the Live Office piece all that much until recently therefore please excuse my ignorance.  I setup my data connection as a Live Office connection.  My server connection seems to be correct:
    http://WHGCRYSTAL3:8080/dswsbobje/services/session
    However, when I try to refresh the document, I get the following error:
    soapenv:Server.generalException: Failed to parse XML. (LO 26005)
    Any ideas as to what this could be?  I have Crystal Xcelsius Enterprise 2008.  The version is 5.0.0.99 and the build number is 12,0,0,121.  I think I am all updated on service packs but I could  be wrong.  Any help is appreciated.

    I downloaded all of the service packs and fixes and now I am up to date.  I am still getting the error with an additional error.   This is what is says:
    Failed to parse XML. (LO 26005) (LO 26000)
    Any other ideas as to why this is happening?

  • Failed to parse SQL query: ORA-01403: no data found

    I'm going to post and answer my own question in the hope that others will not have to struggle with this error.
    Using a report of the type PL/SQL Function Body Returning SQL and using generic columns you may run into this error
    failed to parse SQL query:
    ORA-01403: no data found
    The SQL will run stand alone but the report fails.
    There is a setting just below the source you should check:
    "Maximum number of generic report columns"
    In my case the number of columns was dynamic and when it exceeded the number set as the maximium number of generic columns I received the 1403 error.
    Hope this helps someone.
    Greg

    Thanks for much for the pointer. For anyone else struggling with this too, I found that my generic columns had unordered themselves. Reordering them solved the problem for me.
    Edited by: user11096971 on Jul 22, 2010 3:19 AM

  • Classic Report CSV output failed to parse SQL query

    Hi,
    I'm trying to get a CSV output from a classic report. I'm generating the report based on a PL/SQL block that will return an SQL query. But when i download the CSV excel just gives me a:
    failed to parse SQL query:
    ORA-00936: Missing expression
    and shows me the query that the application is trying to parse. I'm also using bind variables (page items) in the PL/SQL block that is returning me the SQL query. I think that the reason that it fails to parse the query is that the query that is shown in excel has no bind variable values.
    Anyone got any ideas?

    Hi Arif,
    run your page in debug mode and check out the SQL statement which is actually executed for the report. That might help to diagnose what is going wrong.
    If you wish you can also post the report SQL statement which is getting executed.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Failed to parse method name:

    Hi,
    I've the following environment:
    - Sun Solaris
    - WL 61 without service pack
    - jdk 1.3.1
    I wrote a simple Session Bean and make it IIOP enabled.
    For the Java-Corba client I use an IDL which describes
    the interfaces of the remote and home interface of the
    Session Bean.
    Everything works fine, that means I get the WL's NameService,
    home and the remote object. If I call a method of the remote
    object I got the following message:
    <Info> <IIOPEndPoint> <failed to parse method name: foundUnkownSubscriber>
    I found something in you newsgroup and you said the we should
    use SP2. Where can I get this SP2?
    Regards
    Andre Genser

    Andy Piper <[email protected]> wrote:
    "Andre Genser" <[email protected]> writes:
    I've the following environment:
    - Sun Solaris
    - WL 61 without service pack
    - jdk 1.3.1
    I wrote a simple Session Bean and make it IIOP enabled.
    For the Java-Corba client I use an IDL which describes
    the interfaces of the remote and home interface of the
    Session Bean.
    Everything works fine, that means I get the WL's NameService,
    home and the remote object. If I call a method of the remote
    object I got the following message:
    <Info> <IIOPEndPoint> <failed to parse method name: foundUnkownSubscriber>Are you sure you are spelling correctly? Seems like this should be
    foundUnknownSubscriber.
    andy
    -- Sorry Andy, it was the name but I didn't solved the problem. Now I got the following
    exception:
    <Apr 16, 2002 8:47:29 AM CEST> <Warning> <Dispatcher> <Error thrown by rmi server:
    'weblogic.rmi.cluster.ClusterableServerRef@111 - jvmid: '-5101001595216439928S:10.2.9.70:[8045,8045,9045,9045,8045,9045,-1]:agenser8045:myserver',
    oid: '273', implementation: '[BaseEJBObject] home: prototype.CallBackBean_w4a7u3_HomeImpl@29bced''
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    >
    <Apr 16, 2002 8:47:29 AM CEST> <Error> <Kernel> <ExecuteRequest failed
    java.lang.OutOfMemoryError
    <<no stack trace available>>
    >
    What is wrong in my solution? Here is my simple IDL-File:
    module prototype{
         exception CallBackException {
         interface CallBack {
              void foundUnknownSubscriber( in string MSISDN) raises(CallBackException);
         interface CallBackFactory {
              CallBack create();
    Thanks.
    Andre

  • IOS RD Client Remote Resources "Failed to Parse RDP Configuration"

    I encounter the error below when attempting to connect to Remote Resources. This worked perfectly yesterday but hasn't at all today. I removed and added the RemoteApp entry on the 2008 R2 server but continue to encounter this error. Any help is greatly appreciated.
    "Failed to Parse RDP Configuration"
    Thanks,
    Randal

    Hi,
    Would you please provide us the log file for check.
    Settings -> Send log via email -> Post the log here.
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Failed to parse SQL query by one user

    Hi all,
    in my app i have a text-item with a submit button. In this item i type a name and a report after the item-region show me the result(s). this works for all my users (>2000) perfectly, but one of this users become an error in the report-region:
    failed to parse SQL query:
    ORA-01403: no data found
    We try this with the same searchstring on the same computer/browser. If i logged in the result is ok, if the user logged in, the error message shows. If i try this on the computer from the user with me logged in, result ok. If the user try this on an other pc, results error.
    I have an productive and a developer workspace. In the developer workspace the user can try this perfectly without errors. Only in the productive workspace the error shows.
    The SQL-Select in the reprirt ist verry simple:
    select id
    , name
    , raum
    from table
    where instr(upper(name), upper(:P60_SEARCH))>0
    However all users can use this search-field with report perfectly, only this one user has the error. It is no restrictions on this item or report.
    Can anybody help me?

    Carsten,
    user preferences do not have anything to do with the fact where the user resides (apex built in, LDAP, whatever). User Preferences are saved for a named user and they are loaded next time the same user loggs in. For example, if you sort your report on a column x, apex will save this as a setting and next time you call the same report, this report will be sorted the same way. Since you don't have a permission to edit services, you should check your adminstrative permissions and conntact the real administrator of the workspace to do that "purge prefference" for you. I could bet this is the reason you are getting that strange error message.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://apex.oracle.com/pls/otn/f?p=31517:1
    ------------------------------------------------------------------------------

  • Failed to parse SQL Query - External Tables [Apex 4.0.2]

    Greetings experts -
    Has anyone encountered errors when creating a report in Apex that sources from an external table within the database? I'm using the 4.0.2 version that is packaged with the 11g XE edition on 64bit CentOS.
    For example, I might run:
    SELECT NULL LINK,
    COL1 LABEL,
    COL2 VALUE
    FROM MYTAB;
    Where MYTAB is an external table sitting on top of a comma-separated file. When I go to create the page, I'm prompted with the "Failed to parse SQL" dialogue.
    I noticed that if I did CTAS on the external table, and referenced the CTAS table, my page ran without problem!
    Any ideas? Is this a known "limitation" of Apex?
    Thanks,
    CJ

    Chiedu,
    Please try removing all declarative validations on this tabular form, and see if it works as expected then. There are some limitations on the type of views and joins that are supported by tabular forms when using the new declarative validations, i.e. you'll need a key preserved table in your view or join.
    Regards,
    Marc

  • Report failed to parse SQL query:ORA-01745: invalid host/bind variable name

    Hi,
    We are currently upgrading from v2.2.0.00.32 to v4.0.0.00.46.
    I have copied the applications onto our test server along with the various database objects and data etc.
    When I am running a report in v4, it is failing with the following error: "failed to parse SQL query: ORA-01745: invalid host/bind variable name".
    When I copy the SQL that builds the report into TOAD (on out test server) it runs OK so really cant see why it would fail in APEX. It works fine when I run the query in our APEX v2 and in TOAD in our live server.
    The query is as follows:
    SELECT
    aea.ALTERATION_ID
    ,aea.ALTERATION_ID "ALTERATION_ID_DISPLAY"
    ,aea.assembly_name "Revised BOM"
    ,assembly.description "Revised BOM Description"
    ,assembly.INVENTORY_ITEM_STATUS_CODE "Revised BOM Status"
    ,aea.BEFORE_CHANGE_QTY
    ,flv.MEANING "Alteration Type"
    ,aea.component_name "Part No"
    ,component.description "Part No Description"
    ,component.INVENTORY_ITEM_STATUS_CODE "Part No Status"
    ,aea.AFTER_CHANGE_QTY
    ,TO_CHAR(aea.last_update_date,'DD-MM-YYYY HH24:MI:SS')"Last Update Date"
    ,aea.LAST_UPDATE_BY
    ,aea.COMMENTS
    ,aea.ORACLE_CHANGE_NOTICE
    ,AEA.SELECTION_CRITERIA
    FROM XXMEL_APEX_ECO_ALTERATIONS aea
    , fnd_lookup_values flv
    , (SELECT INVENTORY_ITEM_STATUS_CODE
    ,segment1
    ,description
    FROM mtl_system_items_b
    WHERE 1=1
    AND organization_id = 26) component
    , (SELECT INVENTORY_ITEM_STATUS_CODE
    ,segment1
    ,description
    FROM mtl_system_items_b
    WHERE 1=1
    AND organization_id = 26) assembly
    WHERE 1=1
    AND aea.COMPONENT_NAME = component.segment1 (+)
    AND aea.assembly_NAME = assembly.segment1 (+)
    AND flv.lookup_code = aea.acd_type
    AND aea.eco = :P13_ECO
    AND flv.lookup_type = 'ECG_ACTION'
    AND modify_flag = 'Y'
    ANy help would be great,
    Thanks
    Chris
    Edited by: Cashy on 22-Nov-2010 04:13
    Edited by: Cashy on 22-Nov-2010 04:14

    For some reason, the updatable fields (this is a updateable report) where not connecting to the database properly. Whn I changed them to a report columns and removed the database field reference, the report rendered

  • Chart Query and Failed to parse SQL query

    Hi,
    first of all, this is not a question. It is a reminder for me and maybe for someone with the same problem.
    I just fell over this for the 123124 time.
    I have a 3D Chart Query
    select sum(order_ok) value,
          count(*) maximum_value
    from      v_dialer_campaign
    where campaign_uuid = :P300_CAMPAIGN_IDSaving fails with
    "1 error has occurred Failed to parse SQL query!" ...
    Saving the query without validation works, but does not show any result in the chart.
    v_dialer_campaign is a view selecting from a view in a mssql db over database link and HS.
    running the select in sqlplus or toad works.
    Without any trace on freetds/unixodb/hs side, i would have not found the following line:
    [FreeTDS][SQL Server]The data types nvarchar and text are incompatible in the equal to operator.[FreeTDS][SQL Server]Statement(s) could not be prepared.
    Solution:
    with q as (select :P300_CAMPAIGN_ID val from dual)
    select     sum(order_ok) value,
         count(*) maximum_value
    from     v_dialer_campaign
    where     campaign_uuid in ( select val from q)Maybe the error output when validating the query should be included in the APEX error message.
    Same solution applies for dynamic LOV's reading from HS using a where clause.

    I tried your first query on Apex 3.2 and it created a nice dial chart.
    Is there any ORA-xxxxx error along with the "failed to parse SQL query" message? Did you double check column & table name spelling?
    P.S. The second query is invalid (a superfluous comma after the second column).

Maybe you are looking for

  • I was charged twice, but uploading book to the store I receive an error message. What can i do?

    Hi, I've been trying twice now to upload an order in iPhoto, and after manyhours of trying I still get nothing but charged twice.I cancelled once (after 2 hours), and after trying again, my credit card got charged again, so how do I proceed from here

  • Can't  print more than once with my epson epl-5800L  and airport express

    I recently bought an airport express (b/g) in order to use it with my epson usb printer epson epl-5800L. I'm running mac os X leopard 10.5.7 on my macbook pro (2.4 ghz). The printer is plugged into the airport express (firmware 6.3). My problem is th

  • XSQL updates and deletes

    Hello I can insert records in a table using the xsql but am unable to update and delete from tables using xsql .... need help its urgent .. can anyone mail me some sample code for xsql update and delete ... thank u null

  • On Button click change the button display text from LOCK to UNLOCK

    Hi Freinds, I am rendering a TreeByNestingTableColumn with two columns  like:  Name , Status as below shown. In The status column I inserted a Table Cell editor Button type and  the button element property text mapped to the context attribute called

  • Windows 8.1 password expiry

    XP's password alert while users logon is much better just a yellow key on toolbar at Windows 8.1 platform i always have to reset password at server side because users do not notice the SMALL yellow key on toolbar do we have better notification way no