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

Similar Messages

  • 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

  • Junit : How can I get the method name (say testMyAddress) that failed

    My code is below
              TestSuite masterSuite = new TestSuite(testClass);
              TestResult result = new TestResult();
              masterSuite.run(result);
                   Enumeration errors = result.errors();
                   while (errors.hasMoreElements())
                        TestFailure error = (TestFailure)errors.nextElement();
                        Test test = error.failedTest();
    /*will give me the class name but how can I get the method that threw the exception.
    I can get fName (that contains the method name) field to get the method,but being private I cannot hold of the field.
    Wondering if there is any easy way to get the method name that threw exception,without writing unneccessary code
                        Class c1 = test.getClass();
    thx
    m

    getting all methods is no good!
    My test class looks like this
    MyTestClass{
    testGoodData(){
    asserttrue(.....);
    testBadData(){
    asserttrue(.....);
    testNullData(){
    asserttrue(.....);
    someHelperMethod(){
    thx
    m

  • ERROR[WSDL Parser] Attribute 'name' not found at: wsdl:documentation

    Hello,
    I'm currently having a problem generating the Java source code from a WSDL, because the WSDL2Service ant class bundled with the WLS install (in the /server/lib/webservices.jar library) does not comply with the WSDL XSD.
    Check http://schemas.xmlsoap.org/wsdl/
    Especially if you add a <wsdl:documentation> in your <wsdl:portType> you end up with a WSDLParser error, while the file perfectly validates through Eclipse:
         <wsdl:portType name="ImportPortType">
              <wsdl:documentation>
                   Definitions of available operations through the webservice
              </wsdl:documentation>
              <wsdl:operation name="importData">
                   <wsdl:input message="tns:ImportInput" />
                   <wsdl:output message="tns:ImportOutput" />
              </wsdl:operation>
         </wsdl:portType> The error is:
    [wsdl2Service] Generating web service from wsdl C:\Java\Workspaces\MyWorkspace/WebServices/wsdl/Import.wsdl
    [wsdl2Service] weblogic.webservice.wsdl.WSDLParseException: ERROR[WSDL Parser] Attribute 'name' not found at:<wsdl:documentation>Definitions of available operations through the webservice
    [wsdl2Service]           </wsdl:documentation>
    [wsdl2Service]      at weblogic.webservice.wsdl.WSDLParser.getMustAttribute(WSDLParser.java:263)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlPortType.parsePortType(WsdlPortType.java:29)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlBinding.parseBinding(WsdlBinding.java:45)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlPort.parsePort(WsdlPort.java:46)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlService.parseService(WsdlService.java:37)
    [wsdl2Service]      at weblogic.webservice.wsdl.WsdlDefinitions.parseDefinition(WsdlDefinitions.java:38)
    [wsdl2Service]      at weblogic.webservice.wsdl.WSDLParser.visit(WSDLParser.java:71)
    [wsdl2Service]      at weblogic.webservice.WebServiceFactory.createFromWSDL(WebServiceFactory.java:111)
    [wsdl2Service]      at weblogic.webservice.tools.build.internal.WSDL2JavaServiceImpl.runClassgen(WSDL2JavaServiceImpl.java:210)
    [wsdl2Service]      at weblogic.webservice.tools.build.internal.WSDL2JavaServiceImpl.run(WSDL2JavaServiceImpl.java:147)
    [wsdl2Service]      at weblogic.ant.taskdefs.webservices.wsdl2service.WSDL2Service.doWSDL2JavaService(WSDL2Service.java:211)
    [wsdl2Service]      at weblogic.ant.taskdefs.webservices.wsdl2service.WSDL2Service.execute(WSDL2Service.java:131)
    [wsdl2Service]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [wsdl2Service]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [wsdl2Service]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [wsdl2Service]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [wsdl2Service]      at java.lang.reflect.Method.invoke(Method.java:585)
    [wsdl2Service]      at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    [wsdl2Service]      at org.apache.tools.ant.Task.perform(Task.java:348)
    [wsdl2Service]      at org.apache.tools.ant.Target.execute(Target.java:357)
    [wsdl2Service]      at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    [wsdl2Service]      at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    [wsdl2Service]      at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
    [wsdl2Service]      at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
    [wsdl2Service]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [wsdl2Service]      at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
    [wsdl2Service]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [wsdl2Service]      at java.lang.reflect.Method.invoke(Method.java:585)
    [wsdl2Service]      at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    [wsdl2Service]      at org.apache.tools.ant.Task.perform(Task.java:348)
    [wsdl2Service]      at org.apache.tools.ant.Target.execute(Target.java:357)
    [wsdl2Service]      at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    [wsdl2Service]      at org.apache.tools.ant.helper.SingleCheckExecutor.executeTargets(SingleCheckExecutor.java:38)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.EclipseSingleCheckExecutor.executeTargets(EclipseSingleCheckExecutor.java:30)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    [wsdl2Service]      at org.apache.tools.ant.taskdefs.Ant.execute(Ant.java:416)
    [wsdl2Service]      at org.apache.tools.ant.taskdefs.CallTarget.execute(CallTarget.java:105)
    [wsdl2Service]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    [wsdl2Service]      at sun.reflect.GeneratedMethodAccessor1.invoke(Unknown Source)
    [wsdl2Service]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [wsdl2Service]      at java.lang.reflect.Method.invoke(Method.java:585)
    [wsdl2Service]      at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    [wsdl2Service]      at org.apache.tools.ant.Task.perform(Task.java:348)
    [wsdl2Service]      at org.apache.tools.ant.Target.execute(Target.java:357)
    [wsdl2Service]      at org.apache.tools.ant.Target.performTasks(Target.java:385)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    [wsdl2Service]      at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.EclipseDefaultExecutor.executeTargets(EclipseDefaultExecutor.java:32)
    [wsdl2Service]      at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.run(InternalAntRunner.java:423)
    [wsdl2Service]      at org.eclipse.ant.internal.ui.antsupport.InternalAntRunner.main(InternalAntRunner.java:137)
    BUILD FAILED
    C:\Java\Workspaces\MyWorkspace\EAR\ant\build.xml:22: The following error occurred while executing this line:
    C:\Java\Workspaces\MyWorkspace\EAR\ant\build.xml:26: The following error occurred while executing this line:
    C:\Java\Workspaces\MyWorkspace\EAR\ant\build_config.xml:65: weblogic.webservice.tools.build.WSBuildException: weblogic.webservice.wsdl.WSDLParseException: ERROR[WSDL Parser] Attribute 'name' not found at:<wsdl:documentation>Definitions of available operations through the webservice
              </wsdl:documentation> Digging through the WSDLPortType class (package weblogic.webservice.wsdl ) decompiled code, I clearly saw this kind of parsing does not respect the WSDL XSD:
    public class WsdlPortType {
        public WsdlPortType() {
            operations = new ArrayList();
        void parsePortType(WSDLParser wsdlparser, XMLNode xmlnode, Port port) throws WSDLParseException {
            Iterator iterator = xmlnode.getChildren();
            do {
                if(!iterator.hasNext())
                    break;
                XMLNode xmlnode1 = (XMLNode)iterator.next(); // THE NEXT XML NODE IS NOT COMPULSORILY THE <wsdl:operation> ONE!!!
                String s = wsdlparser.getMustAttribute("name", xmlnode1);
                if(wsdlparser.canHandleMethod(xmlnode1)) {
                    weblogic.webservice.Operation operation = port.addOperation(s);
                    WsdlOperation wsdloperation = new WsdlOperation();
                    wsdloperation.parseOperation(wsdlparser, operation, xmlnode1);
                    operations.add(wsdloperation);
            } while(true);
        private ArrayList operations;
    } X-(
    Edited by maxxyme at 03/13/2008 10:34 AM

    I created a new project and tried to repeat the steps to import. Still getting the same error.
    This is my Message type definition if that helps
    <message name="Composite_Weather_ServiceRequestMessage">
              <part name="payload" type="tns1:NDFDgenRequest"/>
         </message>
         <message name="Composite_Weather_ServiceResponseMessage">
              <part name="payload" type="tns1:NDFDgenResponse"/>
         </message>

  • TelemetryClient.TrackException Does Not Include Method Name Or Call Stack (Windows Store App)

    We are attempting to use Application Insights (v0.12.0-build17386) for our Windows Store App.  When we use TelemetryClient.TrackException, no details appear in the azure portal.  The Failed Method is "Could Not Parse" and the Call Stack
    is empty. If we click on the "..." it gives more details but still no method name or call stack information to help us determine where the exception was thrown.  Is this by design, not implemented, or did we miss something obvious?  The
    code is very simple:
    public static void LogException(Exception exception)
    TelemetryClient telemetryClient = new TelemetryClient();
    telemetryClient.TrackException(exception);

    This is a known limitation of this version. It is in the backlog to fix. Note though that 0.13 is out already and fix should be included in the next version (0.14)
    Anastasia

  • 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.

  • 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

  • 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

  • Regarding DocumentBuilder.parse method returns reference as null value.

    Hi
    We are in the process of migrating code which works on WebSphere/JBOSS to WLS..
    We are using DocumentBuilder object for parsing the Locale related xml data. I understand that the DocumentBuilder is provided by DocumentBuilderFactory which is an interface whose implementation is server specific.
    But when the Document Builder parse method is called with a valid file path, we are getting System.Out of doc.getFirstChild().getLocalName() as null (which ideally should have been the name of the first node). No Errors are observed .
    For WLS, the parser is giving the document object reference as null whereas in other servers like Websphere and JBOSS we are able to parse the same xml with proper object reference.
    Could you please help in this regard?
    Thanks and regards
    Anil

    Hi Vmotamar,
    If you think that the parsers available as part of WebLogic are causing the issues, Then you can use your Own Parsers while migrating to WebLogic Server. I mean Get the Parser Jar files which u used as part of JBoss or WebSphere and put it inside the "APP-INF\lib" directory of your EAR Application or Put them inside "WEB-INF\lib" of your WEBApplication...and then Apply ClassLoader Filtering feature provided by WebLogic ...which allows an application to use It's Own Jars\Classes ...
    Please refer to: http://forums.oracle.com/forums/thread.jspa?threadID=1109267&tstart=150 and in http://weblogic-wonders.com/weblogic/parsers_issues
    Thanks
    Jay SenSharma
    http://weblogic-wonders.com/weblogic/parsers_issues/ (WebLogic Wonders Are Here)

  • HTMLEditorKit.Parser.parse() method is not giving a proper HTMLDocument alw

    Hi,
    I am developing util program for HTML filter, for my project. I have find using HTMLDocument we can do that.
    But when I created I found few starnge things.
    HTMLEditorKit.Parser.parse() method is not giving a proper HTMLDocument always. the below application will show the HTML one if you comment the String str ="" ; and uncomment the next line.
    I am wondering why this happens.
    import java.io.StringReader;
    import java.io.StringWriter;
    import javax.swing.text.html.HTMLDocument;
    import javax.swing.text.html.HTMLEditorKit;
    import javax.swing.text.html.HTMLWriter;
    import javax.swing.text.html.parser.ParserDelegator;
    public class HTMLDocExample {
    public static void main(String args[]) throws Exception {
    System.out.println("start the parsing");
    String data = "dsfdssfsdf<A HREF='http://yahoo.com'>HTMLEditorKit.Parser</A><h1>dsfdsf</h1><table border='1' class='test'><tr><td><input type='text'>dfsf</input><select id='id1' name='name1'><option>fff</option><option>aaaaa</option></select><input type='text'/><a href=#></a></td></tr></table>";
    String str ="" ;
    //String str ="<TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE>" ;
    StringReader br = new StringReader(data + str );
    HTMLEditorKit htmlKit = new HTMLEditorKit();
    HTMLDocument htmlDoc = (HTMLDocument) htmlKit.createDefaultDocument();
    HTMLEditorKit.Parser parser = new ParserDelegator();
    HTMLEditorKit.ParserCallback callback = htmlDoc.getReader(0);
    parser.parse(br, callback, true);
    StringWriter writer = new StringWriter();
    HTMLWriter hWriter = new HTMLWriter(writer, htmlDoc);
    hWriter.write();
    String outPut = writer.toString();
    System.out.println(outPut);
    System.exit(0);
    }

    import java.io.StringReader;
    import java.io.StringWriter;
    import javax.swing.text.html.HTMLDocument;
    import javax.swing.text.html.HTMLEditorKit;
    import javax.swing.text.html.HTMLWriter;
    import javax.swing.text.html.parser.ParserDelegator;
    public class HTMLDocExample {
      public static void main(String args[]) throws Exception {
        System.out.println("start the parsing"); 
        String data = "dsfdssfsdf<A HREF='http://yahoo.com'>HTMLEditorKit.Parser</A><h1>dsfdsf</h1><table border='1' class='test'><tr><td><input type='text'>dfsf</input><select id='id1' name='name1'><option>fff</option><option>aaaaa</option></select><input type='text'/><a href=#></a></td></tr></table>";
        //String str ="" ;
        String str ="<TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE><TABLE >test</TABLE>" ;
        StringReader br = new StringReader(data + str );   
        HTMLEditorKit htmlKit = new HTMLEditorKit();
        HTMLDocument htmlDoc = (HTMLDocument) htmlKit.createDefaultDocument();
        HTMLEditorKit.Parser parser = new ParserDelegator();
        HTMLEditorKit.ParserCallback callback = htmlDoc.getReader(0);
        parser.parse(br, callback, true);
        StringWriter writer = new StringWriter();
        HTMLWriter hWriter = new HTMLWriter(writer, htmlDoc);
        hWriter.write();
        String outPut = writer.toString();       
        System.out.println(outPut);
        System.exit(0);
    }

  • DateFormat parse method usage

    Hi all,
    I am using the following code to parse the date String object to Date Object -
    ======================================================================
    if(dateString == null || dateString.trim().equals(""))
    return null;
    DateFormat dateFormatter = DateFormat.getDateInstance(DateFormat.SHORT,
    Locale.getDefault());
    Date d = null;
    try
    dateFormatter.setLenient(false);
    d = dateFormatter.parse(dateString);
    catch(ParseException pe)
    e.printStackTrace();
    =================================================================
    This code works perfectly for all formats of String objects I give except for the format - "12/12/12/1" in which case it converts to following date object -
    "Wed Dec 12 00:00:00 IST 2012" although its an invalid date String.
    Please let me know how I could have correct validation done in such cases or if this is the right behavior for DateFormat class.
    Thanks in advance!!

    I'm not going to comment on how exactly the parse method does its business, but I can suggest you use a regex pattern to validate the input you will send the parse method.
    Here is some info from the CodeProject website on date validation(Note that this is aimed at .NET - but regex works the same in Java as it does in .NET [i think]):
    Dates: As with numbers, we need two validators: a key-press validator, and a completion validator. The key-press validator can be pretty simple, if we limit how our user enters the date. Let’s say that we want to validate for the U.S. date format mm/dd/yyyy. Here is a validator that will do that:
    ^([0-9]|/)*$
    The regex reads: “Match any string that contains a sequence of zero or more characters, where each character is either a digit or a slash.” This validator will give the user immediate feedback if they enter an invalid character, such as an ‘a’.
    Copy that regex to Regex Tester and give it a try. Note that the validation fails if the user enters dashes, instead of slashes, between the parts of the date. How could we increase the flexibility of our regex to accommodate dashes? Think about the question for a minute before moving on.
    All we need to do is add a dash to the alternates group:
    ^([0-9]|/|-)*$
    We could add other alternates to make the regex as flexible as it needs to be.
    The completion validator does a final check to determine whether the input matches a complete date pattern:
    ^[0-2]?[1-9](/|-)[0-3]?[0-9](/|-)[1-2][0-9][0-9][0-9]$
    The regex reads as follows: "Match any string that conforms to this pattern: The first character can be a 0, 1, or 2, and it may be omitted. The second character can be any number and is required. The next character can be a slash or a dash, and is required…” And so on. This regex differs from the ones we used before in that it specifies each character of the pattern—the pattern is more of a template than a formula.
    Note the first character of the regex: ‘[0-2]’. This character points out that we can limit allowable digits to less than the full set. We can also expand them; for example, ‘[0-9A-F]’ would allow any hexadecimal digit. In fact, we can use this structure, known as a character class, to specify any set of characters we want. For example, the character class ‘[A-Z]’ allows capital letters, and ‘[A-Za-z]’ allows upper or lower-case letters.
    Our date regex also points out some of the limitations of regex validation. Paste the date regex shown into Regex Tester and try out some dates. The regex does a pretty good job with run-of-the-mill dates, but it allows some patently invalid ones, such as ‘29/29/2006’, or ‘12/39/2006'. The regex is clearly not ‘bulletproof’.
    We could beef up the regular expression with additional features to catch these invalid dates, but it may be simpler to simply use a bit of .NET in the completion validator:
    bool isValid = DateTime.TryParse(dateString, out dummy);
    We gain the additional benefit that .NET will check the date for leap year validity, and so on. As always, the choice comes down to: What is simpler? What is faster? What is more easily understood? In my shop, we use a regex for the key-press validator, and DateTime.TryParse() for the completion validator.
    Oh - and there is another regex validator:
    ^[0-9]{4}-(((0[13578]|(10|12))-(0[1-9]|[1-2][0-9]|3[0-1]))|(02-(0[1-9]|[1-2][0-9]))|((0[469]|11)-(0[1-9]|[1-2][0-9]|30)))$
    which matches the yyyy-mm-dd date format and also validates month and number of days in a month. Could be improved as currently all leap year dates (yyyy-02-29) will validate.
    Sorry if I couldn't be of more help...
    Edited by: JoKiLlSyA on Oct 9, 2008 11:22 PM

  • JCA - Failed calling get method getThreadSecurity on the ManagedConnectionF

    Hi All,
    This is my first post with the SDN, hope I could see and extend helping hands in form of technology and solutions
    My problem
    =============
    I am new to JCA.I am trying to deploy the helloworldra.ear provided by the IBM site.I deployed the resoource adapter and created a connectionFactory named "HelloWorld"(jndi).I get the below mentioned exception when I do
    ConnectionFactory cxFactory = (ConnectionFactory) context.lookup("java:comp/env/HelloWorld");
    Kindly chek into the exception and provide me with the solution.
    Thanks in Advance
    KABA
    Exceptions Snapshot
    ==================
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O Populating Context
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O #################### JNDI Context Contents ####################
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.websphere.naming.hostname.normalizer ---:-- com.ibm.ws.naming.util.DefaultHostnameNormalizer
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O java.naming.factory.initial ---:-- com.ibm.websphere.naming.WsnInitialContextFactory
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.websphere.naming.name.syntax ---:-- jndi
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.websphere.naming.namespace.connection ---:-- lazy
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.ws.naming.ldap.ldapinitctxfactory ---:-- com.sun.jndi.ldap.LdapCtxFactory
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.websphere.naming.jndicache.cacheobject ---:-- populated
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.websphere.naming.namespaceroot ---:-- defaultroot
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.ws.naming.wsn.factory.initial ---:-- com.ibm.ws.naming.util.WsnInitCtxFactory
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.websphere.naming.jndicache.maxcachelife ---:-- 0
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.websphere.naming.jndicache.maxentrylife ---:-- 0
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O com.ibm.websphere.naming.jndicache.cachename ---:-- providerURL
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O java.naming.provider.url ---:-- corbaloc:rir:/NameServiceServerRoot
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O java.naming.factory.url.pkgs ---:-- com.ibm.ws.runtime:com.ibm.ws.naming
    [7/7/06 14:38:27:624 EDT] 5a004128 SystemOut O #################### JNDI Context Contents END ####################
    [7/7/06 14:38:28:718 EDT] 5a004128 ConnectionFac E J2CA0066E: Failed calling get method getThreadSecurity on the ManagedConnectionFactory class com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl used by resource jca/HelloWorld with the value <null>. Exception is java.lang.reflect.InvocationTargetException: java.lang.NullPointerException
         at com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl.getThreadSecurity(WSManagedConnectionFactoryImpl.java:612)
         at java.lang.reflect.Method.invoke(Native Method)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getThreadSecurity(ConnectionFactoryBuilderImpl.java:2520)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.createMCFandPM(ConnectionFactoryBuilderImpl.java:1747)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getObjectInstance(ConnectionFactoryBuilderImpl.java:1188)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:313)
         at com.ibm.ws.naming.util.Helpers.processSerializedObjectForLookup(Helpers.java:884)
         at com.ibm.ws.naming.jndicos.CNContextImpl.processResolveResults(CNContextImpl.java:1762)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1615)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1525)
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1225)
         at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:132)
         at javax.naming.InitialContext.lookup(InitialContext.java:359)
         at com.ibm.ws.naming.util.IndirectJndiLookupObjectFactory$1.run(IndirectJndiLookupObjectFactory.java:293)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.ibm.ws.naming.util.IndirectJndiLookupObjectFactory.getObjectInstance(IndirectJndiLookupObjectFactory.java:144)
         at com.ibm.ws.util.ResRefJndiLookupObjectFactory.getObjectInstance(ResRefJndiLookupObjectFactory.java:127)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:313)
         at com.ibm.ws.naming.util.Helpers.processSerializedObjectForLookup(Helpers.java:884)
         at com.ibm.ws.naming.urlbase.UrlContextHelper.processBoundObjectForLookup(UrlContextHelper.java:135)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1227)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1203)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1257)
         at javax.naming.InitialContext.lookup(InitialContext.java:359)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldBean.execute(HelloWorldBean.java:81)
         at org.apache.jsp._HelloWorldResults._jspService(_HelloWorldResults.java:105)
         at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java:89)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:357)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java:675)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java:773)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.dispatch(HelloWorldController.java:101)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.performTask(HelloWorldController.java:66)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.doPost(HelloWorldController.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:201)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:114)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:186)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:610)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:431)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:593)
    [7/7/06 14:38:28:812 EDT] 5a004128 ConnectionFac E J2CA0009E: An exception occurred while trying to instantiate the ManagedConnectionFactory class com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl used by resource jca/HelloWorld : java.lang.reflect.InvocationTargetException: java.lang.NullPointerException
         at com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl.getThreadSecurity(WSManagedConnectionFactoryImpl.java:612)
         at java.lang.reflect.Method.invoke(Native Method)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getThreadSecurity(ConnectionFactoryBuilderImpl.java:2520)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.createMCFandPM(ConnectionFactoryBuilderImpl.java:1747)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getObjectInstance(ConnectionFactoryBuilderImpl.java:1188)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:313)
         at com.ibm.ws.naming.util.Helpers.processSerializedObjectForLookup(Helpers.java:884)
         at com.ibm.ws.naming.jndicos.CNContextImpl.processResolveResults(CNContextImpl.java:1762)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1615)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1525)
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1225)
         at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:132)
         at javax.naming.InitialContext.lookup(InitialContext.java:359)
         at com.ibm.ws.naming.util.IndirectJndiLookupObjectFactory$1.run(IndirectJndiLookupObjectFactory.java:293)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.ibm.ws.naming.util.IndirectJndiLookupObjectFactory.getObjectInstance(IndirectJndiLookupObjectFactory.java:144)
         at com.ibm.ws.util.ResRefJndiLookupObjectFactory.getObjectInstance(ResRefJndiLookupObjectFactory.java:127)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:313)
         at com.ibm.ws.naming.util.Helpers.processSerializedObjectForLookup(Helpers.java:884)
         at com.ibm.ws.naming.urlbase.UrlContextHelper.processBoundObjectForLookup(UrlContextHelper.java:135)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1227)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1203)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1257)
         at javax.naming.InitialContext.lookup(InitialContext.java:359)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldBean.execute(HelloWorldBean.java:81)
         at org.apache.jsp._HelloWorldResults._jspService(_HelloWorldResults.java:105)
         at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java:89)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:357)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java:675)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java:773)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.dispatch(HelloWorldController.java:101)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.performTask(HelloWorldController.java:66)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.doPost(HelloWorldController.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:201)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:114)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:186)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:610)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:431)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:593)
    [7/7/06 14:38:28:859 EDT] 5a004128 Helpers W NMSV0605W: A Reference object looked up from the context "localhost/nodes/localhost/servers/server1" with the name "jca/HelloWorld" was sent to the JNDI Naming Manager and an exception resulted. Reference data follows:
    Reference Factory Class Name: com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl
    Reference Factory Class Location URLs: <null>
    Reference Class Name: HelloWorld
    Type: connectorName
    Content: HelloWorld
    Type: classpath
    Content: C:\Program Files\IBM\WebSphere Studio\Application Developer\v5.1\runtimes\base_v5/lib/rsadapter.rar
    Type: FactoryJndiName
    Content: jca/HelloWorld
    Address Type: dd
    AddressContents: ffffffac ffffffed 0 5 73 72 0 25 63 6f 6d 2e 69 62 6d 2e 65 6a 73 2e 6a 32 63 2e 52 65 73 6f 75 72 63 65 ...
    Address Type: poolProps
    AddressContents: ffffffac ffffffed 0 5 73 72 0 27 63 6f 6d 2e 69 62 6d 2e 65 6a 73 2e 6a 32 63 2e 43 6f 6e 6e 65 63 74 6f ...
    Address Type: configProps
    AddressContents: ffffffac ffffffed 0 5 73 72 0 23 63 6f 6d 2e 69 62 6d 2e 65 6a 73 2e 6a 32 63 2e 43 6f 6e 6e 65 63 74 6f ...
    Address Type: mmProps
    AddressContents: ffffffac ffffffed 0 5 73 72 0 14 6a 61 76 61 2e 75 74 69 6c 2e 50 72 6f 70 65 72 74 69 65 73 39 12 ffffffd0 7a ...
    Address Type: mbeanProps
    AddressContents: ffffffac ffffffed 0 5 73 72 0 1a 63 6f 6d 2e 69 62 6d 2e 65 6a 73 2e 6a 32 63 2e 4d 42 65 61 6e 50 72 6f ...
    Exception data follows:
    java.lang.reflect.InvocationTargetException: java.lang.NullPointerException
         at com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl.getThreadSecurity(WSManagedConnectionFactoryImpl.java:612)
         at java.lang.reflect.Method.invoke(Native Method)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getThreadSecurity(ConnectionFactoryBuilderImpl.java:2520)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.createMCFandPM(ConnectionFactoryBuilderImpl.java:1747)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getObjectInstance(ConnectionFactoryBuilderImpl.java:1188)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:313)
         at com.ibm.ws.naming.util.Helpers.processSerializedObjectForLookup(Helpers.java:884)
         at com.ibm.ws.naming.jndicos.CNContextImpl.processResolveResults(CNContextImpl.java:1762)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1615)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1525)
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1225)
         at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:132)
         at javax.naming.InitialContext.lookup(InitialContext.java:359)
         at com.ibm.ws.naming.util.IndirectJndiLookupObjectFactory$1.run(IndirectJndiLookupObjectFactory.java:293)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.ibm.ws.naming.util.IndirectJndiLookupObjectFactory.getObjectInstance(IndirectJndiLookupObjectFactory.java:144)
         at com.ibm.ws.util.ResRefJndiLookupObjectFactory.getObjectInstance(ResRefJndiLookupObjectFactory.java:127)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:313)
         at com.ibm.ws.naming.util.Helpers.processSerializedObjectForLookup(Helpers.java:884)
         at com.ibm.ws.naming.urlbase.UrlContextHelper.processBoundObjectForLookup(UrlContextHelper.java:135)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1227)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1203)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1257)
         at javax.naming.InitialContext.lookup(InitialContext.java:359)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldBean.execute(HelloWorldBean.java:81)
         at org.apache.jsp._HelloWorldResults._jspService(_HelloWorldResults.java:105)
         at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java:89)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:357)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java:675)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java:773)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.dispatch(HelloWorldController.java:101)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.performTask(HelloWorldController.java:66)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.doPost(HelloWorldController.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:201)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:114)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:186)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:610)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:431)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:593)
    [7/7/06 14:38:28:953 EDT] 5a004128 Helpers W NMSV0610I: A NamingException is being thrown from a javax.naming.Context implementation. Details follow:
    Context implementation: com.ibm.ws.naming.jndicos.CNContextImpl
    Context method: lookup
    Context name: localhost/nodes/localhost/servers/server1
    Target name: jca/HelloWorld
    Other data:
    Exception stack trace: com.ibm.websphere.naming.CannotInstantiateObjectException: Exception occurred while the JNDI NamingManager was processing a javax.naming.Reference object. Root exception is java.lang.reflect.InvocationTargetException: java.lang.NullPointerException
         at com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl.getThreadSecurity(WSManagedConnectionFactoryImpl.java:612)
         at java.lang.reflect.Method.invoke(Native Method)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getThreadSecurity(ConnectionFactoryBuilderImpl.java:2520)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.createMCFandPM(ConnectionFactoryBuilderImpl.java:1747)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getObjectInstance(ConnectionFactoryBuilderImpl.java:1188)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:313)
         at com.ibm.ws.naming.util.Helpers.processSerializedObjectForLookup(Helpers.java:884)
         at com.ibm.ws.naming.jndicos.CNContextImpl.processResolveResults(CNContextImpl.java:1762)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1615)
         at com.ibm.ws.naming.jndicos.CNContextImpl.doLookup(CNContextImpl.java:1525)
         at com.ibm.ws.naming.jndicos.CNContextImpl.lookup(CNContextImpl.java:1225)
         at com.ibm.ws.naming.util.WsnInitCtx.lookup(WsnInitCtx.java:132)
         at javax.naming.InitialContext.lookup(InitialContext.java:359)
         at com.ibm.ws.naming.util.IndirectJndiLookupObjectFactory$1.run(IndirectJndiLookupObjectFactory.java:293)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.ibm.ws.naming.util.IndirectJndiLookupObjectFactory.getObjectInstance(IndirectJndiLookupObjectFactory.java:144)
         at com.ibm.ws.util.ResRefJndiLookupObjectFactory.getObjectInstance(ResRefJndiLookupObjectFactory.java:127)
         at javax.naming.spi.NamingManager.getObjectInstance(NamingManager.java:313)
         at com.ibm.ws.naming.util.Helpers.processSerializedObjectForLookup(Helpers.java:884)
         at com.ibm.ws.naming.urlbase.UrlContextHelper.processBoundObjectForLookup(UrlContextHelper.java:135)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1227)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1203)
         at com.ibm.ws.naming.urlbase.UrlContext.lookup(UrlContext.java:1257)
         at javax.naming.InitialContext.lookup(InitialContext.java:359)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldBean.execute(HelloWorldBean.java:81)
         at org.apache.jsp._HelloWorldResults._jspService(_HelloWorldResults.java:105)
         at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java:89)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:357)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java:675)
         at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java:773)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.dispatch(HelloWorldController.java:101)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.performTask(HelloWorldController.java:66)
         at com.ibm.ssya.helloworldra.servlets.HelloWorldController.doPost(HelloWorldController.java:88)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
         at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
         at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
         at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
         at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
         at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
         at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
         at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:201)
         at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
         at com.ibm.ws.webcontainer.cache.invocation.CacheableInvocationContext.invoke(CacheableInvocationContext.java:114)
         at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:186)
         at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
         at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
         at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:610)
         at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:431)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:593)
    [7/7/06 14:38:29:031 EDT] 5a004128 ConnectionFac E J2CA0066E: Failed calling get method getThreadSecurity on the ManagedConnectionFactory class com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl used by resource jca/HelloWorld with the value <null>. Exception is java.lang.reflect.InvocationTargetException: java.lang.NullPointerException
         at com.ibm.ws.rsadapter.spi.WSManagedConnectionFactoryImpl.getThreadSecurity(WSManagedConnectionFactoryImpl.java:612)
         at java.lang.reflect.Method.invoke(Native Method)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.getThreadSecurity(ConnectionFactoryBuilderImpl.java:2520)
         at com.ibm.ejs.j2c.ConnectionFactoryBuilderImpl.createMCFandPM(ConnectionF

    PersianKamran wrote:
    folks.. i am sending my class object on Sockets from client to Server (i am implementing Seriablizable Interface).
    No your aren't.
    You are sending the data in the class.
    That is what serialization does. (And actually not all data can be sent either.)
    When i get the object on server, i am able to print all its fields and methods... But i have one problem. I want to invoke a simple static method that just prints "hello".. The method on client that i am trying to invoke is....You probably either need stop attempting that or re-architect the solution.
    It is possible to send a class (not data) to another computer and that computer runs it. That is how applets work.
    But for that to work you must send the class. And deal with how the VM loads and unloads classes (not data) as well.

  • 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
    ------------------------------------------------------------------------------

  • 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).

  • DBA studio: Error add/connect database "Failed to parse tnsnames.ora file"

    I have Oracle (version 8.1.7) installed in my XP machine and when I try to (having chosen "Launch DBA Studio standalone") to open a connection I get:
    "Failed to parse tnsnames.ora file
    ERROR: 100 -- NLNV-NLNV String Format Error".
    Also got this when I tried to manually add a database to a tree.
    I can access the databases listed in my tnsnames.ora using SQL Plus with no error.
    This is my tnsnames.ora.
    # TNSNAMES.ORA Network Configuration File: C:\oracle\ora81\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    INST1_HTTP.xx.yy.GE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = MyMachine3)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = SHARED)
    (SERVICE_NAME = buch3ora)
    (PRESENTATION = http://admin)
    EXTPROC_CONNECTION_DATA.xx.yy.GE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    MyOra3.xx.yy.GE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = MyMachine3)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ora3)
    OORCL.xx.yy.GE.COM =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 3.4.55.66)(PORT = 1521))
    (CONNECT_DATA = (SERVICE_NAME = oorcl))
    Does anybody have any idea what is wrong? Thanks a lot. Changsong

    Just found out this IS a string error in my Tnsname.ora. What i did is deleting all the entries in my tnsname.ora, and start adding each one back. I found one particular entry is responsible for the error. This is the old text
    serv32.xxx.ge.com =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (COMMUNITY = TCP)(PROTOCOL = TCP)(HOST = sevr32.xxy.ge.com)(PORT = 1521))
    (CONNECT_DATA = (SID = atmo32))
    just looking by itself I can't see anything wrong. I just formatted it a little, making it looked like the other one that is working
    serv32.xxx.ge.com =(DESCRIPTION =
         (ADDRESS_LIST =
         (ADDRESS =
         (COMMUNITY = TCP)
         (PROTOCOL = TCP)
         (HOST = sevr32.xxy.ge.com)
         (PORT = 1521)))
         (CONNECT_DATA=
         (SID = atmo32)))
    and now it works fine. I Really can't tell the difference, except that some words were moved to the other line. What puzzled me is that the same old tnsname.ora worked in almost all the other circumstances, like sql plus, and other database enginee. But it is just not good enough for dba studio?
    I admit I probably should have used the network utility to add a connection to avoid this type of format error.
    Anyhow, I'm glad it is solved. by the way, the symjct.dll mentioned in the previous post should be symcjit.dll. I guess he mispelled the name. I renamed it to symcjit_old.dll and now the java error was gone. So that is another gain from this post. Thanks Joel for all the information.

Maybe you are looking for