Web service handler could not registered/called in client web service

Hi Expert,
I have two web service ServiceA & ServiceB and both implemented in weblogic.
The ServiceA is SSL enable and protocol is https which is not published by me.
The ServieB is my web service(wls8.1) and act as client for ServiceA.
My problem is when i hit my service, its not able set the handler when it call ServiceA but it is invoking the service and giving application exception like authentication error.
My service file:
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.xml.namespace.QName;
import javax.xml.rpc.handler.HandlerInfo;
import javax.xml.rpc.handler.HandlerRegistry;
import javax.xml.rpc.handler.soap.SOAPMessageContext;
import weblogic.webservice.client.SSLAdapterFactory;
import weblogic.webservice.client.WLSSLAdapter;
public class HelloService {
String wsdl = "https://188.122.123.23/RemoetService?WSDL";
static     {
          SSLAdapterFactory factory =                SSLAdapterFactory.getDefaultFactory();
          WLSSLAdapter adapter = (WLSSLAdapter)     factory.getSSLAdapter();
          adapter.setTrustedCertificatesFile("D:\\lib\\certs\\cacerts");
          factory.setDefaultAdapter(adapter);
          System.setProperty("weblogic.xml.encryption.verbose","true");
          System.setProperty("weblogic.xml.signature.verbose","true");
          System.setProperty("weblogic.webservice.verbose","true");
     public String sayHello(String user) {
          RemoteService_Impl service = new RemoteService_Impl(wsdl);
          RemotePortType port = service.getRemoteServicePort1();
          String namespace = service.getServiceName()
                    .getNamespaceURI();
          QName portName = new QName(namespace,
                    "RemoteServicePortType");
          HandlerRegistry reg = service.getHandlerRegistry();
          List handlerList = new ArrayList();
          Map map = new HashMap();
          map.put("Username", "user1");
          map.put("Password", "pwd1");
          HandlerInfo info = new HandlerInfo();
          info.setHandlerClass(WSClientHandler .class);
          info.setHandlerConfig(map);
          handlerList.add(info);
          reg.setHandlerChain(portName,(List)handlerList);
          RemoteServiceResponse = port.callMe(name);
My Handler Class:
package com.test;
import java.util.Map;
import javax.xml.namespace.QName;
import javax.xml.rpc.handler.Handler;
import javax.xml.rpc.handler.HandlerInfo;
import javax.xml.rpc.handler.MessageContext;
import javax.xml.rpc.handler.soap.SOAPMessageContext;
import javax.xml.soap.Name;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPEnvelope;
import javax.xml.soap.SOAPException;
import javax.xml.soap.SOAPHeader;
import javax.xml.soap.SOAPHeaderElement;
public class WSClientHandler implements Handler {
     private HandlerInfo handlerInfo;
     public WSClientAuthenticateHandler(){}
     public void init(HandlerInfo hi) {   
          System.out.println("Handler init");
          handlerInfo = hi;
     public void destroy() {
          System.out.println("Handler destroy method called");
          handlerInfo = null;
     public QName[] getHeaders() {
          System.out.println("Handler Header method called");
          try     {
               Map map = handlerInfo.getHandlerConfig();
               QName[] headers = handlerInfo.getHeaders();
               System.out.println(" Config :"+map);
               for(int i=0;i<headers.length;i++)     {
                    System.out.println(headers.getLocalPart()+" "+
                    headers[i].toString()+" "+headers[i].getNamespaceURI());
          }catch(Exception e)     {
               e.printStackTrace();
          return handlerInfo.getHeaders();
     public boolean handleRequest(MessageContext mc) {   
          SOAPMessageContext smc = (SOAPMessageContext) mc;
          System.out.println("Calling handler class.....................");
          try     {
          SOAPEnvelope se =      smc.getMessage().getSOAPPart().getEnvelope();
          System.out.println("Calling handler class.....................");
     SOAPHeader soapHeader = se.getHeader();
     Name headerName = se.createName("Security","wsse","http://schemas.xmlsoap.org/ws/2002/07/secext");
     SOAPHeaderElement headerElement = soapHeader.addHeaderElement(headerName);
     SOAPElement element = headerElement.addChildElement(se.createName("UsernameToken", "wsse", "http://schemas.xmlsoap.org/ws/2002/07/secext"));
     element.addChildElement(se.createName("Username", "wsse","http://schemas.xmlsoap.org/ws/2002/07/secext")).addTextNode("testuser");
     element.addChildElement(se.createName("Password", "wsse","http://schemas.xmlsoap.org/ws/2002/07/secext")).addTextNode("testpwd");
     System.out.println("Calling handler class.....................");
               System.out.println("** Request: \n "+se.toString()+"\n");
          }catch(SOAPException e)     {
               e.printStackTrace();
          return true;
     /** * Specifies that the SOAP response message be logged to a
     * log file before the
     * * message is sent back to the client application
     * that invoked the Web service.
     public boolean handleResponse(MessageContext mc) {  
          System.out.println("Handler Response method called");
          SOAPMessageContext messageContext = (SOAPMessageContext) mc;
          System.out.println("** Response: \n"+messageContext.getMessage().toString()+"\n");
          return true;
     /** * Specifies that a message be logged to the log file if a SOAP fault is
     * * thrown by the Handler instance.
     public boolean handleFault(MessageContext mc) {   
          SOAPMessageContext messageContext = (SOAPMessageContext) mc;
          System.out.println("** Fault: \n"+messageContext.getMessage().toString()+"\n");
          return true;
Please need help here.
Thanks in Advance,
pps

I have tested static client calling using handler simple above service and found the issues.
QName portName = new QName(namespace,
*"RemoteServicePortType");*
The above line code has created the issues,becuase in wsdl file ( given similar wsdl file).
<?xml version="1.0"; encoding="UTF-8"?>
<definitions name="HelloService"
targetNamespace="http://www.ecerami.com/wsdl/HelloService.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.ecerami.com/wsdl/HelloService.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<message name="SayHelloRequest">
<part name="firstName" type="xsd:string"/>
</message>
<message name="SayHelloResponse">
<part name="greeting" type="xsd:string"/>
</message>
<portType name="*RemoteServicePortType*">
<operation name="sayHello">
<input message="tns:SayHelloRequest"/>
<output message="tns:SayHelloResponse"/>
</operation>
</portType>
<binding name="Hello_Binding" type="tns:*RemoteServicePortType*">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="sayHello">
<soap:operation soapAction="sayHello"/>
<input>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:examples:helloservice"
use="encoded"/>
</input>
<output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:examples:helloservice"
use="encoded"/>
</output>
</operation>
</binding>
<service name="Hello_Service">
+<port binding="tns:Hello_Binding" name="*RemoteServicePortType1*">+
+<soap:address+
location="http://host1:8080/soap/servlet/rpcrouter"/>
+</port>+
+<port binding="tns:Hello_Binding" name="*RemoteServicePortType2*">+
+<soap:address+
location="http://host2:8080/soap/servlet/rpcrouter"/>
+</port>+
+<port binding="tns:Hello_Binding" name="*RemoteServicePortType3*">+
+<soap:address+
location="http://host3:8080/soap/servlet/rpcrouter"/>
+</port>+
+<port binding="tns:Hello_Binding" name="*RemoteServicePortType4*">+
+<soap:address+
location="http://host4:8080/soap/servlet/rpcrouter"/>
+</port>+
</service>
</definitions>
From the above WSDL, I have four port name (port binding="tns:Hello_Binding" name="*RemoteServicePortType1*) which is not matching with PortType (portType name="*RemoteServicePortType*")
even i have iterated from getPorts() method and used to invoke the service.But handler was not calling when i invoke.
Please guide me here how i specify correct portname which can call Handler class also.
Thanks in advance,
pps

Similar Messages

  • Web server error: Could not register a HeartbeatMonitor

              Hi:
              When I use weblogic thin client (wljmsclient) and createTopicConnection()
              causes weblogic server exception below.
              Seems it depends on where my client runs. Not sure if it is related to
              network configuration for different subnet.
              Thanks in advance for your help. (weblogic server 8.1.1 or 8.1.2, IIOP protocol
              for client connection)
              Here is the exception:
              weblogic.jms.dispatcher.DispatcherException: Could not register a HeartbeatMonit
              orListener for [weblogic.iiop.IIOPRemoteRef@8b4c94fa] for weblogic.jms.C:HP01:4t
              :-38
              at weblogic.jms.dispatcher.DispatcherWrapperState.addPeerGoneListener(Di
              spatcherWrapperState.java:569)
              at weblogic.jms.dispatcher.DispatcherManager.dispatcherAdd(DispatcherMan
              ager.java:106)
              at weblogic.jms.dispatcher.DispatcherManager.addDispatcherReference(Disp
              atcherManager.java:196)
              at weblogic.jms.frontend.FEConnectionFactory.connectionCreateInternal(FE
              ConnectionFactory.java:413)
              at weblogic.jms.frontend.FEConnectionFactory.connectionCreateRequest(FEC
              onnectionFactory.java:385)
              at weblogic.jms.frontend.FEConnectionFactory_WLSkel.invoke(Unknown Sourc
              e)
              at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
              at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerR
              ef.java:108)
              at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
              at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
              dSubject.java:353)
              at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
              144)
              Tony
              

    Hi Tony,
              I wonder if there was a regression between 8.1.1 and 8.1.2? Anyhow,
              since the weblogic.jar works on the client, and since you verified
              your classpaths, it seems quite likely the problem is in WebLogic.
              I recommend two things:
              (1) ensure that you are using a supported version of the JVM
              (2) filing a support case and using weblogic.jar
              as a temporary work-around while the problem gets fixed
              Sorry I couldn't help you more.
              Tom
              tony wrote:
              > Tom:
              >
              > Thanks.
              > See my answer below:
              >
              >
              > Tom Barnes <[email protected].bea.com>
              > wrote:
              >
              >>Hi Tony,
              >>
              >>Some questions/thoughts:
              >>
              >>Is that the full stack trace?
              >
              >
              > There are few more lines: (paste from weblogic server log)
              >
              > at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
              > 144)
              > at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.jav
              > :404)
              > at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest
              > java:30)
              > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
              > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
              > aused by: weblogic.rmi.extensions.server.HeartbeatMonitorUnavailableException:
              > ould not register a HeartbeatMonitorListener for [weblogic.iiop.IIOPRemoteRef@a8
              > 2e47e4]
              > at weblogic.rmi.extensions.server.HeartbeatMonitor.addHeartbeatMonitorLi
              > tener(HeartbeatMonitor.java:86)
              > at weblogic.jms.dispatcher.DispatcherWrapperState.addPeerGoneListener(Di
              > patcherWrapperState.java:559)
              > ... 14 more
              >
              >
              >
              >
              >>Did you use 8.1.2 jars for BOTH the client and the server?
              >
              >
              > yes
              >
              >
              >>Check that the server has no thin client jar in
              >>its classpath and that the client has no weblogic.jar in
              >>its classpath?
              >
              > Double checked.
              > Actually if client uses weblogic.jar, instead of wljmsclient and wlclient (thin
              > client), it works, and no this exception.
              >
              > Tony
              >
              >>Tom
              >>
              >>Tony wrote:
              >>
              >>>Hi:
              >>>
              >>> When I use weblogic thin client (wljmsclient) and createTopicConnection()
              >>>causes weblogic server exception below.
              >>> Seems it depends on where my client runs. Not sure if it is
              >>
              >>related to
              >>
              >>>network configuration for different subnet.
              >>> Thanks in advance for your help. (weblogic server 8.1.1 or 8.1.2,
              >>
              >>IIOP protocol
              >>
              >>>for client connection)
              >>>
              >>> Here is the exception:
              >>>
              >>>weblogic.jms.dispatcher.DispatcherException: Could not register a HeartbeatMonit
              >>>
              >>>orListener for [weblogic.iiop.IIOPRemoteRef@8b4c94fa] for weblogic.jms.C:HP01:4t
              >>>
              >>>:-38
              >>>
              >>> at weblogic.jms.dispatcher.DispatcherWrapperState.addPeerGoneListener(Di
              >>>
              >>>spatcherWrapperState.java:569)
              >>>
              >>> at weblogic.jms.dispatcher.DispatcherManager.dispatcherAdd(DispatcherMan
              >>>
              >>>ager.java:106)
              >>>
              >>> at weblogic.jms.dispatcher.DispatcherManager.addDispatcherReference(Disp
              >>>
              >>>atcherManager.java:196)
              >>>
              >>> at weblogic.jms.frontend.FEConnectionFactory.connectionCreateInternal(FE
              >>>
              >>>ConnectionFactory.java:413)
              >>>
              >>> at weblogic.jms.frontend.FEConnectionFactory.connectionCreateRequest(FEC
              >>>
              >>>onnectionFactory.java:385)
              >>>
              >>> at weblogic.jms.frontend.FEConnectionFactory_WLSkel.invoke(Unknown
              >>
              >>Sourc
              >>
              >>>e)
              >>>
              >>> at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:477)
              >>>
              >>> at weblogic.rmi.cluster.ReplicaAwareServerRef.invoke(ReplicaAwareServerR
              >>>
              >>>ef.java:108)
              >>>
              >>> at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:420)
              >>>
              >>> at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
              >>>
              >>>dSubject.java:353)
              >>>
              >>> at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
              >>>
              >>>144)
              >>>
              >>>
              >>>
              >>>Tony
              >>>
              >>>
              >>
              >
              

  • Web service handler could not called in client web service

    Hi All,
    I have two web service ServiceA & ServiceB and both implemented in weblogic.
    The ServiceA is SSL enable and protocol is https which is not published by me.
    The ServieB is my web service(wls8.1) and act as client for ServiceA.
    My problem is when i hit my service, its not able set the handler when it call ServiceA but it is invoking the service and giving application exception like authentication error.
    My service file:
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Map;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.HandlerInfo;
    import javax.xml.rpc.handler.HandlerRegistry;
    import javax.xml.rpc.handler.soap.SOAPMessageContext;
    import weblogic.webservice.client.SSLAdapterFactory;
    import weblogic.webservice.client.WLSSLAdapter;
    public class HelloService {
    String wsdl = "https://188.122.123.23/RemoetService?WSDL";
    static {
    SSLAdapterFactory factory = SSLAdapterFactory.getDefaultFactory();
    WLSSLAdapter adapter = (WLSSLAdapter) factory.getSSLAdapter();
    adapter.setTrustedCertificatesFile("D:\\lib\\certs
    cacerts");
    factory.setDefaultAdapter(adapter);
    System.setProperty("weblogic.xml.encryption.verbose","true");
    System.setProperty("weblogic.xml.signature.verbose","true");
    System.setProperty("weblogic.webservice.verbose","true");
    public String sayHello(String user) {
    RemoteService_Impl service = new RemoteService_Impl(wsdl);
    RemotePortType port = service.getRemoteServicePort1();
    String namespace = service.getServiceName()
    .getNamespaceURI();
    QName portName = new QName(namespace,
    "RemoteServicePortType");
    HandlerRegistry reg = service.getHandlerRegistry();
    List handlerList = new ArrayList();
    Map map = new HashMap();
    map.put("Username", "user1");
    map.put("Password", "pwd1");
    HandlerInfo info = new HandlerInfo();
    info.setHandlerClass(WSClientHandler .class);
    info.setHandlerConfig(map);
    handlerList.add(info);
    reg.setHandlerChain(portName,(List)handlerList);
    RemoteServiceResponse = port.callMe(name);
    My Handler file:
    package com.test;
    import java.util.Map;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.handler.Handler;
    import javax.xml.rpc.handler.HandlerInfo;
    import javax.xml.rpc.handler.MessageContext;
    import javax.xml.rpc.handler.soap.SOAPMessageContext;
    import javax.xml.soap.Name;
    import javax.xml.soap.SOAPElement;
    import javax.xml.soap.SOAPEnvelope;
    import javax.xml.soap.SOAPException;
    import javax.xml.soap.SOAPHeader;
    import javax.xml.soap.SOAPHeaderElement;
    public class WSClientHandler implements Handler {
    private HandlerInfo handlerInfo;
    public WSClientAuthenticateHandler(){}
    public void init(HandlerInfo hi) {
    System.out.println("Handler init");
    handlerInfo = hi;
    public void destroy() {
    System.out.println("Handler destroy method called");
    handlerInfo = null;
    public QName[] getHeaders() {
    System.out.println("Handler Header method called");
    try {
    Map map = handlerInfo.getHandlerConfig();
    QName[] headers = handlerInfo.getHeaders();
    System.out.println(" Config :"+map);
    for(int i=0;i<headers.length;i++) {
    System.out.println(headers.getLocalPart()+" "+
    headers.toString()+" "+headers.getNamespaceURI());
    }catch(Exception e) {
    e.printStackTrace();
    return handlerInfo.getHeaders();
    public boolean handleRequest(MessageContext mc) {
    SOAPMessageContext smc = (SOAPMessageContext) mc;
    System.out.println("Calling handler class.....................");
    try {
    SOAPEnvelope se = smc.getMessage().getSOAPPart().getEnvelope();
    System.out.println("Calling handler class.....................");
    SOAPHeader soapHeader = se.getHeader();
    Name headerName = se.createName("Security","wsse","http://schemas.xmlsoap.org/ws/2002/07/secext");
    SOAPHeaderElement headerElement = soapHeader.addHeaderElement(headerName);
    SOAPElement element = headerElement.addChildElement(se.createName("UsernameToken", "wsse", "http://schemas.xmlsoap.org/ws/2002/07/secext"));
    element.addChildElement(se.createName("Username", "wsse","http://schemas.xmlsoap.org/ws/2002/07/secext")).addTextNode("testuser");
    element.addChildElement(se.createName("Password", "wsse","http://schemas.xmlsoap.org/ws/2002/07/secext")).addTextNode("testpwd");
    System.out.println("Calling handler class.....................");
    System.out.println("** Request: \n "se.toString()"\n");
    }catch(SOAPException e) {
    e.printStackTrace();
    return true;
    /** * Specifies that the SOAP response message be logged to a
    * log file before the
    * * message is sent back to the client application
    * that invoked the Web service.
    public boolean handleResponse(MessageContext mc) {
    System.out.println("Handler Response method called");
    SOAPMessageContext messageContext = (SOAPMessageContext) mc;
    System.out.println("** Response: \n"messageContext.getMessage().toString()"\n");
    return true;
    /** * Specifies that a message be logged to the log file if a SOAP fault is
    * * thrown by the Handler instance.
    public boolean handleFault(MessageContext mc) {
    SOAPMessageContext messageContext = (SOAPMessageContext) mc;
    System.out.println("** Fault: \n"messageContext.getMessage().toString()"\n");
    return true;
    Please need help here.
    Thanks in Advance,
    pps

    I have tested static client calling using handler simple above service and found the issues.
    QName portName = new QName(namespace,
    "*RemoteServicePortType*");
    The above line code has created the issues,becuase in wsdl file ( given similar wsdl file).
    <?xml version="1.0"; encoding="UTF-8"?>
    <definitions name="HelloService"
    targetNamespace="http://www.ecerami.com/wsdl/HelloService.wsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://www.ecerami.com/wsdl/HelloService.wsdl"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <message name="SayHelloRequest">
    <part name="firstName" type="xsd:string"/>
    </message>
    <message name="SayHelloResponse">
    <part name="greeting" type="xsd:string"/>
    </message>
    *<portType name="RemoteServicePortType">*
    <operation name="sayHello">
    <input message="tns:SayHelloRequest"/>
    <output message="tns:SayHelloResponse"/>
    </operation>
    </portType>
    <binding name="Hello_Binding" type="tns:*RemoteServicePortType*">
    <soap:binding style="rpc"
    transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="sayHello">
    <soap:operation soapAction="sayHello"/>
    <input>
    <soap:body
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
    namespace="urn:examples:helloservice"
    use="encoded"/>
    </input>
    <output>
    <soap:body
    encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
    namespace="urn:examples:helloservice"
    use="encoded"/>
    </output>
    </operation>
    </binding>
    <service name="Hello_Service">
    <port binding="tns:Hello_Binding" name="*RemoteServicePortType1*">
    <soap:address
    location="http://host1:8080/soap/servlet/rpcrouter"/>
    </port>
    <port binding="tns:Hello_Binding" name="*RemoteServicePortType2*">
    <soap:address
    location="http://host2:8080/soap/servlet/rpcrouter"/>
    </port>
    <port binding="tns:Hello_Binding" name="*RemoteServicePortType3*">
    <soap:address
    location="http://host3:8080/soap/servlet/rpcrouter"/>
    </port>
    <port binding="tns:Hello_Binding" name="*RemoteServicePortType4*">
    <soap:address
    location="http://host4:8080/soap/servlet/rpcrouter"/>
    </port>
    </service>
    </definitions>
    From the above WSDL, I have four port name (port binding="tns:Hello_Binding" name="*RemoteServicePortType1*) which is not matching with PortType (portType name="*RemoteServicePortType*")
    even i have iterated from getPorts() method and used to invoke the service.But handler was not calling when i invoke.
    Please guide me here how i specify correct portname which can call Handler class also.
    Thanks in advance,
    pps

  • Could not generate stub objects for web service invocation in ColdFusion

    I was able to call the services on the development box - windows server without any problem at all, everything was working fine but the moment i uploaded to a linux box production server I get this error. "Could not generate stub objects for web service invocation in ColdFusion"
    What could be the cause of this problem, i have googled a lot but no solution yet any ideas.

    Let me make it simple:
    1. Server A is our development server.- hosted inhouse with coldfusion installed.
    2. Server B is our production server - a linux server with coldfusion installed hosted on the internet
    3. Server C is a third party server containing the webservice - this is a windows server with .net
    coldfusion is installed on Server A, the code works here and can connect to server C without any problem. It gets the required respone
    but when the code was uploaded to server c it gives the error when we run it.
    now i tried just a simple code which works fine on server A below:
    <cfinvoke webservice="http://www.webservicex.net/CurrencyConvertor.asmx?WSDL" method="ConversionRate" returnvariable="ConversionRateResult">
        <cfinvokeargument name="FromCurrency" value="EUR" />
        <cfinvokeargument name="ToCurrency" value="USD" />
    </cfinvoke>
    <cfdump var="#ConversionRateResult#" />
    But when i uploaded it to server C: it returns the error
    Cannot generate stub objects for web service invocation.
    Name: http://www.webservicex.net/CurrencyConvertor.asmx?WSDL. WSDL: http://www.webservicex.net/CurrencyConvertor.asmx?WSDL. java.io.FileNotFoundException: /opt/coldfusion8/stubs/WS728929035/NET/webserviceX/www/Currency.java (No such file or directory) It is recommended that you use a web browser to retrieve and examine the requested WSDL document to ensure it is correct. If the requested WSDL document cannot be retrieved or is dynamically generated, it is likely that the target web service has programming errors.
    The error occurred in /home/works/public_html/currency.cfm: line 7
    5 :     <cfinvokeargument name="FromCurrency" value="EUR" />
    6 :
    7 :     <cfinvokeargument name="ToCurrency" value="USD" />
    8 :
    9 : </cfinvoke>
    Now if you try the preceeding code on a windows environment  it works fine but the moment you put in the in the linux environment it generates this error
    I feel that the error may actually be :
    java.io.FileNotFoundException: /opt/coldfusion8/stubs/WS728929035/NET/webserviceX/www/Currency.java (No such file or directory)
    but i am clueless as to what to do next
    Ok so I tried the wget command on the linux
    this is what i got
    -bash-3.2# wget http://www.webservicesx.net/CurrencyConvertor.asmx?WDSL
    --2011-07-02 23:23:42--  http://www.webservicesx.net/CurrencyConvertor.asmx?WDSL
    Resolving www.webservicesx.net... 216.8.179.25
    Connecting to www.webservicesx.net|216.8.179.25|:80... connected.
    HTTP request sent, awaiting response... 403 Forbidden
    2011-07-02 23:23:43 ERROR 403: Forbidden.

  • The Fibre Channel Platform Registration Service could not register the platform with fabric

    Hyper-V Cluster. HP StorageWorks 82E 8 Gb PCI-e Dual Port FC HBA.
    Each 15 minutes, eventlog register a warning.
    EventID: 2 Source:2
    The Fibre Channel Platform Registration Service could not register the platform with fabric 10:00:00:05:1e:7f:74:7b.
    I have teste the service. And it's started. Cluster storage validation report without failure.
    Someone suggest any idea.
    Thanks.

    Hi,
    What’s the OS version of your cluster node?
    The Microsoft Fibre Channel Platform Registration Service registers the platform with all available Fibre Channel fabrics and maintains the registrations. A fabric is a network topology where devices are connected to each other
    through one or more high-efficiency data paths. This service is used in support of storage area networks.
    This service is installed by default on Windows Server 2008, and the service startup type is Manual.
    You may try hotfix in KB 978790, and check the result.
    For more information please refer to following MS articles:
    The File Share Witness resource is in a failed state even though the File Share Witness directory is available, and quorum cannot be maintained in a Windows Server 2008 failover cluster
    http://support.microsoft.com/kb/978790
    cluster resources unresponsive
    http://social.technet.microsoft.com/Forums/hu/winserverClustering/thread/886a9cb3-7723-4b64-8c15-602dadf5ced9
    Hope this helps!
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Lawrence
    TechNet Community Support

  • Error while using spring multipart in Oracle Weblogic 10.3.6 - org.springframework.web.portlet.dispatcherportlet - could not complete request

    Hi there,
    We were using the spring multipart for the purpose of uploading a file into our application running on Oracle Weblogic Server 10.3.2 using spring framework.
    It was working fine until we upgraded our server to the version 10.3.6
    After the upgrade, we started getting the below error while we try to submit the form after selecting the file to be uploaded.
    2013-11-20 06:11:29,923 ERROR||[[ACTIVE] ExecuteThread: '9' for queue: 'weblogic.kernel.Default (self-tuning)']||[email protected]||org.springframework.web.portlet.DispatcherPortlet||Could not complete request
    javax.portlet.PortletException: Error occured during request processing: javax/portlet/ActionRequest
            at org.springframework.web.portlet.DispatcherPortlet.doActionService(DispatcherPortlet.java:668)[org.springframework.web.portlet-3.0.2.RELEASE.jar:3.0.2.RELEASE]
            at org.springframework.web.portlet.FrameworkPortlet.processRequest(FrameworkPortlet.java:519)[org.springframework.web.portlet-3.0.2.RELEASE.jar:3.0.2.RELEASE]
            at org.springframework.web.portlet.FrameworkPortlet.processAction(FrameworkPortlet.java:460)[org.springframework.web.portlet-3.0.2.RELEASE.jar:3.0.2.RELEASE]
            at com.bea.portlet.container.PortletStub.doAction(PortletStub.java:901)[portlet-container.jar:10.3.6 ]
            at com.bea.portlet.container.FilterChainGenerator.runFilterChain(FilterChainGenerator.java:96)[portlet-container.jar:10.3.6 ]
            at com.bea.portlet.container.PortletStub.processAction(PortletStub.java:314)[portlet-container.jar:10.3.6 ]
            at com.bea.portlet.container.AppContainer.invokeProcessAction(AppContainer.java:679)[portlet-container.jar:10.3.6 ]
            at com.bea.netuix.servlets.controls.content.JavaPortletContent.fireProcessAction(JavaPortletContent.java:209)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.servlets.controls.portlet.JavaPortlet.fireProcessAction(JavaPortlet.java:1299)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.servlets.controls.portlet.JavaPortlet.raiseChangeEvents(JavaPortlet.java:805)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.nf.ControlLifecycle$4.postVisitRoot(ControlLifecycle.java:316)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.nf.ControlTreeWalker.walkRecursive(ControlTreeWalker.java:341)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.nf.ControlTreeWalker.walk(ControlTreeWalker.java:130)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:399)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:361)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.nf.Lifecycle.processLifecycles(Lifecycle.java:352)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.nf.Lifecycle.runInbound(Lifecycle.java:184)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.nf.Lifecycle.run(Lifecycle.java:159)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.servlets.manager.UIServlet.runLifecycle(UIServlet.java:465)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.servlets.manager.UIServlet.doPost(UIServlet.java:291)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.servlets.manager.UIServlet.service(UIServlet.java:219)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.servlets.manager.SingleFileServlet.service(SingleFileServlet.java:275)[netuix_servlet.jar:10.3.6 ]
            at com.bea.netuix.servlets.manager.PortalServlet.service(PortalServlet.java:731)[netuix_servlet-full.jar:10.3.6 ]
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)[javax.servlet_1.0.0.0_2-5.jar:2.5]
            at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.bea.content.manager.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:178)[content_servlet.jar:10.3.6 ]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.bea.p13n.servlets.PortalServletFilter.doFilter(PortalServletFilter.java:336)[p13n_ejb.jar:10.3.6 ]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.rogers.business.servlet.filter.GenericContentFilter.doFilter(GenericContentFilter.java:50)[GenericContentFilter.class:]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.rogers.business.servlet.filter.SessionExpiryFilter.doFilter(SessionExpiryFilter.java:82)[SessionExpiryFilter.class:]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.rogers.business.servlet.filter.ServletExceptionFilter.doFilter(ServletExceptionFilter.java:54)[ServletExceptionFilter.class:]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.rogers.business.servlet.seo.SEOUrlFilter.doFilter(SEOUrlFilter.java:87)[SEOUrlFilter.class:]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.rogers.business.servlet.filter.BusinessContextDetectionFilter.doFilter(BusinessContextDetectionFilter.java:75)[BusinessContextDetectionFilter.class:]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.rogers.business.servlet.filter.LanguageProvinceSelectionFilter.doFilter(LanguageProvinceSelectionFilter.java:160)[LanguageProvinceSelectionFilter.class:]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at com.bea.content.manager.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:178)[content_servlet.jar:10.3.6 ]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)[weblogic.jar:10.3.6.0]
            at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)[com.bea.core.weblogic.security.identity_1.2.0.0.jar:1.2.0.0]
            at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)[com.bea.core.weblogic.security.wls_1.0.0.0_6-2-0-0.jar:6.2.0.0]
            at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)[weblogic.jar:10.3.6.0]
            at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)[weblogic.jar:10.3.6.0]
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)[com.bea.core.weblogic.workmanager_1.11.0.0.jar:1.11.0.0]
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)[com.bea.core.weblogic.workmanager_1.11.0.0.jar:1.11.0.0]
    We are using "ActionMapping" to call the action method in our controller from the JSP form.
    Have anyone faced this error before?
    Any help would be much appreciated.
    Thanks,
    Lan

    Hi Lan,
    Did you get any resolution for the above issue ?
    If yes can you share it as we also ran into this.
    Regards
    Manu

  • Com.crystaldecisions.sdk.exception.SDKException$ServiceNotFound: The service ReportEngine could not be found

    I am attempting to automate the "Save As" or export funtion of a webi doc but the documentation that states:
    ReportEngine repEngine = (ReportEngine)EnterpriseSession.getService("ReportEngine");
    Fails with:
    com.crystaldecisions.sdk.exception.SDKException$ServiceNotFound: The service ReportEngine could not be found
    When I run:
    enterpriseSession.getServiceNames("CMSName", 0);
    There is now "ReportEngine" listed.
    Can anyone help????? This is not JSP but a command line app that simple need to open a doc, then to getView() to get the binary version of the Webi doc in PDF and simply save to disk via some java method.
    I can get the doc, query reports, schedule reports, etc.. Just not export the report to disk.
    Can anyone help???

    These are the only things that show up when I call:
    EnterpriseSession().getServiceNames("sales-demo", 0);
    Batch
    Diagnostics
    InfoStore
    Logon
    NameService
    OCAAdministrator
    Pinger
    PluginDistribution
    Session
    APSAdmin
    AuditAdmin
    ISGeneralAdmin
    SSOAdmin
    This is the whole error:
    Exception in thread "main" java.lang.NoClassDefFoundError: com/businessobjects/wp/dbg/DBGTraceable
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(Unknown Source)
         at java.security.SecureClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.defineClass(Unknown Source)
         at java.net.URLClassLoader.access$100(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at com.businessobjects.rebean.wi.occa.WebiReportEngine.<init>(WebiReportEngine.java:66)
         at com.businessobjects.rebean.wi.occa.WebiReportEngineFactory.makeOCCA(WebiReportEngineFactory.java:64)
         at com.crystaldecisions.sdk.framework.internal.a.getService(Unknown Source)
         at com.crystaldecisions.sdk.framework.internal.a.getService(Unknown Source)
         at com.tidalsoft.adaptors.buisnessobjects.EnterpriseSession.getReportEngine(EnterpriseSession.java:72)
         at com.tidalsoft.adaptors.buisnessobjects.BO.main(BO.java:28)

  • Could not start the hyperion workspace-web application Error 1067

    Hi,
    I have installed hyperion from scratch in a distributed environment...everything was working fine.......i.e. shared services, workspace, essbase, sql server, and hfm. I was able to logon and navigate different options in the hyperion products...but essbase stopped working when I re-started all four servers ....?
    (1) When I restarted all four servers and stopped and restarted all hyperion services as per giving sequence then everything works fine but essbase EAS console and workspace web console...i was getting error message " could not connect to administration server" whenever i try to connect EAS console to essbase then I went to services there I saw workspace agent and workspace web application service is down.
    (2) as soon as I started those both services then my shared services automatically stopped but I was able to logon in Essbase console and workspace console but my shared services are down...
    (3) as soon as I start shared service they started but my workspace agent and workspace web application automatically stopped...and when I try to start again workspace web application then I get this error "[ Could not start the hyperion workspace-web application services on local computer. Error 1067: the process terminated unexpectedly]"
    I have been searching online and googling but have a hard luck to get some best solution for this...can some one help me or guide me to walk through with this issue...
    Thank you very much in advance ...
    Regards,
    Safi

    I solved this issue...It was with Hyperion Services those were stop responding some how.....but I stopped each service and restarted then those started working again...
    Regards,
    Safi

  • "The service RASReportFactory could not be found" error

    I receive the error: "The service RASReportFactory could not be found" when I call the following line of code:
    IReportAppFactory reportAppFactory = (IReportAppFactory) es.getService("RASReportFactory");
    I believe this is due to a missing JAR file in my application classpath, namely either rasapp.jar or rascore.jar.  Can anyone confirm?  Is there anything else that could possibly cause this runtime error?
    Thanks...

    try:
    IReportAppFactory reportAppFactory = (IReportAppFactory) es.getService("","RASReportFactory");
    If you were missing rascore.jar or rasapp.jar you should see a compile time error like "class xxx not found". Also make sure that the RAS service on Enterprise is up.

  • CF8 Verity "The collection you specified does not exist or is not registered with the ColdFusion Search Service."

    I'm running ColdFusion 8 Enterprise on linux. I'm able to
    create collections and index them through cfadmin as well as in cfm
    application pages, but when trying to search I get the error
    &quot;The collection you specified does not exist or is not
    registered with the ColdFusion Search Service.&quot;
    I'm using the collection name in cfsearch and not the full
    path.

    Would I have been better off posting this in the General
    Discussion section? Could the moderators move it if so,
    please?

  • Com.crystaldecisions.sdk.exception.SDKException$ServiceNotFound: The service WebiReportEngine could not be found(Help needed )

    com.crystaldecisions.sdk.exception.SDKException$ServiceNotFound: The service WebiReportEngine could not be found
    Here is the code I have used to obtain a report engine object
    oEnterpriseSession = CrystalEnterprise.getSessionMgr().logon(username, password, cms, authType);
    reportEngine = (ReportEngine) oEnterpriseSession.getService("","WebiReportEngine");
    Exception lies in the above line .. I am not able to debug

    To get the ReportEngine object use the following code:
    // Retrieve the Report Engines
    ReportEngines boReportEngines = (ReportEngines) boEnterpriseSession.getService("ReportEngines");
    // Retrieve the Report Engine for Web Intelligence documents
    ReportEngine boReportEngine = boReportEngines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);
    You may also want to look at our samples using the Report Engine SDK available here:
    http://diamond.businessobjects.com/samples/86/1199/

  • Windows could not start the Network Location Awareness service on Local computer

    i have a dell inspiron 1501 laptop running windows vista home premium media center edition. i have recently been getting an error when trying to view networked computer saying  "connection status: unknown" and "the dependency service or group failed to start". i started by disabling and re-enabling the driver and that did not help. i then brought up the services.msc thing and started looking at the networking services. i noticed that the Network Location Awareness service was not started so i tried to start it. i got a popup message saying "Windows could not start the Netwrok Location Awareness service on Local Computer. Error 0xc000096: 0xc0000096".
    i also get an error popup when i try to start the Network List service saying "Windows could not start the Network List Service service on Local Computer. Error 1068: The dependency service or group failed to start".
    what might i have done to make this happen and what can i do to try to fix it?
    haus

    Hi,
    Thank you for the post.
    I fully understand the inconvenience the issue has been caused and the current situation can be frustrating. Please try the following steps for troubleshooting.
    1.    Please start the computer in Safe Mode with Network and check the result. If the issue disappears, please perform a clean boot.
    For the detailed steps, please refer to the step 1 and 2 in the KB article 936214 (http://support.microsoft.com/kb/936214).
    2.    If the issue persists, please check the system file by using the command SFC /scannow.
    For more information, please refer to the KB article 929833 (http://support.microsoft.com/kb/929833).
    If the above suggestions do not resolve the issue that service fails to start up, please understand that debug and dump analysis may be required for further troubleshooting. Also, in most cases, it is necessary to check the source codes. However, debugging is out of our forum’s support boundary. A support call to our product service team is needed for the debugging service. In this case, I’d like to suggest contacting Microsoft Customer Support Service (CSS) for assistance so that this issue can be resolved efficiently.
    To obtain the phone numbers for specific technology request, please check the website listed below:
    http://support.microsoft.com/default.aspx?scid=fh;EN-US;PHONENUMBERS
    Thank you for your understanding.
    Sincerely,
    Joson Zhou
    Microsoft Online Community Support

  • Could not load servlet information from web server

    I am trying to register a servlet through the web object manager.
    As soon as click the web object manager menu pick I get the following
    error: Could not load servlet information from web server.
    On other peoples machines here it works fine and they can register
    servlets. What am I missing!

    You must be using Jdev 3.2.x, this is a known bug. In Jdev 9.0.2 we use the standard J2EE web.xml in order to register servlets. You should consider moving to the new IDE.

  • SPP 4.30 windows could not start the rwd uperform monitoring service

    Hi, i just install spp 4.30 with two servers, one for the sql databases, and the other for the search server and vignette.
    Windows server 2008. 64 bits
    All the installation was ok, but when you try to configure the server it doesn't show the web page.
    The rwd uperform monitoring service can not start and send the following error:
    Windows could not start the rwd uperform monitoring service error 1067.
    Any ideas.
    thanks
    Edited by: Idel Gorodezky on Jun 26, 2011 3:14 AM

    Hi, thanks for the Help, i am sending the logs.
    - <Log>
    - <Entry Type="Error" Id="f19c1f86-8e6e-4bee-8c18-312e7edb23d2">
      <Date>6/27/2011 1:23:09 AM</Date>
      <ThreadID>9</ThreadID>
      <ErrorCode>24-01-014</ErrorCode>
      <RoutineNamespace>RWD.uPerform.CMS.Vignette.VerifyLicense</RoutineNamespace>
      <FriendlyMessage>An error occurred while verifying license.</FriendlyMessage>
      <Message>The remote server returned an error: (401) Unauthorized.</Message>
      <StackTrace>at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) at System.Net.WebClient.DownloadData(Uri address) at RWD.uPerform.CMS.Vignette.GetBytesFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.GetStringFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.VerifyLicense() at RWD.uPerform.WindowsService.QueueMonitor.VerifyLicense()</StackTrace>
      <Parameters />
      </Entry>
    - <Entry Type="Error" Id="2a9ca666-2f94-4cb0-86e9-62254c21e2ec">
      <Date>6/27/2011 5:39:02 AM</Date>
      <ThreadID>9</ThreadID>
      <ErrorCode>24-01-014</ErrorCode>
      <RoutineNamespace>RWD.uPerform.CMS.Vignette.VerifyLicense</RoutineNamespace>
      <FriendlyMessage>An error occurred while verifying license.</FriendlyMessage>
      <Message>The remote server returned an error: (401) Unauthorized.</Message>
      <StackTrace>at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) at System.Net.WebClient.DownloadData(Uri address) at RWD.uPerform.CMS.Vignette.GetBytesFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.GetStringFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.VerifyLicense() at RWD.uPerform.WindowsService.QueueMonitor.VerifyLicense()</StackTrace>
      <Parameters />
      </Entry>
    - <Entry Type="Error" Id="7c26d18a-fadf-49f1-8f0f-881ea4d33fa0">
      <Date>6/27/2011 10:59:44 AM</Date>
      <ThreadID>9</ThreadID>
      <ErrorCode>24-01-014</ErrorCode>
      <RoutineNamespace>RWD.uPerform.CMS.Vignette.VerifyLicense</RoutineNamespace>
      <FriendlyMessage>An error occurred while verifying license.</FriendlyMessage>
      <Message>The remote server returned an error: (401) Unauthorized.</Message>
      <StackTrace>at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) at System.Net.WebClient.DownloadData(Uri address) at RWD.uPerform.CMS.Vignette.GetBytesFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.GetStringFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.VerifyLicense() at RWD.uPerform.WindowsService.QueueMonitor.VerifyLicense()</StackTrace>
      <Parameters />
      </Entry>
    - <Entry Type="Error" Id="0bd8fe26-8265-4b2e-a192-0b6513eb5ad8">
      <Date>6/27/2011 12:01:15 PM</Date>
      <ThreadID>9</ThreadID>
      <ErrorCode>24-01-014</ErrorCode>
      <RoutineNamespace>RWD.uPerform.CMS.Vignette.VerifyLicense</RoutineNamespace>
      <FriendlyMessage>An error occurred while verifying license.</FriendlyMessage>
      <Message>The remote server returned an error: (401) Unauthorized.</Message>
      <StackTrace>at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) at System.Net.WebClient.DownloadData(Uri address) at RWD.uPerform.CMS.Vignette.GetBytesFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.GetStringFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.VerifyLicense() at RWD.uPerform.WindowsService.QueueMonitor.VerifyLicense()</StackTrace>
      <Parameters />
      </Entry>
    - <Entry Type="Error" Id="b8b0694b-5214-4871-9bc6-b8af11dadf6f">
      <Date>6/27/2011 1:06:19 PM</Date>
      <ThreadID>9</ThreadID>
      <ErrorCode>24-01-014</ErrorCode>
      <RoutineNamespace>RWD.uPerform.CMS.Vignette.VerifyLicense</RoutineNamespace>
      <FriendlyMessage>An error occurred while verifying license.</FriendlyMessage>
      <Message>The remote server returned an error: (401) Unauthorized.</Message>
      <StackTrace>at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) at System.Net.WebClient.DownloadData(Uri address) at RWD.uPerform.CMS.Vignette.GetBytesFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.GetStringFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.VerifyLicense() at RWD.uPerform.WindowsService.QueueMonitor.VerifyLicense()</StackTrace>
      <Parameters />
      </Entry>
    - <Entry Type="Error" Id="370efaa4-1f71-413c-a027-126b31693932">
      <Date>6/27/2011 4:17:07 PM</Date>
      <ThreadID>9</ThreadID>
      <ErrorCode>24-01-014</ErrorCode>
      <RoutineNamespace>RWD.uPerform.CMS.Vignette.VerifyLicense</RoutineNamespace>
      <FriendlyMessage>An error occurred while verifying license.</FriendlyMessage>
      <Message>The remote server returned an error: (401) Unauthorized.</Message>
      <StackTrace>at System.Net.WebClient.DownloadDataInternal(Uri address, WebRequest& request) at System.Net.WebClient.DownloadData(Uri address) at RWD.uPerform.CMS.Vignette.GetBytesFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.GetStringFromServer(Uri uri, CredentialSet CredentialsToUse, String postData) at RWD.uPerform.CMS.Vignette.VerifyLicense() at RWD.uPerform.WindowsService.QueueMonitor.VerifyLicense()</StackTrace>
      <Parameters />
      </Entry>
      </Log>
    <configuration>
      <appSettings>
        <add key="DataSource" value="fifcrsppdb01" />
        <add key="Database" value="uperformGlossarydef" />
        <add key="DatabaseEngine" value="SQLserver" />
        <add key="DatabasePort" value="1433" />
        <add key="DatabaseSchema" value="glossaryPublic10" />
        <add key="ConnectionModifier" value=";pooling=false" />
        <add key="DatabasePassword" value="Zn4Od3shJCfR6hrx0ALMNg==" />
        <add key="DatabaseUser" value="glossaryPublic10" />
        <add key="Flags" value="0" />
        <add key="SMTPServer" value="172.16.3.114" />
        <add key="SMTPDomain" value="16.3.114" />
        <add key="HostName" value="FIFCRSPPAP01.ccr.co.cr" />
        <add key="HostPort" value="80" />
        <add key="HostProtocol" value="http" />
        <add key="GlossaryEnabled" value="True" />
        <add key="GlossaryUseRTF" value="True" />
        <add key="GlossaryDefaultLanguage" value="en-US" />
        <add key="VignetteIntegrated" value="True" />
        <add key="InstallLocation" value="C:\Vignette\Collaboration\" />
        <add key="ErrorLog" value="WWW\uPerformWS\logs\ServerErrors.xml" />
        <add key="DataFolder" value="WWW\RWD\Data\" />
        <add key="LibraryStructure" value="en-US_rwdDocLib.xml" />
        <add key="WorkingLocation" value="WWW\uPerformWS\WorkingFolder\" />
        <add key="ErrorMaxSize" value="1000000" />
        <add key="ErrorHistory" value="30" />
        <add key="GlossaryQueue" value=".\private$\GlossaryQueue" />
        <add key="PublishingQueue" value=".\private$\PublishingQueue" />
        <add key="ImportExportQueue" value=".\private$\ImportExportQueue" />
        <add key="ErrorQueue" value=".\private$\ErrorQueue" />
        <add key="UserManagementQueue" value=".\private$\UserManagementQueue" />
        <add key="Transforms" value="WWW\uPerformWS\ms\PublishingData\Base Static\xml\transforms" />
        <add key="CurrentVersion" value="4.30" />
        <add key="TrustAllCertificates" value="True" />
        <add key="WebRequestTimeout" value="600000" />
        <add key="LdapAuthentication" value="ServerBind" />
        <add key="WordtoHTML" value="True" />
        <add key="WordtoPDF" value="True" />
        <add key="PPTtoPDF" value="True" />
        <add key="ExceltoPDF" value="True" />
        <add key="WordtoSource" value="True" />
        <add key="PPTtoSource" value="True" />
        <add key="ExceltoSource" value="True" />
        <add key="PublishedContent" value="WWW\ucontent\" />
        <add key="PublisherConfig" value="WWW\uPerformWS\ms\PublishingData\configuration files\transformation.settings" />
        <add key="Templates" value="WWW\uPerformWS\ms\PublishingData\Base AppData\templates\" />
        <add key="BaseStatic" value="WWW\uPerformWS\ms\PublishingData\Base Static\" />
        <add key="BaseAppData" value="WWW\uPerformWS\ms\PublishingData\Base AppData\" />
        <add key="PensListenerPath" value="WWW\uPerformWS\" />
        <add key="Upgrade" value="WWW\uPerformWS\ms\PublishingData\Upgrade\" />
        <add key="EnableDocSIM" value="True" />
        <add key="EnableDocXHTML" value="True" />
        <add key="EnableDocPDF" value="True" />
        <add key="EnableDocWORD" value="True" />
        <add key="EnableDocPPT" value="True" />
        <add key="EnableCourseSIM" value="True" />
        <add key="EnableCoursePDF" value="True" />
        <add key="EnableCourseWORD" value="True" />
        <add key="EnablePPTXsource" value="True" />
        <add key="EnablePPTXpdf" value="True" />
        <add key="EnableXLSXsource" value="True" />
        <add key="EnableXLSXpdf" value="True" />
        <add key="EnableDOCXsource" value="True" />
        <add key="EnableDOCXhtml" value="True" />
        <add key="EnableDOCXpdf" value="True" />
        <add key="SystemPassword" value="" />
        <add key="IntegrationEnabled" value="False" />
        <add key="IntegrationUserName" value="" />
        <add key="IntegrationPassword" value="" />
        <add key="IntegrationURL" value="" />
        <add key="IntegrationOutgoingPolicy" value="" />
        <add key="IntegrationIncomingPolicy" value="" />
        <add key="PolicyFile" value="WWW\uPerformWS\wse3policyCache.config" />
        <add key="WebRequestQueryString" value="SMSESSION=NO" />
        <add key="SiteMinderCookie" value="SMCHALLENGE" />
        <add key="SiteMinderDomain" value="" />
        <add key="TivoliCookieName" value="" />
        <add key="TivoliCookieDomain" value="" />
        <add key="TivoliWebSEALJunction" value="" />
        <add key="TivoliWebSEALBaseURL" value="" />
        <add key="AuthenticationType" value="Basic" />
        <add key="LDAPTimeout" value="10" />
        <add key="UserPageSize" value="2000" />
      </appSettings>
    </configuration>

  • "The PowerPivot service application could not connect to the Analysis Services instance"

    Hi
    I am baffled by this one.  I have a PowerShell script I have built up to install PowerPivot, which I have put together by reading various blogs and by picking apart the scripts that come with the PowerPivot installer.
    However, once I have built the service app and installed/activated the solutions and features, I get the error "The PowerPivot service application could not connect to the Analysis Services instance" when trying to use it.  I can't find any
    more detailed messages, even with verbose logging turned on.  SSAS\PowerPivot is of course installed and connected to Excel as it should be.
    I have tried running the PowerPivot for SharePoint validation tool and it doesn't find anything.
    If I install PowerPivot using the PowerPivot for SharePoint installer, then delete the service app and rerun my scripts, everything then works fine.
    So there is something the installer is doing that I am not, but I cannot for the life of me figure out what it is.  I though it might be permission related, but the official installer installs the service under the farm account, not my BI service account. 
    Ahaa, I thought, but when I then reinstall the service myself with my scripts, using my BI service account, the service app then works, so I don't think it can be permission related.
    Doing a Google search on that message pulls up only one old post (repeated a few times), which talks about using a domain account for the SSAS instance instead of a Local System account - I am using the same domain service account for SSAS, Excel and
    PowerPivot already, so that doesn't help me much.
    Does anyone have any ideas for me or suggestions on how I might proceed?
    Andrew vR

    Did you run the "Run PowerPivot for SharePoint Configuration Tool" after installing PowerPivot and did that work okay?
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

Maybe you are looking for