Error when getting port from service

I've got a problem....I've succesfully created a ws client .....
here is the wsdl:
<?xml version="1.0" encoding="UTF-8"?>
<!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.4. -->
<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.4. -->
<definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://impl.complaint.ws.sepadb.nkbm.si/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://impl.complaint.ws.sepadb.nkbm.si/" name="ComplaintWsImplService">
     <import namespace="nkbm.si/2010/06/16/sepadb/Complaint/Operation" location="http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor?wsdl=1"/>
     <binding xmlns:ns1="nkbm.si/2010/06/16/sepadb/Complaint/Operation" name="ComplaintWsImplPortBinding" type="ns1:PortType">
          <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
          <operation name="BrowseComplaints">
               <soap:operation soapAction="nkbm.si/2010/06/16/sepadb/Complaint/Operation/BrowseComplaints"/>
               <input>
                    <soap:body use="literal"/>
               </input>
               <output>
                    <soap:body use="literal"/>
               </output>
          </operation>
          <operation name="UpdateComplaints">
               <soap:operation soapAction="nkbm.si/2010/06/16/sepadb/Complaint/Operation/UpdateComplaints"/>
               <input>
                    <soap:body use="literal"/>
               </input>
               <output>
                    <soap:body use="literal"/>
               </output>
          </operation>
     </binding>
     <service name="ComplaintWsImplService">
          <port name="ComplaintWsImplPort" binding="tns:ComplaintWsImplPortBinding">
               <soap:address location="http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor"/>
          </port>
     </service>
</definitions>
and the shchema http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor?wsdl=1
<?xml version='1.0' encoding='UTF-8'?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.4. --><wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:schema="nkbm.si/2010/06/16/sepadb/Complaint/Operation" xmlns:tns="nkbm.si/2010/06/16/sepadb/Complaint/Operation" name="" targetNamespace="nkbm.si/2010/06/16/sepadb/Complaint/Operation">
     <wsdl:types>
          <xsd:schema targetNamespace="nkbm.si/2010/06/16/sepadb/Complaint/Operation">
               <xsd:include schemaLocation="http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor?xsd=8" />
          </xsd:schema>
     </wsdl:types>
     <wsdl:message name="BrowseComplaintsRequestMessage">
          <wsdl:part name="body" element="schema:BrowseComplaintsRequest" />
     </wsdl:message>
     <wsdl:message name="BrowseComplaintsResponseMessage">
          <wsdl:part name="body" element="schema:BrowseComplaintsResponse" />
     </wsdl:message>
     <wsdl:message name="UpdateComplaintsRequestMessage">
          <wsdl:part name="body" element="schema:UpdateComplaintsRequest" />
     </wsdl:message>
     <wsdl:message name="UpdateComplaintsResponseMessage">
          <wsdl:part name="body" element="schema:UpdateComplaintsResponse" />
     </wsdl:message>
     <wsdl:portType name="PortType">
          <wsdl:operation name="BrowseComplaints">
               <wsdl:input name="BrowseComplaintsInput" message="tns:BrowseComplaintsRequestMessage" />
               <wsdl:output name="BrowseComplaintsOutput" message="tns:BrowseComplaintsResponseMessage" />
          </wsdl:operation>
          <wsdl:operation name="UpdateComplaints">
               <wsdl:input name="UpdateComplaintsInput" message="tns:UpdateComplaintsRequestMessage" />
               <wsdl:output name="UpdateComplaintsOutput" message="tns:UpdateComplaintsResponseMessage" />
          </wsdl:operation>
     </wsdl:portType>
     <wsdl:binding name="Binding" type="tns:PortType">
          <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
          <wsdl:operation name="BrowseComplaints">
               <wsdlsoap:operation soapAction="nkbm.si/2010/06/16/sepadb/Complaint/Operation/BrowseComplaints" />
               <wsdl:input name="BrowseComplaintsInput">
                    <wsdlsoap:body use="literal" />
               </wsdl:input>
               <wsdl:output name="BrowseComplaintsOutput">
                    <wsdlsoap:body use="literal" />
               </wsdl:output>
          </wsdl:operation>
          <wsdl:operation name="UpdateComplaints">
               <wsdlsoap:operation soapAction="nkbm.si/2010/06/16/sepadb/Complaint/Operation/UpdateComplaints" />
               <wsdl:input name="UpdateComplaintsInput">
                    <wsdlsoap:body use="literal" />
               </wsdl:input>
               <wsdl:output name="UpdateComplaintsOutput">
                    <wsdlsoap:body use="literal" />
               </wsdl:output>
          </wsdl:operation>
     </wsdl:binding>
     <wsdl:service name="Service">
          <wsdl:port name="Port" binding="tns:Binding">
               <wsdlsoap:address location="" />
          </wsdl:port>
     </wsdl:service>
</wsdl:definitions>
here is the code to generate the webservice:
ComplaintWsImplService service= new ComplaintWsImplService(new URL("http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor?wsdl"),new QName("http://impl.complaint.ws.sepadb.nkbm.si/", "ComplaintWsImplService"));
PortType port=service.getComplaintWsImplPort();
but when I try to call the upper code I get the error
15.7.2010 15:57:55 com.sun.xml.ws.server.sei.EndpointMethodHandler invoke
SEVERE: weblogic.wsee.wsdl.WsdlException: Must attribute 'location' notfound in element 'address
javax.xml.ws.WebServiceException: weblogic.wsee.wsdl.WsdlException: Must attribute 'location' notfound in element 'address
     at weblogic.wsee.jaxws.framework.jaxrpc.client.ClientEnvironmentFactory.getWsdlDef(ClientEnvironmentFactory.java:170)
     at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.getService(EnvironmentFactory.java:429)
     at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.buildDeploymentContext(EnvironmentFactory.java:621)
     at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.getDeploymentContext(EnvironmentFactory.java:606)
     at weblogic.wsee.jaxws.framework.jaxrpc.TubelineDeploymentListener.createClient(TubelineDeploymentListener.java:48)
     at weblogic.wsee.jaxws.WLSTubelineAssemblerFactory$TubelineAssemblerImpl.createClient(WLSTubelineAssemblerFactory.java:57)
     at com.sun.xml.ws.client.WSServiceDelegate.createPipeline(WSServiceDelegate.java:453)
     at com.sun.xml.ws.client.WSServiceDelegate.getStubHandler(WSServiceDelegate.java:668)
     at com.sun.xml.ws.client.WSServiceDelegate.createEndpointIFBaseProxy(WSServiceDelegate.java:647)
     at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:348)
     at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate.getPort(WLSProvider.java:409)
     at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:330)
     at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:312)
     at javax.xml.ws.Service.getPort(Service.java:92)
     at si.nkbm.sepadb.ws.complaint.impl.ComplaintWsImplService.getComplaintWsImplPort(Unknown Source)
     at nkbm.ws.TestWS.hello(TestWS.java:60)
     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:597)
     at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:101)
     at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:83)
     at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:152)
     at com.sun.xml.ws.server.sei.EndpointMethodHandler.invoke(EndpointMethodHandler.java:264)
     at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:93)
     at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:604)
     at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:563)
     at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:548)
     at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:445)
     at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:249)
     at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:453)
     at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:250)
     at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:140)
     at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:298)
     at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:211)
     at weblogic.wsee.jaxws.JAXWSServlet.doPost(JAXWSServlet.java:297)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
     at weblogic.wsee.jaxws.JAXWSServlet.service(JAXWSServlet.java:87)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3590)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2200)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2106)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1428)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: weblogic.wsee.wsdl.WsdlException: Must attribute 'location' notfound in element 'address
     at weblogic.wsee.wsdl.WsdlReader.getMustAttribute(WsdlReader.java:129)
     at weblogic.wsee.wsdl.soap11.SoapAddress.parse(SoapAddress.java:84)
     at weblogic.wsee.wsdl.soap11.SoapExtensionParser.parsePort(SoapExtensionParser.java:101)
     at weblogic.wsee.wsdl.WsdlExtensionRegistry.parsePort(WsdlExtensionRegistry.java:142)
     at weblogic.wsee.wsdl.WsdlPort.parseChild(WsdlPort.java:158)
     at weblogic.wsee.wsdl.WsdlExtensible.parse(WsdlExtensible.java:98)
     at weblogic.wsee.wsdl.WsdlService.parseChild(WsdlService.java:134)
     at weblogic.wsee.wsdl.WsdlExtensible.parse(WsdlExtensible.java:98)
     at weblogic.wsee.wsdl.WsdlDefinitions.parseChild(WsdlDefinitions.java:579)
     at weblogic.wsee.wsdl.WsdlExtensible.parse(WsdlExtensible.java:98)
     at weblogic.wsee.wsdl.WsdlDefinitions.parse(WsdlDefinitions.java:483)
     at weblogic.wsee.wsdl.WsdlDefinitions.parse(WsdlDefinitions.java:416)
     at weblogic.wsee.wsdl.WsdlImport.parse(WsdlImport.java:121)
     at weblogic.wsee.wsdl.WsdlDefinitions.parseChild(WsdlDefinitions.java:552)
     at weblogic.wsee.wsdl.WsdlExtensible.parse(WsdlExtensible.java:98)
     at weblogic.wsee.wsdl.WsdlDefinitions.parse(WsdlDefinitions.java:483)
     at weblogic.wsee.wsdl.WsdlDefinitions.parse(WsdlDefinitions.java:448)
     at weblogic.wsee.wsdl.WsdlFactory.parse(WsdlFactory.java:125)
     at weblogic.wsee.wsdl.WsdlFactory.parse(WsdlFactory.java:121)
     at weblogic.wsee.jaxws.framework.jaxrpc.client.ClientEnvironmentFactory.getWsdlDef(ClientEnvironmentFactory.java:154)
     ... 50 more
any idea? on glassfish the client works fine...the problem is on wls 10.3.1
thank you!

I've got a problem....I've succesfully created a ws client .....
here is the wsdl:
<?xml version="1.0" encoding="UTF-8"?>
<!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.4. -->
<!-- Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.4. -->
<definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://impl.complaint.ws.sepadb.nkbm.si/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://impl.complaint.ws.sepadb.nkbm.si/" name="ComplaintWsImplService">
     <import namespace="nkbm.si/2010/06/16/sepadb/Complaint/Operation" location="http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor?wsdl=1"/>
     <binding xmlns:ns1="nkbm.si/2010/06/16/sepadb/Complaint/Operation" name="ComplaintWsImplPortBinding" type="ns1:PortType">
          <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
          <operation name="BrowseComplaints">
               <soap:operation soapAction="nkbm.si/2010/06/16/sepadb/Complaint/Operation/BrowseComplaints"/>
               <input>
                    <soap:body use="literal"/>
               </input>
               <output>
                    <soap:body use="literal"/>
               </output>
          </operation>
          <operation name="UpdateComplaints">
               <soap:operation soapAction="nkbm.si/2010/06/16/sepadb/Complaint/Operation/UpdateComplaints"/>
               <input>
                    <soap:body use="literal"/>
               </input>
               <output>
                    <soap:body use="literal"/>
               </output>
          </operation>
     </binding>
     <service name="ComplaintWsImplService">
          <port name="ComplaintWsImplPort" binding="tns:ComplaintWsImplPortBinding">
               <soap:address location="http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor"/>
          </port>
     </service>
</definitions>
and the shchema http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor?wsdl=1
<?xml version='1.0' encoding='UTF-8'?><!-- Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.4. --><wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:schema="nkbm.si/2010/06/16/sepadb/Complaint/Operation" xmlns:tns="nkbm.si/2010/06/16/sepadb/Complaint/Operation" name="" targetNamespace="nkbm.si/2010/06/16/sepadb/Complaint/Operation">
     <wsdl:types>
          <xsd:schema targetNamespace="nkbm.si/2010/06/16/sepadb/Complaint/Operation">
               <xsd:include schemaLocation="http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor?xsd=8" />
          </xsd:schema>
     </wsdl:types>
     <wsdl:message name="BrowseComplaintsRequestMessage">
          <wsdl:part name="body" element="schema:BrowseComplaintsRequest" />
     </wsdl:message>
     <wsdl:message name="BrowseComplaintsResponseMessage">
          <wsdl:part name="body" element="schema:BrowseComplaintsResponse" />
     </wsdl:message>
     <wsdl:message name="UpdateComplaintsRequestMessage">
          <wsdl:part name="body" element="schema:UpdateComplaintsRequest" />
     </wsdl:message>
     <wsdl:message name="UpdateComplaintsResponseMessage">
          <wsdl:part name="body" element="schema:UpdateComplaintsResponse" />
     </wsdl:message>
     <wsdl:portType name="PortType">
          <wsdl:operation name="BrowseComplaints">
               <wsdl:input name="BrowseComplaintsInput" message="tns:BrowseComplaintsRequestMessage" />
               <wsdl:output name="BrowseComplaintsOutput" message="tns:BrowseComplaintsResponseMessage" />
          </wsdl:operation>
          <wsdl:operation name="UpdateComplaints">
               <wsdl:input name="UpdateComplaintsInput" message="tns:UpdateComplaintsRequestMessage" />
               <wsdl:output name="UpdateComplaintsOutput" message="tns:UpdateComplaintsResponseMessage" />
          </wsdl:operation>
     </wsdl:portType>
     <wsdl:binding name="Binding" type="tns:PortType">
          <wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
          <wsdl:operation name="BrowseComplaints">
               <wsdlsoap:operation soapAction="nkbm.si/2010/06/16/sepadb/Complaint/Operation/BrowseComplaints" />
               <wsdl:input name="BrowseComplaintsInput">
                    <wsdlsoap:body use="literal" />
               </wsdl:input>
               <wsdl:output name="BrowseComplaintsOutput">
                    <wsdlsoap:body use="literal" />
               </wsdl:output>
          </wsdl:operation>
          <wsdl:operation name="UpdateComplaints">
               <wsdlsoap:operation soapAction="nkbm.si/2010/06/16/sepadb/Complaint/Operation/UpdateComplaints" />
               <wsdl:input name="UpdateComplaintsInput">
                    <wsdlsoap:body use="literal" />
               </wsdl:input>
               <wsdl:output name="UpdateComplaintsOutput">
                    <wsdlsoap:body use="literal" />
               </wsdl:output>
          </wsdl:operation>
     </wsdl:binding>
     <wsdl:service name="Service">
          <wsdl:port name="Port" binding="tns:Binding">
               <wsdlsoap:address location="" />
          </wsdl:port>
     </wsdl:service>
</wsdl:definitions>
here is the code to generate the webservice:
ComplaintWsImplService service= new ComplaintWsImplService(new URL("http://kakadu:7080/SEPADB_Ugovor/SEPADB/Spremljava/Ugovor?wsdl"),new QName("http://impl.complaint.ws.sepadb.nkbm.si/", "ComplaintWsImplService"));
PortType port=service.getComplaintWsImplPort();
but when I try to call the upper code I get the error
15.7.2010 15:57:55 com.sun.xml.ws.server.sei.EndpointMethodHandler invoke
SEVERE: weblogic.wsee.wsdl.WsdlException: Must attribute 'location' notfound in element 'address
javax.xml.ws.WebServiceException: weblogic.wsee.wsdl.WsdlException: Must attribute 'location' notfound in element 'address
     at weblogic.wsee.jaxws.framework.jaxrpc.client.ClientEnvironmentFactory.getWsdlDef(ClientEnvironmentFactory.java:170)
     at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.getService(EnvironmentFactory.java:429)
     at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.buildDeploymentContext(EnvironmentFactory.java:621)
     at weblogic.wsee.jaxws.framework.jaxrpc.EnvironmentFactory.getDeploymentContext(EnvironmentFactory.java:606)
     at weblogic.wsee.jaxws.framework.jaxrpc.TubelineDeploymentListener.createClient(TubelineDeploymentListener.java:48)
     at weblogic.wsee.jaxws.WLSTubelineAssemblerFactory$TubelineAssemblerImpl.createClient(WLSTubelineAssemblerFactory.java:57)
     at com.sun.xml.ws.client.WSServiceDelegate.createPipeline(WSServiceDelegate.java:453)
     at com.sun.xml.ws.client.WSServiceDelegate.getStubHandler(WSServiceDelegate.java:668)
     at com.sun.xml.ws.client.WSServiceDelegate.createEndpointIFBaseProxy(WSServiceDelegate.java:647)
     at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:348)
     at weblogic.wsee.jaxws.spi.WLSProvider$ServiceDelegate.getPort(WLSProvider.java:409)
     at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:330)
     at com.sun.xml.ws.client.WSServiceDelegate.getPort(WSServiceDelegate.java:312)
     at javax.xml.ws.Service.getPort(Service.java:92)
     at si.nkbm.sepadb.ws.complaint.impl.ComplaintWsImplService.getComplaintWsImplPort(Unknown Source)
     at nkbm.ws.TestWS.hello(TestWS.java:60)
     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:597)
     at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:101)
     at weblogic.wsee.jaxws.WLSInstanceResolver$WLSInvoker.invoke(WLSInstanceResolver.java:83)
     at com.sun.xml.ws.server.InvokerTube$2.invoke(InvokerTube.java:152)
     at com.sun.xml.ws.server.sei.EndpointMethodHandler.invoke(EndpointMethodHandler.java:264)
     at com.sun.xml.ws.server.sei.SEIInvokerTube.processRequest(SEIInvokerTube.java:93)
     at com.sun.xml.ws.api.pipe.Fiber.__doRun(Fiber.java:604)
     at com.sun.xml.ws.api.pipe.Fiber._doRun(Fiber.java:563)
     at com.sun.xml.ws.api.pipe.Fiber.doRun(Fiber.java:548)
     at com.sun.xml.ws.api.pipe.Fiber.runSync(Fiber.java:445)
     at com.sun.xml.ws.server.WSEndpointImpl$2.process(WSEndpointImpl.java:249)
     at com.sun.xml.ws.transport.http.HttpAdapter$HttpToolkit.handle(HttpAdapter.java:453)
     at com.sun.xml.ws.transport.http.HttpAdapter.handle(HttpAdapter.java:250)
     at com.sun.xml.ws.transport.http.servlet.ServletAdapter.handle(ServletAdapter.java:140)
     at weblogic.wsee.jaxws.HttpServletAdapter$AuthorizedInvoke.run(HttpServletAdapter.java:298)
     at weblogic.wsee.jaxws.HttpServletAdapter.post(HttpServletAdapter.java:211)
     at weblogic.wsee.jaxws.JAXWSServlet.doPost(JAXWSServlet.java:297)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
     at weblogic.wsee.jaxws.JAXWSServlet.service(JAXWSServlet.java:87)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3590)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2200)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2106)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1428)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: weblogic.wsee.wsdl.WsdlException: Must attribute 'location' notfound in element 'address
     at weblogic.wsee.wsdl.WsdlReader.getMustAttribute(WsdlReader.java:129)
     at weblogic.wsee.wsdl.soap11.SoapAddress.parse(SoapAddress.java:84)
     at weblogic.wsee.wsdl.soap11.SoapExtensionParser.parsePort(SoapExtensionParser.java:101)
     at weblogic.wsee.wsdl.WsdlExtensionRegistry.parsePort(WsdlExtensionRegistry.java:142)
     at weblogic.wsee.wsdl.WsdlPort.parseChild(WsdlPort.java:158)
     at weblogic.wsee.wsdl.WsdlExtensible.parse(WsdlExtensible.java:98)
     at weblogic.wsee.wsdl.WsdlService.parseChild(WsdlService.java:134)
     at weblogic.wsee.wsdl.WsdlExtensible.parse(WsdlExtensible.java:98)
     at weblogic.wsee.wsdl.WsdlDefinitions.parseChild(WsdlDefinitions.java:579)
     at weblogic.wsee.wsdl.WsdlExtensible.parse(WsdlExtensible.java:98)
     at weblogic.wsee.wsdl.WsdlDefinitions.parse(WsdlDefinitions.java:483)
     at weblogic.wsee.wsdl.WsdlDefinitions.parse(WsdlDefinitions.java:416)
     at weblogic.wsee.wsdl.WsdlImport.parse(WsdlImport.java:121)
     at weblogic.wsee.wsdl.WsdlDefinitions.parseChild(WsdlDefinitions.java:552)
     at weblogic.wsee.wsdl.WsdlExtensible.parse(WsdlExtensible.java:98)
     at weblogic.wsee.wsdl.WsdlDefinitions.parse(WsdlDefinitions.java:483)
     at weblogic.wsee.wsdl.WsdlDefinitions.parse(WsdlDefinitions.java:448)
     at weblogic.wsee.wsdl.WsdlFactory.parse(WsdlFactory.java:125)
     at weblogic.wsee.wsdl.WsdlFactory.parse(WsdlFactory.java:121)
     at weblogic.wsee.jaxws.framework.jaxrpc.client.ClientEnvironmentFactory.getWsdlDef(ClientEnvironmentFactory.java:154)
     ... 50 more
any idea? on glassfish the client works fine...the problem is on wls 10.3.1
thank you!

Similar Messages

  • How do i fix an error when getting apps from app store

    I sometimes get an error after trying to buy an app or a free app or even updating, and just before I enter my Apple ID password. Here's a screenshot of the error message. I wonder if anyone can help me fix this.

    Thank you J Hermans, my problem actually is, that error message comes up when I try to install any app from the
    appstore. I have that tangram! installed too.
    At first the message was just like "tangram! Could not be purchased....." when i tried to update a different app. Then every time that I try to get an app from the appstore, the message adds up like "tangram! and 1 other item.....". Then "tangram! And 2 other items..." and so on..

  • "Download error" when getting songs from iTunes on iPod touch 2G

    Hi all. Recently I've been getting a "Download Error. Tap to retry" message when I'm downloading songs from iTunes on my iPod Touch. It doesn't always happen, but seems to happen most if I leave the Download screen before the song is done downloading and processing. Even though it says "Tap to retry", when I do that, it just errors again. This continues, with frequent pop-up prompts asking for my iTunes password, until I connect my Touch back to iTunes.
    I was curious if other people had the same problem and if there is a fix for this or if I just need to stay on the download screen until the song is done.
    I have a 32gig iPod Touch 2nd Gen with the latest OS.
    Thanks for any info.

    Basics from the manual are:
    Restart, reset, restore
    http://manuals.info.apple.com/enUS/iPod_touch_3.1_UserGuide.pdf

  • Shared Services API - Error when getting datasource weblogic/pool/PooledConnectionDataSource

    Hello,
    I have a program that connects to shared services using Java APIs. The code is usually working fine on other environment.
    This one is on EPM version 11.1.2.1 and I get an error after this procedure --> system = CSSSystem.getInstance(context, "");
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.RegistryUtils buildConnFromDriverManager
    WARNING: Check whether Oracle Home and Instance environment variables are defined appropriately. RootCause : weblogic.jdbc.sqlserver
    .SQLServerDriver
    Error when getting datasource weblogic/pool/PooledConnectionDataSource
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.RegistryUtils createNewConnection
    SEVERE: Failed to create connection from data source. RootCause:weblogic/pool/PooledConnectionDataSource.
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.exceptions.RegistryException <init>
    INFO: Registry Exception Occured - Failed to create new database connection using datasource.RootCause:[weblogic/pool/PooledConnecti
    onDataSource]
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.Registry lookupComponentsWithException
    INFO: EPMREG-11045
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.exceptions.RegistryException <init>
    INFO: Registry Exception Occured - Failed to create new database connection using datasource.RootCause:[weblogic/pool/PooledConnecti
    onDataSource]
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.Registry lookupWithException
    INFO: EPMREG-11038
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.exceptions.RegistryException <init>
    INFO: Registry Exception Occured - com.hyperion.hit.registry.exceptions.RegistryException: Failed to create new database connection
    using datasource.RootCause:[weblogic/pool/PooledConnectionDataSource]
    Jan 27, 2015 9:36:44 AM com.hyperion.hit.registry.Registry lookup
    INFO: EPMREG-11038
    Jan 27, 2015 9:36:44 AM com.hyperion.css.registry.RegistryManager RegistryManager
    SEVERE: Failed to initialize EPM Shared Services security instance. Component SYSTEM9/FOUNDATION_SERVICES_PRODUCT/SHARED_SERVICES_PR
    ODUCT is null in EPM System Registry. Verify EPM System Registry configuration.
    java.lang.NullPointerException
            at start.initialize(start.java:84)
            at start.Sample(start.java:59)
            at cc.main(cc.java:10)
    I guess it is something with the SQLServer driver.Do you have any ideas?
    My ORACLE_HOME and ORACLE_INSTANCE are set correctly.
    Thanks in advance,
    Regards,
    Nicolas

    Hello,
    I finally got it working!
    I added the weblogic libraries located under EPM/Middleware/wlserver_10.3/server/lib, and now it works fine.
    It was a pain to find it out, because the error message did not specify that it was a missing library..
    Anyway, if it helps, here is the list of external libraries I am using:
    "wlssapi.jar"
    "wlssapi-internal.jar"
    "wlss-datatier.jar"
    "wlss-descriptor-binding.jar"
    "wlssdiameter.jar"
    "wlssechosvr.jar"
    "wlss-mbeaninfo.jar"
    "WLSSSecurityProviders.jar"
    "wlthint3client.jar"
    "wlw-langx.jar"
    "wlw-langx-ja.jar"
    "wlw-langx-ko.jar"
    "wlw-langx-zh_CN.jar"
    "wlw-langx-zh_TW.jar"
    "wlw-wsee-soapfault.jar"
    "xmlparserv2_sans_jaxp_services.jar"
    "xmlrpc-2.0.1.jar"
    "audit-client.jar"
    "castor-1.0.5.jar"
    "com.bea.core.apache.commons.pool_1.3.0.jar"
    "commons-lang-2.1.jar"
    "css.jar"
    "dms.jar"
    "interop-sdk.jar"
    "ojdl.jar"
    "quartz.jar"
    "regexp.jar"
    "registry-api.jar"
    "scheduler_ces.jar"
    "sqljdbc.jar"
    "wf_ces_utils.jar"
    "wf_eng_agent.jar"
    "wf_eng_api.jar"
    "wf_eng_server.jar"
    "wlcipher.jar"
    "wlclient.jar"
    "wlcommons-logging.jar"
    "wlconnector.jar"
    "wldb2.jar"
    "wldeploy.jar"
    "wlinformix.jar"
    "wl-j2ee-client.jar"
    "wljarbuilder.jar"
    "wljmsclient.jar"
    "wljmxclient.jar"
    "wllog4j.jar"
    "wlnmclient.jar"
    "wlpool.jar"
    "wlsafclient.jar"
    "wls-api.jar"
    "wlss.jar"
    "wlss_i18n.jar"
    Thank you all for your help.
    Regards,
    Nicolas

  • Error when querying REST web services from web-based InfoPath form 2013 environment

    Error when querying REST web services from web-based InfoPath form 2013 environment, we are trying to consume REST web service in InfoPath form ( SharePoint 2013 version) 
    http://spapp/sites/litigation/Intake/_api/web/lists/getbytitle('Email%20Profiles')/items(1)
    it works in preview but does not when it is published. because of claim based authentication i m getting below error
    The form cannot run specified query, the underlying connection was closed. An expected error occurred 
    same works in 2010 environment .. are we missing anything in 2013 servers?? please let me know how we can resolve it.. thank you 
    guru

    everyone face this issue, nothing in event viewer, its easy to reproduce error at ur end also.. 
    just you need to use below web service in infopath and populate some data on form load like id = 1 pull the title and try to set in form any field...the
    list has one item thats all
    guru

  • Error when getting service facade : Service manager initialization failed I

    Dear Friends,
          we have created entities in CAS((nwds 7.0.1)) and deployed in J2ee.
    During Testing:
             when we right click on entity and click on test.
    service Browser. is opening with two Buttons.
    One Button it is " start with CAF source".
    when we select this its throwing error
    Error text:
    Error when getting service facade : Service manager initialization failed Illegal argument exception: Unable to create javax.ejb.EJBObject. because of this we are unable to test the entity.
    request to throw pointers to clear this error.
    Answers will be rewared.
    Regards
    shekar chandra

    even if go using this url http://hostnae:portname/caf
    i could see the main page then i click TestTools->Service browsser, Still lso i am getting the same screen with Buttons.
    one saying "Start with CAF Source" @ other "Start with ABAP
    Source"
    If .ear is one of the cause I have removed all the projects from DC->.dtr.Now my NWDS is empty.
    Still why it is comming.
    Regards
    Shekar Chandra

  • Getting an "installer failed to initialize" error when installing CS5 from CD

    Getting an "installer failed to initialize" error when installing CS5 from CD
    Mac OS X Version 10.7.5

    Try using the Adobe Creative Suite Cleaner Tool
    helps resolve installation problems for CS3 thru CS6 and for Creative Cloud
    http://www.adobe.com/support/contact/cscleanertool.html
    If you continue to have problems getting the CD installation to work you can download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site or else the download will not work properly.
    CS5:
    http://prodesigntools.com/all-adobe-cs5-direct-download-links.html

  • How can I get rid of a 1202 error when downloading products from itunes

    How can I get rid of an 1202 error when downloading products from itunes?

    You have probably downloaded the Norton program which is one of the least desirable helpmates you can invite in.
    Read this thread and follow the suggestions by Thomas R, one of our gurus in this field.
    https://discussions.apple.com/message/20005609#20005609

  • I get an web service error when trying enable web services. I have latest update and rebooted

    i get an web service error when trying enable web services. I have latest update and rebooted

    hi there philnj,
    could you help the community narrow troubleshooting by providing a little more information? Particularly what model printer are we dealing with?
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Error when viewing documents from content server

    hi all,
    I have a question.
    we have installed an SAP Content Server on Windows 2003 server, and have connected it to our SAP ECC 5.00 ERP.  The purpose is so that documents that are attached to a transaction (through Generic Objects Services - Create Attachment), get stored onto the content server rather than the SAP database.  We have done all the necessary configuration in oac0, oact, and SKPR08.  We are able to attach a document to the transaction, and it gets stored onto the content server.  Our issue is when viewing the attachment. 
    This is the error we are getting as soon as we try to view the attachment:
    "Windows cannot find c:\documents and settings\<username>\SAPWorkDir\<filename>.  Make sure you typed the name correctly, and then try again.  To search for a file, click the Start button, and then click Search."
    After pressing OK to the message, the system then gives this error:
    "File could not be exported
    Message no. SO315
    Diagnosis
    You have selected either the Export function or a PC document to be exported from the system. The file could not be exported to the
    PC. Possible reasons:
    1. The file is already open and is being used by an application.
    2. The directory to which the file is to be exported is write-protected.
    Procedure
    In the first case, close the application.
    In the second case, remove the write-protection attribute from the directory or enter another directory."
    Why is the system trying to open the file from the user's C:\ drive?
    Does anyone have a solution to this error?
    Cheers,

    Hi Aleem,
    Refer to below KB & note, this should help you.
    1849203 - Error message Database error for <GET DATA FROM KPRO> (SO013) and/or File could not be exported (SO315) when opening a document in Attachment list
    764972 - Errors when creating workflow attachment
    Regards,
    Ravi

  • Error when reading data from socket

    Hi,
    I am getting the error 'NiRawReadError: An error occured when reading data from socket.' when using the ABAP API  'mo_core_service->invoke_matching'.
    And I get this error only when I pass ABAP_TRUE to the paramter 'iv_wait_for_invocation' .
    Can anybody help me in correcting this?

    Hi Narasa,
    The following error is already in discussion in the below forum.Plz consult the forum link you will find the error solution.
    Problem in ABAP API - NiRawReadError: error when reading data from socket
    Rgds
    Ankit

  • Freezes when gets back from suspend mode

    My 2010 MacMini freezes and show a black courtain sometimes. This happens when gets back from suspend mode. The RAM has passed a test memory and it hasn´t any problem.
    Please, sorry for my english.
    Regards from Spain.
    Mi MacMini de 2010 me muestra una cortinilla negra y me pide que lo reinicialice de vez en cuando. Le pasa cuando regresa de haber estado suspendido o con la pantalla en reposo. La memoria Ram ha pasado un test por si podía ser éste el problema.
    Saludos.

    Here you are:
    Sun May 27 10:12:14 2012
    panic(cpu 0 caller 0xffffff80002c473a): Kernel trap at 0xffffff7f819d9e67, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x000000000a157000, CR3: 0x000000017f555000, CR4: 0x0000000000000660
    RAX: 0xffffff80242c3d00, RBX: 0xffffff802a41d200, RCX: 0xffffff80242c3d00, RDX: 0x0000000000617577
    RSP: 0xffffff80e7c6bb58, RBP: 0xffffff80e7c6bb80, RSI: 0x0000000000000000, RDI: 0xffffff8012614000
    R8:  0x7c1e500000000001, R9:  0x00000000bb7c364d, R10: 0xfffffe800768aa68, R11: 0x00000000000626d9
    R12: 0x0000000000000028, R13: 0xffffff80242c3d00, R14: 0xffffff8018060880, R15: 0xffffff80242c3d00
    RFL: 0x0000000000010246, RIP: 0xffffff7f819d9e67, CS:  0x0000000000000008, SS:  0x0000000000000000
    CR2: 0x000000000a157000, Error code: 0x0000000000000000, Faulting CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff80e7c6b800 : 0xffffff8000220792
    0xffffff80e7c6b880 : 0xffffff80002c473a
    0xffffff80e7c6ba30 : 0xffffff80002da0cd
    0xffffff80e7c6ba50 : 0xffffff7f819d9e67
    0xffffff80e7c6bb80 : 0xffffff7f819da779
    0xffffff80e7c6bbd0 : 0xffffff800063abcb
    0xffffff80e7c6bc10 : 0xffffff7f819dae2d
    0xffffff80e7c6bc40 : 0xffffff800065609b
    0xffffff80e7c6bd80 : 0xffffff80002a3f08
    0xffffff80e7c6be80 : 0xffffff8000223096
    0xffffff80e7c6beb0 : 0xffffff80002148a9
    0xffffff80e7c6bf10 : 0xffffff800021bbd8
    0xffffff80e7c6bf70 : 0xffffff80002aef20
    0xffffff80e7c6bfb0 : 0xffffff80002daa33
          Kernel Extensions in backtrace:
             com.apple.driver.AudioAUUC(1.59)[8F634EA0-B0A8-3577-918F-B27A8CF8C6CE]@0xffffff 7f819d8000->0xffffff7f819dcfff
                dependency: com.apple.iokit.IOACPIFamily(1.4)[4A5A4624-7A52-3EA0-BB8D-5B265B086727]@0xfffff f7f812cd000
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)[F63D4ABE-42DA-33EF-BADD-3415B0CB0179]@0xffff ff7f80866000
                dependency: com.apple.iokit.IOAudioFamily(1.8.6fc17)[0FAF6C3F-B92F-30EA-B97F-86A38119C67F]@ 0xffffff7f80eec000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[2D2A4A31-EB4F-3730-BE3A-76C061685FC5]@0 xffffff7f808a0000
    BSD process name corresponding to current thread: iTunes
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr  9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: XXXXXXXXXXXX
    System model name: Macmini4,1 (Mac-F2208EC8)
    System uptime in nanoseconds: 239987230897603
    last loaded kext at 279002290275: com.apple.filesystems.smbfs          1.7.2 (addr 0xffffff7f807d5000, size 241664)
    last unloaded kext at 250544845394: com.apple.driver.AppleMCP89RootPortPM          1.11 (addr 0xffffff7f81d93000, size 24576)
    loaded kexts:
    com.parallels.kext.prl_hid_hook          7.0 14920.689535
    com.parallels.kext.prl_hypervisor          7.0 14920.689535
    com.parallels.kext.prl_usb_connect          7.0 14920.689535
    com.parallels.kext.prl_vnic          7.0 14920.689535
    com.parallels.kext.prl_netbridge          7.0 14920.689535
    com.logmein.driver.LogMeInSoundDriver          1.0.0
    at.obdev.nke.LittleSnitch          2.4.0
    com.apple.filesystems.smbfs          1.7.2
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AppleBluetoothMultitouch          70.12
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.ApplePlatformEnabler          2.0.5d2
    com.apple.driver.AGPM          100.12.42
    com.apple.driver.AppleHDA          2.2.0f3
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMCCSControl          1.0.26
    com.apple.GeForce          7.1.8
    com.apple.driver.AppleMikeyDriver          2.2.0f3
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.5f11
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.2
    com.apple.driver.AppleLPC          1.5.8
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d0
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.5f11
    com.apple.driver.AppleIRController          312
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.iokit.SCSITaskUserClient          3.2.0
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCISerialATAPI          2.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.0.3
    com.apple.driver.AppleEFINVRAM          1.5.0
    com.apple.driver.AppleFWOHCI          4.8.9
    com.apple.driver.AppleUSBHub          4.5.0
    com.apple.driver.AppleSDXC          1.2.0
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleAHCIPort          2.3.0
    com.apple.driver.AppleUSBEHCI          4.5.8
    com.apple.iokit.AppleBCM5701Ethernet          3.1.2b2
    com.apple.driver.AirPort.Brcm4331          530.4.20
    com.apple.driver.AppleUSBOHCI          4.4.5
    com.apple.driver.AppleHPET          1.6
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleSMBIOS          1.8
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient          193.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.3
    com.apple.driver.AppleIntelCPUPowerManagement          193.0.0
    com.apple.driver.AppleBluetoothHIDKeyboard          160.7
    com.apple.driver.AppleHIDKeyboard          160.7
    com.apple.driver.AppleMultitouchDriver          231.4
    com.apple.driver.IOBluetoothHIDDriver          4.0.5f11
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.2.0f3
    com.apple.nvidia.nv50hal          7.1.8
    com.apple.NVDAResman          7.1.8
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IOFireWireIP          2.2.4
    com.apple.driver.AppleHDAController          2.2.0f3
    com.apple.iokit.IOHDAFamily          2.2.0f3
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.6fc17
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.ApplePolicyControl          3.0.16
    com.apple.driver.AppleGraphicsControl          3.0.16
    com.apple.iokit.IONDRVSupport          2.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.2
    com.apple.driver.AppleSMC          3.1.3d8
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d0
    com.apple.driver.IOPlatformPluginFamily          5.1.0d17
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.2.0
    com.apple.iokit.IOUSBMassStorageClass          3.0.1
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.5f11
    com.apple.iokit.IOBluetoothFamily          4.0.5f11
    com.apple.iokit.IOUSBHIDDriver          4.4.5
    com.apple.driver.AppleUSBComposite          4.5.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.0
    com.apple.iokit.IOBDStorageFamily          1.6
    com.apple.iokit.IODVDStorageFamily          1.7
    com.apple.iokit.IOCDStorageFamily          1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.0
    com.apple.iokit.IOFireWireFamily          4.4.5
    com.apple.iokit.IOUSBUserClient          4.5.8
    com.apple.driver.AppleEFIRuntime          1.5.0
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.driver.NVSMU          2.2.9
    com.apple.iokit.IOEthernetAVBController          1.0.1b1
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOUSBFamily          4.5.8
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.5
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          331.6
    com.apple.iokit.IOStorageFamily          1.7.1
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.6.8
    com.apple.iokit.IOACPIFamily          1.4
    I hope this could help.
    Thank you!!!

  • Errors when compiling the web service (SAP Web Service Design Tool)

    After downloading and installing the SAP de Web Service Design Tool (for Crystal Reports Server) I created a connection, a simple query and was able to deploy a web services. I tested the web service with an Xcelsius dashboard within InfoView. Thereafter I created a second connection (other name but same ODBC connection / server) and created another simple query with two date(range) parameters and a group by year and month function in order to do a select count(). It executes fine, but when I try to publish the web service I get an error.
    There are errors when compiling the web service.
    Is does not say whatu2019s wrong or how I can solve this problem.
    Who can help me?
    Some notes:
    1) Within expert mode I used a MONTH() SQL function which does not show in the normal mode.
    2) It seams that the u2018administrationu2019 of Web Service Design Tool got u2018corruptedu2019 after only creating the two connections, queries and services mentioned above. I believe so because I could select one of two queries when I created the second service, but within the current connection I had only one query.
    Thanks for any help,
    Ron
    ADDITIONAL INFO: The parameters seam to be the problem. After removing the parameters I can publish the service. But without parameters it is NO SOLOTION.
    Edited by: RonKoudijs on Aug 26, 2010 6:28 PM

    Hello Taylan,
    I think the error that you received was due to packaging issues.I placed the
    UtilClass.java file under a directory called data which was present under
    the project directory.
    When you want to access a java class, you can either place the compiled
    class file in the WEB-INF/classes folder or you can place the java file
    under the project directory.
    I have attached the sample project that I created with your files.
    Let me know if you have any other questions.
    Thanks
    Raj Alagumalai
    WebLogic Workshop Support
    "taylan" <[email protected]> wrote in message
    news:3d6351b0$[email protected]..
    >
    I am trying to write a simpe web service in WebLogic Workshop, but havingan error
    which I could not understand. Could you please help me? Thanks in advance.
    Regards,
    Taylan
    My web service code is like belows:
    import weblogic.jws.control.JwsContext;
    import data.*;
    public class WebService1
    /** @jws:context */
    JwsContext context;
    * @jws:operation
    public UtilClass testType(UtilClass tTest){
    UtilClass returnObj=new UtilClass();
    if(tTest.getName()!= null){
    returnObj.setName(tTest.getName());
    return returnObj;
    and my UtilClass is placed in the data directory under the same directorywith
    my web service code. It is a simpe class as belows:
    package data;
    public class UtilClass
    private String name;
    public void setName(String name){
    this.name=name;
    public String getName(){
    return name;
    However I got an error when I try to compile the webservice class. Theerror is
    like belows:
    File Line Message
    WebService1.jws 0 Resource found on system classpath: data.UtilClass
    Build complete - 1 error(s), 0 warning(s)
    [ngroup.zip]

  • Error when generating IDoc from MC document - workitem to all the SAP users

    A workflow item with the subject of “Error when generating IDoc from MC document” is sent to all the SAP users' inbox. Is it possible to stop the generation of this work item? If that is not possible, can we limit sending the work item to a specific user/agent instead of all the users in the system?
    It appears that these work item or error message are generated when one of the developers reopen the POs and add line items. Moreover, during that time the procurement team blocked the IDOCs from going out to the vendors when changing and resaving the POs. Therefore, we need stop the generation of error message/work item when the IDOCs generation blocked.

    Please check Rule 70000141which is the default rule for this task. Inside this rule a FM is attcahed which is reading table EDO13 and EDPP1 where agent is retrieved Probably this table entries are not maintained. This Workflow is getting triggered from Message cOntrol I think.
    Please check this link for
    http://help.sap.com/saphelp_47x200/helpdata/en/c5/e4aec8453d11d189430000e829fbbd/frameset.htm
    <b>Reward points if useful and close thread if resolved</b>

  • Error when generating IDoc from MC document

    Hi,
    Our Workflow administrator is getting the following error  in his inbox daily for a particular IDOC type.
    Error when generating IDoc from MC document
    Please let me know how to disable this message.
    Regards
    Elini.P

    Hi  experts,
                i got the error msg when generating idoc from mc document
    this error msg goes to all sap users inbox,how to resolve this problem
    pl give me solutions
    regards
    kumar

Maybe you are looking for