"unexpected reference element " error,who can help me?:(

hi all:
I am using Jpub tools,I created a webservices client and its PL/SQL wrapper,all are success,but when i test the function in sqlplus,I get a error:
oracle.j2ee.ws.common.encoding.DeserializationException:unexpected reference element during Deserialization;the element "result" is not defined as a referenceable type
I traced the response message as follow:
<?xml version="1.0" encoding="utf-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Body>
<ns1:setUserPasswordResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://lcimsforuserinfo.webservice.lcbms.linkage.com">
<setUserPasswordReturn href="#id0"/>
</ns1:setUserPasswordResponse>
<multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:SetUserPasswordResponse" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="http://lcimsforuserinfo.webservice.lcbms.linkage.com">
<errorDescription xsi:type="soapenc:string">password modify success!</errorDescription>
<result href="#id1"/>
</multiRef>
<multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="xsd:int" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">0</multiRef>
</soapenv:Body>
</soapenv:Envelope>
i found the service was successfull executed,so I supect this client can not support the format:"multiRef"....but i don't know how to do........
who can help me!!
My WSDL as follows:
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://lcimsforuserinfo.webservice.lcbms.linkage.com" xmlns:intf="http://lcimsforuserinfo.webservice.lcbms.linkage.com" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!--WSDL created by Apache Axis version: 1.3
Built on Oct 05, 2005 (05:23:37 EDT)-->
<wsdl:types>
<Schema targetNamespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<complexType name="GetUserInfoRequest">
<sequence>
<element name="servicetype" type="xsd:int"/>
<element name="username" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
<complexType name="GetUserInfoResponse">
<sequence>
<element name="errorDescription" nillable="true" type="soapenc:string"/>
<element name="result" type="xsd:int"/>
<element name="userInfoXML" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
<complexType name="GetUserDetRequest">
<sequence>
<element name="beginTime" nillable="true" type="soapenc:string"/>
<element name="endTime" nillable="true" type="soapenc:string"/>
<element name="servicetype" type="xsd:int"/>
<element name="username" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
<complexType name="GetUserDetResponse">
<sequence>
<element name="errorDescription" nillable="true" type="soapenc:string"/>
<element name="result" type="xsd:int"/>
<element name="userDetXML" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
<complexType name="GetAuthFailRequest">
<sequence>
<element name="authDate" nillable="true" type="soapenc:string"/>
<element name="servicetype" type="xsd:int"/>
<element name="username" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
<complexType name="GetAuthFailResponse">
<sequence>
<element name="authFailXML" nillable="true" type="soapenc:string"/>
<element name="errorDescription" nillable="true" type="soapenc:string"/>
<element name="result" type="xsd:int"/>
</sequence>
</complexType>
<complexType name="GetUserOnlineRequest">
<sequence>
<element name="servicetype" type="xsd:int"/>
<element name="username" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
<complexType name="GetUserOnlineResponse">
<sequence>
<element name="errorDescription" nillable="true" type="soapenc:string"/>
<element name="result" type="xsd:int"/>
<element name="userOnlineXML" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
<complexType name="SetUserPasswordRequest">
<sequence>
<element name="admin" nillable="true" type="soapenc:string"/>
<element name="password" nillable="true" type="soapenc:string"/>
<element name="servicetype" type="xsd:int"/>
<element name="username" nillable="true" type="soapenc:string"/>
</sequence>
</complexType>
<complexType name="SetUserPasswordResponse">
<sequence>
<element name="errorDescription" nillable="true" type="soapenc:string"/>
<element name="result" type="xsd:int"/>
</sequence>
</complexType>
</schema>
</wsdl:types>
<wsdl:message name="setUserPasswordResponse">
<wsdl:part name="setUserPasswordReturn" type="impl:SetUserPasswordResponse"/>
</wsdl:message>
<wsdl:message name="getUserInfoRequest">
<wsdl:part name="in0" type="impl:GetUserInfoRequest"/>
</wsdl:message>
<wsdl:message name="getUserOnlineRequest">
<wsdl:part name="in0" type="impl:GetUserOnlineRequest"/>
</wsdl:message>
<wsdl:message name="getAuthFailResponse">
<wsdl:part name="getAuthFailReturn" type="impl:GetAuthFailResponse"/>
</wsdl:message>
<wsdl:message name="getUserInfoResponse">
<wsdl:part name="getUserInfoReturn" type="impl:GetUserInfoResponse"/>
</wsdl:message>
<wsdl:message name="getUserDetResponse">
<wsdl:part name="getUserDetReturn" type="impl:GetUserDetResponse"/>
</wsdl:message>
<wsdl:message name="getUserOnlineResponse">
<wsdl:part name="getUserOnlineReturn" type="impl:GetUserOnlineResponse"/>
</wsdl:message>
<wsdl:message name="getUserDetRequest">
<wsdl:part name="in0" type="impl:GetUserDetRequest"/>
</wsdl:message>
<wsdl:message name="setUserPasswordRequest">
<wsdl:part name="in0" type="impl:SetUserPasswordRequest"/>
</wsdl:message>
<wsdl:message name="getAuthFailRequest">
<wsdl:part name="in0" type="impl:GetAuthFailRequest"/>
</wsdl:message>
<wsdl:portType name="LcimsForUserInfo">
<wsdl:operation name="getUserInfo" parameterOrder="in0">
<wsdl:input message="impl:getUserInfoRequest" name="getUserInfoRequest"/>
<wsdl:output message="impl:getUserInfoResponse" name="getUserInfoResponse"/>
</wsdl:operation>
<wsdl:operation name="getUserDet" parameterOrder="in0">
<wsdl:input message="impl:getUserDetRequest" name="getUserDetRequest"/>
<wsdl:output message="impl:getUserDetResponse" name="getUserDetResponse"/>
</wsdl:operation>
<wsdl:operation name="getAuthFail" parameterOrder="in0">
<wsdl:input message="impl:getAuthFailRequest" name="getAuthFailRequest"/>
<wsdl:output message="impl:getAuthFailResponse" name="getAuthFailResponse"/>
</wsdl:operation>
<wsdl:operation name="getUserOnline" parameterOrder="in0">
<wsdl:input message="impl:getUserOnlineRequest" name="getUserOnlineRequest"/>
<wsdl:output message="impl:getUserOnlineResponse" name="getUserOnlineResponse"/>
</wsdl:operation>
<wsdl:operation name="setUserPassword" parameterOrder="in0">
<wsdl:input message="impl:setUserPasswordRequest" name="setUserPasswordRequest"/>
<wsdl:output message="impl:setUserPasswordResponse" name="setUserPasswordResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="LcimsForUserInfoSoapBinding" type="impl:LcimsForUserInfo">
<wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="getUserInfo">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="getUserInfoRequest">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="getUserInfoResponse">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="getUserDet">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="getUserDetRequest">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="getUserDetResponse">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="getAuthFail">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="getAuthFailRequest">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="getAuthFailResponse">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="getUserOnline">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="getUserOnlineRequest">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="getUserOnlineResponse">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="setUserPassword">
<wsdlsoap:operation soapAction=""/>
<wsdl:input name="setUserPasswordRequest">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:input>
<wsdl:output name="setUserPasswordResponse">
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://lcimsforuserinfo.webservice.lcbms.linkage.com" use="encoded"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="LcimsForUserInfoService">
<wsdl:port binding="impl:LcimsForUserInfoSoapBinding" name="LcimsForUserInfo">
<wsdlsoap:address location="http://localhost:8080/services/LcimsForUserInfo"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

Two things you need to check
1) configuration.properties Make sure you have correct app server settings and user name password. If you changed your password you need to update this file also.
2) Stop WebServer clear web server cache and try reconnect.
3) Web server logs should provide more details.

Similar Messages

  • A StuckThreadMaxTime error; who can help me to analyse the thread dumps

    The StuckThreadMaxTime error freeze my system, no one can logged in.I have double checked the thread dumps, but get no help.
    The following is the thread dumps:
    <2004-12-7 ÉÏÎç05ʱ56·Ö47Ãë GMT+08:00> <Alert> <Log Management> <BEA-170017> <The log file ./myserver/myserver.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <2004-12-7 ÉÏÎç05ʱ56·Ö47Ãë GMT+08:00> <Alert> <Log Management> <BEA-170018> <The log file has been rotated to myserver.log00035. Log messages will continue to be logged in ./myserver/myserver.log.>
    <2004-12-7 ÉÏÎç10ʱ09·Ö32Ãë GMT+08:00> <Warning> <WebLogicServer> <BEA-000337> <ExecuteThread: '10' for queue: 'weblogic.kernel.Default' has been busy for "646" seconds working on the request "com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl", which is more than the configured time (StuckThreadMaxTime) of "600" seconds.>
    <2004-12-7 ÉÏÎç10ʱ09·Ö32Ãë GMT+08:00> <Warning> <WebLogicServer> <BEA-000337> <ExecuteThread: '13' for queue: 'weblogic.kernel.Default' has been busy for "651" seconds working on the request "com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl", which is more than the configured time (StuckThreadMaxTime) of "600" seconds.>
    <2004-12-7 ÉÏÎç10ʱ09·Ö32Ãë GMT+08:00> <Warning> <WebLogicServer> <BEA-000337> <ExecuteThread: '14' for queue: 'weblogic.kernel.Default' has been busy for "650" seconds working on the request "com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl", which is more than the configured time (StuckThreadMaxTime) of "600" seconds.>
    Full thread dump Java HotSpot(TM) VM (1.4.2 1.4.2.03-040401-18:59-PA_RISC2.0 PA2.0 (aCC_AP) mixed mode):
    "ExecuteThread: '14' for queue: 'JmsDispatcher'" daemon prio=5 tid=01c3f778 nid=71 lwp_id=39624 in Object.wait() [0x61abf000..0x61abf4f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <6d1d24f8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <6d1d24f8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '13' for queue: 'JmsDispatcher'" daemon prio=5 tid=01c3f610 nid=70 lwp_id=39623 in Object.wait() [0x61b40000..0x61b404f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <6d1d2578> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <6d1d2578> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '12' for queue: 'JmsDispatcher'" daemon prio=5 tid=01c3f4a8 nid=69 lwp_id=39622 in Object.wait() [0x61bc1000..0x61bc14f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <6d1d25f8> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:153)
         - locked <6d1d25f8> (a weblogic.kernel.ExecuteThread)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:172)
    "ExecuteThread: '11' for queue: 'JmsDispatcher'" daemon prio=5 tid=01c3f340 nid=68 lwp_id=39621 in Object.wait() [0x61c42000..0x61c424f0]
         at java.lang.Object.wait(Native Method)
         - waiting on <6d1d2678> (a weblogic.kernel.ExecuteThread)
         at java.lang.Object.wait(Object.java:429)
         at weblogic.kernel.Eÿ

    "ExecuteThread: '14' for queue: 'weblogic.kernel.Default'" daemon prio=5 tid=000883f8 nid=27 lwp_id=39205 runnable [0x630ec000..0x630eb4f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at oracle.net.ns.Packet.receive(Unknown Source)
         at oracle.net.ns.DataPacket.receive(Unknown Source)
         at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:971)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:941)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:432)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:181)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:543)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:913)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:452)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:984)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2885)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:2926)
         - locked <762d0bd8> (a oracle.jdbc.driver.T4CPreparedStatement)
         - locked <6c837e90> (a oracle.jdbc.driver.T4CConnection)
         at weblogic.jdbc.wrapper.PreparedStatement.executeQuery(PreparedStatement.java:92)
         at com.huawei.oss.rms.persistence.ReadOperationPersistenceImpl.getAttributeValue(ReadOperationPersistenceImpl.java:2054)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.getAttributeValue(PersistenceOperationImpl.java:516)
         at com.huawei.oss.services.common.Utility.getNameByID(Utility.java:78)
         at com.huawei.oss.services.port.common.RMSPortUtility.setExtraToVO(RMSPortUtility.java:45)
         at com.huawei.oss.services.port.server.PhyPortConnHelper.setExtraToVO(PhyPortConnHelper.java:2046)
         at com.huawei.oss.services.port.server.PhyPortConnHelper.afterGet(PhyPortConnHelper.java:719)
         at com.huawei.oss.services.common.AbstractResourceHelper.getResource(AbstractResourceHelper.java:293)
         at com.huawei.oss.services.port.server.PhyPortConnHelper.rmsGetByPort(PhyPortConnHelper.java:809)
         at com.huawei.oss.services.port.server.PhyPortConnHelper.rmsGetAllPhyConnOfBoard(PhyPortConnHelper.java:1144)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.huawei.oss.services.common.AbstractResourceHelper.directMethod(AbstractResourceHelper.java:489)
         at com.huawei.oss.services.common.AbstractResourceHelper.invokeMethod(AbstractResourceHelper.java:404)
         at com.huawei.oss.rms.resourceaccess.ResourceMgmtSessionEJB.invokeMethod(ResourceMgmtSessionEJB.java:263)
         at com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl.invokeMethod(ResourceMgmtSession_1x9h7n_EOImpl.java:424)
         at com.huawei.oss.rms.resourceaccess.ResourceMgmtSession_1x9h7n_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.activation.ActivatableServerRef.invoke(ActivatableServerRef.java:90)
         at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:144)
         at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:415)
         at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:30)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)
    "ExecuteThread: '13' for queue: 'weblogic.kernel.Default'" daemon prio=5 tid=00088290 nid=26 lwp_id=39204 runnable [0x6316d000..0x6316c4f0]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at oracle.net.ns.Packet.receive(Unknown Source)
         at oracle.net.ns.DataPacket.receive(Unknown Source)
         at oracle.net.ns.NetInputStream.getNextPacket(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.net.ns.NetInputStream.read(Unknown Source)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalUB1(T4CMAREngine.java:971)
         at oracle.jdbc.driver.T4CMAREngine.unmarshalSB1(T4CMAREngine.java:941)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:432)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:112)
         at oracle.jdbc.driver.T4CStatement.execute_for_rows(T4CStatement.java:474)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:913)
         at oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:383)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:984)
         at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1124)
         - locked <76c0d1f8> (a oracle.jdbc.driver.T4CStatement)
         - locked <6f1ab788> (a oracle.jdbc.driver.T4CConnection)
         at weblogic.jdbc.wrapper.Statement.executeQuery(Statement.java:345)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.executeSQL(PersistenceOperationImpl.java:2884)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.setVersionFlagNResourceName(PersistenceOperationImpl.java:3137)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.makeAssociationValue(PersistenceOperationImpl.java:2600)
         at com.huawei.oss.rms.persistence.ReadOperationPersistenceImpl.getResourceAssociationSet(ReadOperationPersistenceImpl.java:2575)
         at com.huawei.oss.rms.persistence.PersistenceOperationImpl.getResourceAssociationSet(PersistenceOperationImpl.java:603)
         at com.huawei.oss.services.port.common.RMSPortUtility.getSlotByEquip(RMSPortUtility.jÿ

  • Http adapter call rfc: BAPI_PO_GETDETAIL1has an  error,who can help me!

    Hello, everyOne!
    I have a question! When I call BAPI_PO_GETDETAIL1.request, I pass on parameters "PURCHASEORDER=5523" which exists in ECC6. However, the return message displays "<message>Document 5523 does not exist</message>". That is non-exist.
    I used http_adapter to class BAPI_PO_GETDETAIL1. I am wondering who could tell me which parameters must be filled and how to be filled?
    thank you so much!
    Edited by: Gavin Tao on Dec 6, 2008 2:26 PM

    HI Gavin
    Need more information for solving this
    My understanding is you are using RFC and calling BAPI_PO_GETDETAIL and its returning details not available.
    If the PO exist there is it released. Check with the SD functional person for this
    Thanks
    Gaurav

  • First of all, I would have to say that getting in touch with you is a nightmare and I am not at all happy that I can't just email or live chat with someone who can help!  I am not a technical person, I just want to be able to use Photoshop Elements and ge

    First of all, I would have to say that getting in touch with you is a nightmare and I am not at all happy that I can't just email or live chat with someone who can help!  I am not a technical person, I just want to be able to use Photoshop Elements and get on with it. I bought Photoshop Elements via Amazon some months ago and it worked fine.  I then got a message that advised that the trial version would expire, which it subsequently has (I have been trawling your site for weeks and weeks trying to find an email or phone contact to get some assistance).  Relucltantly, I am now typing this - and I suspect it will not help in the slightest!  I bought the FULL not TRIAL edition of Photoshop Elements and I have contacted Amazon who confirmed this, but say I need to contact you.  Can you please let me know how I can resolve this?  Louise A Fraser

    Hi Louise, sorry to hear of your problems. This is not Adobe. We are mainly support volunteers, other users like you, trying to help one another.  You need to contact Adobe directly for activation and licencing issues. Click the link below. Use the dropdown menu for boxes (1) & (2) to scroll down the list and choose:
    1. Adobe Photoshop Elements
    2. Adobe ID, and signing-in
    3. Click on the blue button: Still need help? Contact us – then click the area marked chat 24/7, then click “start chat ”
    It’s usually possible to start a live chat, if an Adobe agent is free, and often to get the problem fixed right away. Have your serial number available. The agent can directly troubleshoot your system if you agree to activate the Adobe Connect add-on. Don’t let them pass the buck. Stay connected and ask to speak with a supervisor if necessary.
    Click here to get help now Contact Customer Care

  • Someone who can help me to do.  Adobe Bridge CS6 Update 5.0.2 The update is not applicable. Error Code: U44M2P28

    Someone who can help me to do.  Adobe Bridge CS6 Update 5.0.2 The update is not applicable. Error Code: U44M2P28

    be sure to use the correct update (32 or 64 bit).
    http://www.adobe.com/downloads/updates/

  • I have an iPhone4 and require the latest software update 4.3.5 every time i try to get it i get a message error 3194 yet i have the latest software of everything! who can help?

    I have an iPhone4 and require the latest software update 4.3.5 every time i try to get it i get a message error 3194 appears yet i have the latest software of everything it is annoying me cause i cant restore my phone either
    ! who can help?

    look around the forum tons of people repport that they can't update
    makes you suspect that apples update servers can't meet the depand of too many users
    trying to update at once

  • HT4061 My iphone 4s remains in recovery mode permamently. Itunes wont restore it, constant messages of error 4013 keeps coming up on screen, is there any1 out there who can help before i crack up?

    My iphone 4s remains in recovery mode permamently. Itunes wont restore it, constant messages of error 4013 keeps coming up on screen, is there any1 out there who can help before i crack up?

    Hello Sean,
    It sounds like you are constantly needing to restore your phone because it keeps going into recovery mode. Usually putting a device into recovery mode and restoring it can help isolate an issue to your iPhone hardware if an issue persists afterwards. I would try manually putting it into recovery mode and restoring it 1 more time:
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    If that does not resolve it the symptoms indicate to me that it is a hardware issue causing this to happen and would seek service for it:
    iPhone Repair - Other Repairs
    https://www.apple.com/support/iphone/repair/other/
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • I am trying to install Adobe Premiere Elements 9 without success. I successfully installed Photoshop Elements 9 without a problem. The message I am getting is 'Invalid Unicode file - .\Autoplay\LangData\en_US\lang.dat'. Anyone out there who can help pleas

    I am trying to install Adobe Premiere Elements 9 without success. I successfully installed Photoshop Elements 9 without a problem. The message I am getting is 'Invalid Unicode file - .\Autoplay\LangData\en_US\lang.dat'. Anyone out there who can help please?

    click setup, not autoplay.

  • Is there anyone who can help me? my Photoshop CC is keep crashing, it doesn't show any error message. Suddenly " program stop responding" after few seconds of launch.

    Is there anyone who can help me? my Photoshop CC is keep crashing, it doesn't show any error message. Suddenly " program stop responding" after few seconds of launch.

    If Photoshop crashes the should be a System crash report generated by your OS. For example Windows

  • Hello is there anybody who can help me in german? i have the same problem like the guy with i tunes. it won´t open an give me an error "An application has made an attempt to load the C runtimelibrary incorrectly" Please contact the application´s support..

    I´ve so many privat things on I tunes like pictures, music etc.and i won´t loose them. is there anybody who can help me to save my private things and help me to solve teh problem
    Thanks you for help greetings from austria

    I just had the same error: 
    R6034
    An application has made an attempt to load the C runtime library incorrectly.  Please contact the apps support team for more info.
    I went to http://support.apple.com/kb/ht1925 and did a complete removal and reinstallation of iTunes. You MUST follow the directions here exactly...it's more than just iTunes that must be removed, and it MUST be done in the order in which the support article says.  I followed the exact instructions, and iTunes is back on my machine (no more C runtime error) and you do NOT lose your music...it's all in my library, as it was before.
    Good luck!

  • When I try to install the latest version (10.5) of iTunes, the following message appears: "There was a problem with this Windows Installer package. A program running during installation is terminated unexpectedly." Is there somebody who can help me?thanks

    When I try to install the latest version (10.5) of iTunes, the following message appears: "There was a problem with this Windows Installer package. A program running during installation is terminated unexpectedly." Is there somebody who can help me?thanks

    I used this site and it fixed my problems. Hoping it will help with yours too
    http://support.microsoft.com/mats/Program_Install_and_Uninstall

  • Hey. I can not sync my iphone with my macbook air. It will not download my purchased music. Writes that there was an unknown error (-42408). Is there anyone who can help me.  Sincerely jimmi

    Hey. I can not sync my iphone with my macbook air. It will not download my purchased music. Writes that there was an unknown error (-42408). Is there anyone who can help me.
    Sincerely jimmi

    Hey joshuafromisr,
    If you resintall iTunes, it should fix the issue. The following document will go over how to remove iTunes fully and then reinstall. Depending on what version of Windows you're running you'll either follow the directions here:
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    http://support.apple.com/kb/HT1925
    or here:
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    http://support.apple.com/kb/HT1923
    Best,
    David

  • HT202213 iTunes: Home sharing can't be activated due to an error (5506). Who can help?

    iTunes: Home sharing can't be activated due to an error (5506). Who can help?
    I have an Apple ID but for some reason iTunes does not recognizes it.
    I have downloaded the latest version of iTunes as well?

    Did you ever figure it out? I am new to itunes and it won't allow me to home share with my daughter because I don't have a credit card.

  • Error Message:"Cannot find or create the font 'WP-MathA'. Some characters may not display or print correctly."  Who can help me solve this problem?

    Some of the pdf files I work with (receive) come up with a comment: “Cannot find or create the font ‘WP-MathA’. Some characters may not display or print correctly.”  Who can help me solve this problem?
    Thank you in advance for  your time.
    Marlen

    Hello Anubha,
    I am having a similar problem on my machine.  I was using Word 2008 and I created a PDF inside Word.
    I am opening the file on the system itself and I am running Windows 8.1.  I am using Version 11 of Reader.
    When the PDF I created (my resume) attempts to open, it says:  cannot find or create the file Times, Bold.  Some characters may not display or print correctly. 
    However, the entire Reader keeps freezing and will not allow me to open or test print the document.  Also, it is not displaying any of the Bold Times New Roman Print.  Can you please help?  Thanks.

  • HELP ME!!!! who can help me ???

    My eclipse always halt suddenly. I have no idea how to solve it, and i have reinstall my JVM and eclipse.but it doesn't work, the eclipse halt again.
    The below is the eclipse log hs_err_pid3740.log. Who can help me? much appreciate!!!!
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d7f789e, pid=3740, tid=1468
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_09-b01 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0xc789e]
    --------------- T H R E A D ---------------
    Current thread (0x00c7ed10): JavaThread "Worker-5" [_thread_in_vm, id=1468]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000054
    Registers:
    EAX=0x00000000, EBX=0x2563a6b0, ECX=0x00000180, EDX=0x0000001a
    ESP=0x37fff814, EBP=0x37fff848, ESI=0x0000001a, EDI=0x35298770
    EIP=0x6d7f789e, EFLAGS=0x00010202
    Top of Stack: (sp=0x37fff814)
    0x37fff814: 6d7f7858 0000001a 3699747c 22ca6f68
    0x37fff824: 00000000 6d7f8aaf 23aacde0 22ca6f68
    0x37fff834: 00c7ed10 36b7bff0 35298768 35298770
    0x37fff844: 35298b5c 37fff87c 6d7f9986 36997468
    0x37fff854: 36997488 36997484 00c7ed10 00c7ed10
    0x37fff864: 00c7ed10 00000000 00000001 00c7ed10
    0x37fff874: 00c7ed10 00c7ed10 37fff8a8 6d7f98b4
    0x37fff884: 37fff940 3699747c 36997468 36997488
    Instructions: (pc=0x6d7f789e)
    0x6d7f788e: 8b 54 24 04 8d 0c 91 8b 04 01 8b 40 0c 8b 40 14
    0x6d7f789e: 8b 40 54 c1 e8 09 83 e0 01 c2 04 00 8b 4c 24 04
    Stack: [0x37f00000,0x38000000), sp=0x37fff814, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V [jvm.dll+0xc789e]
    V [jvm.dll+0xc9986]
    V [jvm.dll+0xc98b4]
    V [jvm.dll+0xca226]
    V [jvm.dll+0xca059]
    V [jvm.dll+0x82544]
    j com.sun.org.apache.xml.internal.serializer.ToStream.init(Ljava/io/Writer;Ljava/util/Properties;ZZ)V+73
    j com.sun.org.apache.xml.internal.serializer.ToStream.init(Ljava/io/OutputStream;Ljava/util/Properties;Z)V+55
    j com.sun.org.apache.xml.internal.serializer.ToStream.setOutputStream(Ljava/io/OutputStream;)V+26
    j com.sun.org.apache.xml.internal.serializer.ToUnknownStream.setOutputStream(Ljava/io/OutputStream;)V+5
    j com.sun.org.apache.xalan.internal.xsltc.runtime.output.TransletOutputHandlerFactory.getSerializationHandler()Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;+172
    j com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.getOutputHandler(Ljavax/xml/transform/Result;)Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;+250
    j com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Ljavax/xml/transform/Source;Ljavax/xml/transform/Result;)V+46
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeDOMtoStream(Lorg/w3c/dom/Document;Ljava/io/OutputStream;)V+44
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/w3c/dom/Document;Ljava/util/zip/ZipOutputStream;)V+25
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/eclipse/mylyn/tasks/core/TaskList;Ljava/io/OutputStream;)V+342
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/eclipse/mylyn/tasks/core/TaskList;Ljava/io/File;)V+12
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager.internalSaveTaskList()V+16
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager.access$0(Lorg/eclipse/mylyn/internal/tasks/ui/util/TaskListSaveManager;)V+1
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager$TaskListSaverJob.run(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+65
    j org.eclipse.core.internal.jobs.Worker.run()V+31
    v ~StubRoutines::call_stub
    V [jvm.dll+0x86e84]
    V [jvm.dll+0xddead]
    V [jvm.dll+0x86d55]
    V [jvm.dll+0x86ab2]
    V [jvm.dll+0xa16b2]
    V [jvm.dll+0x10f4ac]
    V [jvm.dll+0x10f47a]
    C [MSVCRT.dll+0x2a3b0]
    C [kernel32.dll+0xb713]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j com.sun.org.apache.xml.internal.serializer.ToStream.init(Ljava/io/Writer;Ljava/util/Properties;ZZ)V+73
    j com.sun.org.apache.xml.internal.serializer.ToStream.init(Ljava/io/OutputStream;Ljava/util/Properties;Z)V+55
    j com.sun.org.apache.xml.internal.serializer.ToStream.setOutputStream(Ljava/io/OutputStream;)V+26
    j com.sun.org.apache.xml.internal.serializer.ToUnknownStream.setOutputStream(Ljava/io/OutputStream;)V+5
    j com.sun.org.apache.xalan.internal.xsltc.runtime.output.TransletOutputHandlerFactory.getSerializationHandler()Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;+172
    j com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.getOutputHandler(Ljavax/xml/transform/Result;)Lcom/sun/org/apache/xml/internal/serializer/SerializationHandler;+250
    j com.sun.org.apache.xalan.internal.xsltc.trax.TransformerImpl.transform(Ljavax/xml/transform/Source;Ljavax/xml/transform/Result;)V+46
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeDOMtoStream(Lorg/w3c/dom/Document;Ljava/io/OutputStream;)V+44
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/w3c/dom/Document;Ljava/util/zip/ZipOutputStream;)V+25
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/eclipse/mylyn/tasks/core/TaskList;Ljava/io/OutputStream;)V+342
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListWriter.writeTaskList(Lorg/eclipse/mylyn/tasks/core/TaskList;Ljava/io/File;)V+12
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager.internalSaveTaskList()V+16
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager.access$0(Lorg/eclipse/mylyn/internal/tasks/ui/util/TaskListSaveManager;)V+1
    j org.eclipse.mylyn.internal.tasks.ui.util.TaskListSaveManager$TaskListSaverJob.run(Lorg/eclipse/core/runtime/IProgressMonitor;)Lorg/eclipse/core/runtime/IStatus;+65
    j org.eclipse.core.internal.jobs.Worker.run()V+31
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x36da44c0 JavaThread "Thread-7" [_thread_blocked, id=2840]
    0x36b960f0 JavaThread "Timer-2" [_thread_blocked, id=2008]
    0x36ca63a0 JavaThread "Timer-1" [_thread_blocked, id=3176]
    0x36b92d20 JavaThread "Timer-0" [_thread_blocked, id=3832]
    0x36bde590 JavaThread "Worker-6" [_thread_blocked, id=3968]
    =>0x00c7ed10 JavaThread "Worker-5" [_thread_in_vm, id=1468]
    0x369b7008 JavaThread "Worker-4" [_thread_blocked, id=1444]
    0x352b7d88 JavaThread "Worker-3" [_thread_blocked, id=780]
    0x36bd1008 JavaThread "Worker-2" [_thread_blocked, id=2124]
    0x35748c78 JavaThread "Worker-1" [_thread_blocked, id=3588]
    0x369438d8 JavaThread "org.eclipse.jdt.internal.ui.text.JavaReconciler" daemon [_thread_blocked, id=844]
    0x366b7fd0 JavaThread "Java indexing" daemon [_thread_blocked, id=2040]
    0x355a7160 JavaThread "Worker-0" [_thread_blocked, id=1492]
    0x3550b410 JavaThread "Start Level Event Dispatcher" daemon [_thread_blocked, id=3956]
    0x3556de40 JavaThread "Framework Event Dispatcher" daemon [_thread_blocked, id=3192]
    0x00c629e0 JavaThread "State Data Manager" daemon [_thread_blocked, id=3188]
    0x00c5dc88 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=1728]
    0x00c5c8e8 JavaThread "CompilerThread0" daemon [_thread_blocked, id=340]
    0x00c6b2a8 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2116]
    0x00c50ab8 JavaThread "Finalizer" daemon [_thread_blocked, id=3652]
    0x00c4f650 JavaThread "Reference Handler" daemon [_thread_blocked, id=3144]
    0x003edb60 JavaThread "main" [_thread_in_native, id=2316]
    Other Threads:
    0x003e5688 VMThread [id=3568]
    0x00c5ef98 WatcherThread [id=3984]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 4608K, used 2915K [0x02c90000, 0x03190000, 0x053f0000)
    eden space 4096K, 58% used [0x02c90000, 0x02ee8c50, 0x03090000)
    from space 512K, 100% used [0x03110000, 0x03190000, 0x03190000)
    to space 512K, 0% used [0x03090000, 0x03090000, 0x03110000)
    tenured generation total 60112K, used 42130K [0x053f0000, 0x08ea4000, 0x22c90000)
    the space 60112K, 70% used [0x053f0000, 0x07d14a28, 0x07d14c00, 0x08ea4000)
    compacting perm gen total 43008K, used 42780K [0x22c90000, 0x25690000, 0x32c90000)
    the space 43008K, 99% used [0x22c90000, 0x25657298, 0x25657400, 0x25690000)
    No shared spaces configured.
    Dynamic libraries:
    0x00400000 - 0x0040e000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\eclipse.exe
    0x7c900000 - 0x7c9af000      C:\WINDOWS\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000      C:\WINDOWS\system32\kernel32.dll
    0x7e410000 - 0x7e4a1000      C:\WINDOWS\system32\USER32.dll
    0x77f10000 - 0x77f59000      C:\WINDOWS\system32\GDI32.dll
    0x5d090000 - 0x5d12a000      C:\WINDOWS\system32\COMCTL32.dll
    0x77dd0000 - 0x77e6b000      C:\WINDOWS\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000      C:\WINDOWS\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINDOWS\system32\Secur32.dll
    0x77c10000 - 0x77c68000      C:\WINDOWS\system32\MSVCRT.dll
    0x76390000 - 0x763ad000      C:\WINDOWS\system32\IMM32.DLL
    0x629c0000 - 0x629c9000      C:\WINDOWS\system32\LPK.DLL
    0x74d90000 - 0x74dfb000      C:\WINDOWS\system32\USP10.dll
    0x72000000 - 0x72012000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.3.R33x_v20080118\eclipse_1023.dll
    0x77c00000 - 0x77c08000      C:\WINDOWS\system32\VERSION.dll
    0x5ad70000 - 0x5ada8000      C:\WINDOWS\system32\uxtheme.dll
    0x74720000 - 0x7476c000      C:\WINDOWS\system32\MSCTF.dll
    0x77b40000 - 0x77b62000      C:\WINDOWS\system32\apphelp.dll
    0x755c0000 - 0x755ee000      C:\WINDOWS\system32\msctfime.ime
    0x774e0000 - 0x7761d000      C:\WINDOWS\system32\ole32.dll
    0x6d730000 - 0x6d8cb000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\client\jvm.dll
    0x76b40000 - 0x76b6d000      C:\WINDOWS\system32\WINMM.dll
    0x6d2f0000 - 0x6d2f8000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\hpi.dll
    0x76bf0000 - 0x76bfb000      C:\WINDOWS\system32\PSAPI.DLL
    0x6d700000 - 0x6d70c000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\verify.dll
    0x6d370000 - 0x6d38d000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\java.dll
    0x6d720000 - 0x6d72f000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\zip.dll
    0x6d530000 - 0x6d543000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\net.dll
    0x71ab0000 - 0x71ac7000      C:\WINDOWS\system32\WS2_32.dll
    0x71aa0000 - 0x71aa8000      C:\WINDOWS\system32\WS2HELP.dll
    0x6d550000 - 0x6d559000      D:\Program Files\Java\jdk1.5.0_09\jre\bin\nio.dll
    0x35be0000 - 0x35c2f000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\configuration\org.eclipse.osgi\bundles\334\1\.cp\swt-win32-3349.dll
    0x773d0000 - 0x774d3000      C:\WINDOWS\WinSxS\X86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\COMCTL32.dll
    0x77f60000 - 0x77fd6000      C:\WINDOWS\system32\SHLWAPI.dll
    0x763b0000 - 0x763f9000      C:\WINDOWS\system32\comdlg32.dll
    0x7c9c0000 - 0x7d1d7000      C:\WINDOWS\system32\SHELL32.dll
    0x77120000 - 0x771ab000      C:\WINDOWS\system32\OLEAUT32.dll
    0x78050000 - 0x78120000      C:\WINDOWS\system32\WININET.dll
    0x35c40000 - 0x35c49000      C:\WINDOWS\system32\Normaliz.dll
    0x78000000 - 0x78045000      C:\WINDOWS\system32\iertutil.dll
    0x361a0000 - 0x361ba000      C:\WINDOWS\system32\hccutils.DLL
    0x361c0000 - 0x361c8000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\configuration\org.eclipse.osgi\bundles\36\1\.cp\os\win32\x86\localfile_1_0_0.dll
    0x74c80000 - 0x74cac000      C:\WINDOWS\system32\oleacc.dll
    0x76080000 - 0x760e5000      C:\WINDOWS\system32\MSVCP60.dll
    0x36e80000 - 0x36e94000      E:\dev_tools\eclipse\eclipse-jee-europa-winter-win32\eclipse\configuration\org.eclipse.osgi\bundles\334\1\.cp\swt-gdip-win32-3349.dll
    0x4ec50000 - 0x4edf6000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.GdiPlus_6595b64144ccf1df_1.0.2600.5581_x-ww_dfbc4fc4\gdiplus.dll
    0x37170000 - 0x37435000      C:\WINDOWS\system32\xpsp2res.dll
    0x76fd0000 - 0x7704f000      C:\WINDOWS\system32\CLBCATQ.DLL
    0x77050000 - 0x77115000      C:\WINDOWS\system32\COMRes.dll
    0x75cf0000 - 0x75d81000      C:\WINDOWS\System32\mlang.dll
    0x379d0000 - 0x37a54000      D:\Program Files\TortoiseSVN\bin\tortoisesvn.dll
    0x6eec0000 - 0x6eee2000      D:\Program Files\TortoiseSVN\bin\libapr_tsvn.dll
    0x71a50000 - 0x71a8f000      C:\WINDOWS\system32\MSWSOCK.dll
    0x78130000 - 0x781cb000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.1433_x-ww_5cf844d2\MSVCR80.dll
    0x6ee60000 - 0x6ee88000      D:\Program Files\TortoiseSVN\bin\libaprutil_tsvn.dll
    0x6ee50000 - 0x6ee5d000      D:\Program Files\TortoiseSVN\bin\libapriconv_tsvn.dll
    0x37a80000 - 0x37a8c000      D:\Program Files\TortoiseSVN\bin\intl3_svn.dll
    0x7c420000 - 0x7c4a7000      C:\WINDOWS\WinSxS\x86_Microsoft.VC80.CRT_1fc8b3b9a1e18e3b_8.0.50727.1433_x-ww_5cf844d2\MSVCP80.dll
    0x76780000 - 0x76789000      C:\WINDOWS\system32\SHFOLDER.dll
    0x6ee40000 - 0x6ee46000      D:\Program Files\TortoiseSVN\iconv\_tbl_simple.so
    0x6e900000 - 0x6e923000      D:\Program Files\TortoiseSVN\iconv\cp936.so
    0x6ed50000 - 0x6ed56000      D:\Program Files\TortoiseSVN\iconv\utf-8.so
    0x77a20000 - 0x77a74000      C:\WINDOWS\System32\cscui.dll
    0x76600000 - 0x7661d000      C:\WINDOWS\System32\CSCDLL.dll
    0x77920000 - 0x77a13000      C:\WINDOWS\system32\SETUPAPI.dll
    0x76380000 - 0x76385000      C:\WINDOWS\system32\msimg32.dll
    0x662b0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINDOWS\System32\wshtcpip.dll
    VM Arguments:
    jvm_args: -Dosgi.requiredJavaVersion=1.5 -Xms40m -Xmx512m -XX:MaxPermSize=256M
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    JAVA_HOME=D:\Program Files\Java\jdk1.5.0_09
    CLASSPATH=.;D:\Program Files\Java\jdk1.5.0_09\lib\tools.jar;D:\Program Files\Java\jre1.5.0_09\lib\ext\QTJava.zip;E:\eclipse_ee\workspace\Thumper\postgresql-8.2-508.jdbc3.jar
    PATH=D:\Program Files\Java\jdk1.5.0_09\bin\..\jre\bin\client;D:\Program Files\Java\jdk1.5.0_09\bin\..\jre\bin;D:\Program Files\Java\jdk1.5.0_09\bin;D:\oracle\ora92\bin;C:\Program Files\Oracle\jre\1.3.1\bin;C:\Program Files\Oracle\jre\1.1.8\bin;C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\Program Files\Apache Software Foundation\Maven 1.1-beta-3\bin;D:\Program Files\Apache Software Foundation\apache-ant-1.7.0\bin;D:\Program Files\Python25;D:\cygwin;D:\Program Files\SecureCRT\;D:\Program Files\IDM Computer Solutions\UltraEdit-32;D:\Program Files\jython2.2.1;D:\Program Files\Tencent\QQ;D:\Program Files\net-snmp\usr\bin;D:\Program Files\Apache Software Foundation\apache-maven-2.0.9\bin;D:\Program Files\MySQL\MySQL Server 5.0\bin;E:\dev_tools\svn\svn-win32-1.4.3\bin;D:\Program Files\Tivoli\TSM\baclient;E:\open source project\android\android-sdk_m5-rc15_windows\tools;D:\cygwin\bin
    USERNAME=Administrator
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 13, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 3
    CPU:total 2 (cores per cpu 2, threads per core 1) family 6 model 15 stepping 13, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 2052648k(1391420k free), swap 3990772k(3260776k free)
    vm_info: Java HotSpot(TM) Client VM (1.5.0_09-b01) for windows-x86, built on Sep 7 2006 13:59:31 by "java_re" with MS VC++ 6.0

    Looking into the stack trace, this seems to be related to mylyn plugin. Try to remove it (remove it from the plugins dir and restart eclipse) and see if this is still happening

Maybe you are looking for

  • 11.1.1.2 Cyrillic and FinReporting Studio

    Hi all, I use EPM 11.1.1.2, today I installed Financial reporting and Web analysis When I try to create a new report using my existing planning app with cyrillic aliases and insert new grid I see '??????' instead of my cyrillic aliases How I can work

  • Suggestion: Invert shading that reflects active document tab

    It's a pretty minor thing, but I'd suggest flipping how you distinguish between the active document tab vs the inactive ones when using the dark interface. I can get the logic of having the brightest tab representing the one you're actually working o

  • Oracle 11gR2 RAC on Linux 5

    Hi, I am trying to setup Oracle 11gR2 RAC on Linux 5.4 64-bit machine. I have used OCFS2 for creating shared disks. Encountered with the following error message while installing "Grid Infrastructure". [INS-30014] Unable to check wether the location s

  • Disc not supported

    Hi, Total n00b here, so be gentle Recently got a Macbook with Snow Leopard. Initially played movie DVDs fine, but I now receive "disc not supported" error in DVD Player. I have read around the topic a bit, so I have already repaired permissions and c

  • Project erred. Is in folders, cannot open in iMovie

    I was almost finished with a project when it erred.  I was instructed to make a forced close.  Then rebooted.  My project is not in iMove, however I see it in the folders under finder.  It will not let me copy and paste, or drag.  It will not let me