Webservice:  Unable to create JAXBContext

Hi,
I am trying to create a Java web service with below class using JDev 11g:
public class TestWS {
public TestWS() {
super();
public XMLDocument testXML (XMLDocument xmldoc){
System.out.println("Inside service...");
System.out.println(xmldoc.getClass());
return new XMLDocument();
When I try to Test Web Service in Integrated WLS server, i get an error:
<May 25, 2010 4:29:32 PM EDT> <Error> <HTTP> <BEA-101216> <Servlet: "TestWSPort" failed to preload on startup in Web application: "Test1-TestWS-context-root".
javax.xml.ws.WebServiceException: Unable to create JAXBContext
     at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:158)
     at com.sun.xml.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:87)
     at com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:271)
     at com.sun.xml.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:351)
     at com.sun.xml.ws.server.EndpointFactory.createEndpoint(EndpointFactory.java:201)
     Truncated. see log file for complete stacktrace
Caused By: java.security.PrivilegedActionException: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions
oracle.xml.scalable.InfosetReader is an interface, and JAXB can't handle interfaces.
     this problem is related to the following location:
          at oracle.xml.scalable.InfosetReader
          at public oracle.xml.scalable.InfosetReader oracle.xml.parser.v2.XMLDocument.getInfosetReader()
          at oracle.xml.parser.v2.XMLDocument
          at public oracle.xml.parser.v2.XMLDocument testws.jaxws.TestXML.arg0
          at testws.jaxws.TestXML
oracle.xml.scalable.InfosetReader does not have a no-arg default constructor.
     this problem is related to the following location:
          at oracle.xml.scalable.InfosetReader
          at public oracle.xml.scalable.InfosetReader oracle.xml.parser.v2.XMLDocument.getInfosetReader()
          at oracle.xml.parser.v2.XMLDocument
          at public oracle.xml.parser.v2.XMLDocument testws.jaxws.TestXML.arg0
          at testws.jaxws.TestXML
     at java.security.AccessController.doPrivileged(Native Method)
     at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:148)
     at com.sun.xml.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:87)
     at com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:271)
     at com.sun.xml.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:351)
     Truncated. see log file for complete stacktrace
Caused By: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 2 counts of IllegalAnnotationExceptions
oracle.xml.scalable.InfosetReader is an interface, and JAXB can't handle interfaces.
     this problem is related to the following location:
          at oracle.xml.scalable.InfosetReader
          at public oracle.xml.scalable.InfosetReader oracle.xml.parser.v2.XMLDocument.getInfosetReader()
          at oracle.xml.parser.v2.XMLDocument
          at public oracle.xml.parser.v2.XMLDocument testws.jaxws.TestXML.arg0
          at testws.jaxws.TestXML
oracle.xml.scalable.InfosetReader does not have a no-arg default constructor.
     this problem is related to the following location:
          at oracle.xml.scalable.InfosetReader
          at public oracle.xml.scalable.InfosetReader oracle.xml.parser.v2.XMLDocument.getInfosetReader()
          at oracle.xml.parser.v2.XMLDocument
          at public oracle.xml.parser.v2.XMLDocument testws.jaxws.TestXML.arg0
          at testws.jaxws.TestXML
     at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:102)
     at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:438)
     at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:286)
     at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:139)
     at com.sun.xml.bind.api.JAXBRIContext.newInstance(JAXBRIContext.java:105)
     Truncated. see log file for complete stacktrace
>
Can anyone explain the cause the of issue and any solution for this...
Regards
Amit

hI
I am getting the same issue, did you find any solution .please email me at [email protected]
I wrote 2 methods in my in JDeveloper . First Method gets XML String does some processing and sends XML to a HTTP web server URL, first method calls second method -parseXML, which does some parsing and returns XML to first method.
Now when I created web service, annotation for 2 methods were created like
@WebService(portName = "HTTPClassSoap12HttpPort")
@BindingType(SOAPBinding.SOAP12HTTP_BINDING
@WebMethod(exclude = true). I even tried changing this to false later.
When I deploy on WLS/ SOA Server and create a WAR I get an Exception.
03:29:07 PM] weblogic.application.ModuleException: [HTTP:101216]Servlet: "HTTPClassSoap12HttpPort" failed to preload on startup in Web application: "XYZApp-XYZJavaProject-context-root.war".
javax.xml.ws.WebServiceException: Unable to create JAXBContext
     at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:164)
     at com.sun.xml.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:94)
     at com.sun.xml.ws.model.RuntimeModeler.buildRuntimeModel(RuntimeModeler.java:265)
     at com.sun.xml.ws.server.EndpointFactory.createSEIModel(EndpointFactory.java:363)
     at com.sun.xml.ws.server.EndpointFactory.createEndpoint(EndpointFactory.java:202)
     at com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:514)
     at com.sun.xml.ws.api.server.WSEndpoint.create(WSEndpoint.java:557)
     at weblogic.wsee.jaxws.JAXWSDeployedServlet.getEndpoint(JAXWSDeployedServlet.java:183)
     at weblogic.wsee.jaxws.JAXWSServlet.registerEndpoint(JAXWSServlet.java:96)
     at weblogic.wsee.jaxws.JAXWSServlet.init(JAXWSServlet.java:61)
     at weblogic.wsee.jaxws.JAXWSDeployedServlet.init(JAXWSDeployedServlet.java:55)
     at javax.servlet.GenericServlet.init(GenericServlet.java:242)
     at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
     at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
     at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
     at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
     at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
     at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
     at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
     at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
     at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3127)
     at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
     at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:489)
     at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
     at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
     at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
     at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:201)
     at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:249)
     at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:427)
     at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
     at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
     at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:28)
     at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1269)
     at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
     at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
     at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:43)
     at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
     at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
     at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:569)
     at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
     at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
     at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:323)
     at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
     at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
     at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
     at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:164)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
     at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:69)
     at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
Caused by: java.security.PrivilegedActionException:
com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 5 counts of IllegalAnnotationExceptions
java.io.DataInputStream does not have a no-arg default constructor.
     this problem is related to the following location:
          at java.io.DataInputStream
          at public java.io.DataInputStream fmbrilljavaproject.jaxws.ParseXML.arg0
          at fmbrilljavaproject.jaxws.ParseXML
java.io.FilterInputStream does not have a no-arg default constructor.
     this problem is related to the following location:
          at java.io.FilterInputStream
          at java.io.DataInputStream
          at public java.io.DataInputStream fmbrilljavaproject.jaxws.ParseXML.arg0
          at fmbrilljavaproject.jaxws.ParseXML
java.lang.StackTraceElement does not have a no-arg default constructor.
     this problem is related to the following location:
          at java.lang.StackTraceElement
          at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
          at java.lang.Throwable
          at java.lang.Exception
          at public java.lang.Exception fmbrilljavaproject.jaxws.SAXExceptionBean.exception
          at fmbrilljavaproject.jaxws.SAXExceptionBean
javax.xml.transform.SourceLocator is an interface, and JAXB can't handle interfaces.
     this problem is related to the following location:
          at javax.xml.transform.SourceLocator
          at public javax.xml.transform.SourceLocator fmbrilljavaproject.jaxws.TransformerConfigurationExceptionBean.locator
          at fmbrilljavaproject.jaxws.TransformerConfigurationExceptionBean
javax.xml.transform.SourceLocator does not have a no-arg default constructor.
     this problem is related to the following location:
          at javax.xml.transform.SourceLocator
          at public javax.xml.transform.SourceLocator fmbrilljavaproject.jaxws.TransformerConfigurationExceptionBean.locator
          at fmbrilljavaproject.jaxws.TransformerConfigurationExceptionBean
     at com.sun.xml.ws.model.AbstractSEIModelImpl.createJAXBContext(AbstractSEIModelImpl.java:151)
     at com.sun.xml.ws.model.AbstractSEIModelImpl.postProcess(AbstractSEIModelImpl.java:95)
     ... 52 more
Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 5 counts of IllegalAnnotationExceptions
java.io.DataInputStream does not have a no-arg default constructor.
     this problem is related to the following location:
          at java.io.DataInputStream
          at public java.io.DataInputStream fmbrilljavaproject.jaxws.ParseXML.arg0
          at fmbrilljavaproject.jaxws.ParseXML
java.io.FilterInputStream does not have a no-arg default constructor.
     this problem is related to the following location:
          at java.io.FilterInputStream
          at java.io.DataInputStream
          at public java.io.DataInputStream fmbrilljavaproject.jaxws.ParseXML.arg0
          at fmbrilljavaproject.jaxws.ParseXML
java.lang.StackTraceElement does not have a no-arg default constructor.
     this problem is related to the following location:
          at java.lang.StackTraceElement
          at public java.lang.StackTraceElement[] java.lang.Throwable.getStackTrace()
          at java.lang.Throwable
          at java.lang.Exception
          at public java.lang.Exception fmbrilljavaproject.jaxws.SAXExceptionBean.exception
          at fmbrilljavaproject.jaxws.SAXExceptionBean
javax.xml.transform.SourceLocator is an interface, and JAXB can't handle interfaces.
     this problem is related to the following location:
          at javax.xml.transform.SourceLocator
          at public javax.xml.transform.SourceLocator fmbrilljavaproject.jaxws.TransformerConfigurationExceptionBean.locator
          at fmbrilljavaproject.jaxws.TransformerConfigurationExceptionBean
javax.xml.transform.SourceLocator does not have a no-arg default constructor.
     this problem is related to the following location:
          at javax.xml.transform.SourceLocator
          at public javax.xml.transform.SourceLocator fmbrilljavaproject.jaxws.TransformerConfigurationExceptionBean.locator
          at fmbrilljavaproject.jaxws.TransformerConfigurationExceptionBean
     at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:102)
     at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:448)
     at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:297)
     at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:139)
     at com.sun.xml.bind.api.JAXBRIContext.newInstance(JAXBRIContext.java:105)
     at com.sun.xml.ws.developer.JAXBContextFactory$1.createJAXBContext(JAXBContextFactory.java:73)
     at com.sun.xml.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelImpl.java:159)
     at com.sun.xml.ws.model.AbstractSEIModelImpl$1.run(AbstractSEIModelImpl.java:151)
     ... 54 more
:com.sun.xml.bind.v2.runtime.IllegalAnnotationsException:5 counts of IllegalAnnotationExceptions
[03:29:08 PM] #### Deployment incomplete. ####
[03:29:08 PM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)

Similar Messages

  • Unable to create JAXBContext

    I'm using Oracle Enterprise Pack for Eclipse and WLS 10.3.3. I'm trying to write a web service to do a simple Oracle database query using JDBC and then return the results. I'm attempting to return the result in an array. Each element of the array contains an instance of a custom class that I wrote to hold one row of the results. When I try to publish the web service I get an error "javax.xml.ws.WebServiceException: Unable to create JAXBContext".
    If I change the return type of the web service to a simpler type, such as String, then I can publish it with no problem.
    Is there something special I need to do when returning a complex class type, such as placing some annotations in the code?
    Thank you!
    Neal

    You should be able to return an array of your own "custom objects" ie:
    @WebService
    public class DealerWS {
    public Car[] getSedans(String carType){
    if(carType.equalsIgnoreCase("Toyota")){
    Car[] cars = new Car[2];
    cars[0] = new Car("Camry");
    cars[1] = new Car("Corolla");
    return cars;
    throw new WebServiceException("Not a dealer of: "+carType);
    Where Car:
    public class Car {
    private String model;
    private String make;
    public Car() {
    setMake("Toyota");
    public Car(String model) {
    setModel(model);
         public String getModel() {
              return model;
         public void setModel(String model) {
              this.model = model;
         public String getMake() {
              return make;
         public void setMake(String make) {
              this.make = make;
    However, what are the types you are using in the custom object public methods?

  • Getting error while creating form and report on webservice: ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.

    i am using the following description to create a web service reference:
    web reference :REST
    Name :Yahoo Map
    URL :http://local.yahooapis.com/MapsService/V1/mapImage
    HTTP Method: GET
    Basic Authentication: No
    Add Parameter:
    Name       Type
    appid        String
    location    String
    Output Format: XML
    XPath to Output Parameters : /Result
    Output Parameter:
    Name       Path       Type
    Url          /text()      String
    Then i tried to create form and report on webservice:
    Web Service Reference Type: Yahoo Map
    Operation: doREST
    All the fields i keep as default
    I tick the checkbox (url)in report Parameter
    After clicking next whereever required i click create button
    I get the following error
    ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.
    Please someone help to solve this as i need to fix it urgently.

    i exported the application from apex.oracle.com and imported it to our environment
    import went fine, but when I ran the IR page I got
    ORA-20001: get_dbms_sql_cursor error ORA-00904: : invalid identifier
    evidently the problem is a lack of public execute on DBMS_LOB, which is used in the generated IR source.
    while waiting for the DBA to grant privs on DBMS_LOB, changing the dbms_lob.getlength call to length() fixes the IR.
    however, i am not getting the download link on the associated form page... changed templates, that's not the issue -- we'll see if that's a dbms_lob issue as well

  • APEX:Getting error while creating form and report on webservice: ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.

    I am using Apex 4.2.2.00.11
    am using the following description to create a web service reference:
    web reference :REST
    Name :Yahoo Map
    URL :http://local.yahooapis.com/MapsService/V1/mapImage
    HTTP Method: GET
    Basic Authentication: No
    Add Parameter:
    Name       Type
    appid        String
    location    String
    Output Format: XML
    XPath to Output Parameters : /Result
    Output Parameter:
    Name       Path       Type
    Url          /text()      String
    Then i tried to create form and report on webservice:
    Web Service Reference Type: Yahoo Map
    Operation: doREST
    All the fields i keep as default
    I tick the checkbox (url)in report Parameter
    After clicking next whereever required i click create button
    I get the following error
    ORA-20001: Unable to create form on table. ORA-02263: need to specify the datatype for this column.
    Please someone help to solve this as i need to fix it urgently.

    336554,
    Looks like there is a 127-column limit on the number of report columns supported when using that wizard. Do you have more than that?
    57434

  • Unable to Create PLSQL Webservice in JDeveloper 11g

    Hi,
    i have created webservice for PL/SQL for functions with out TYPE data types as parameter..
    but i am unable to create a webservice for procedure having
    Freight_Pkg.PROCEDURE get_freight(
    p_sbl_source_line_tab IN OUT SYK_SBL_SOURCE_LINE_TAB_TYPE
    ,l_total_freight OUT NUMBER
    ,l_err_code OUT NUMBER
    ,l_err_mesg OUT VARCHAR2
    and when i try to create web service it generates below Warning
    =========================================
    Log Message of WebService
    ========================================
    Generating PL/SQL Web Service
    Generating WSDL and mapping file
    WARNING: OWS-00077 The Value Type class: SykSblSourceLineBase does not have a valid Java Bean pattern.
    Adding service files to deployment profile
    Service generation finished
    Generation complete.
    Please let me know the procedure for creating Webservice for PLSQL of Table Type Parameters passing as IN parameter in Procedure.
    Thanks,
    Vijay

    Vijay,
    Is this configured with Oracle E-Business Suite? If yes, please note that JDeveloper 11g is not certified with Oracle Apps 11i/R12.
    How to find the correct version of JDeveloper to use with eBusiness Suite 11i or Release 12.x [ID 416708.1]
    Configuring JDeveloper For Use With Oracle Applications 11i and R12 [ID 330236.1]
    If this is not related to EBS, post your question in the appropriate forum for a better/faster response.
    JDeveloper and ADF
    JDeveloper and ADF
    Thanks,
    Hussein

  • Receiver SOAP channel error: Communication over HTTPS. Unable to create a socket

    Hi,
    I am getting following error while sending message from PI (7.1) to SalesForce system:
    'SOAP: call failed: java.io.IOException: Communication over HTTPS. Unable to create a socket'
    Scenario: Sending Customer data from SAP via Async proxy to PI which is sent further to SalesForce system via SOAP webservice call.
    When I am trying to Post data to the same webservice via SOAP UI it is working fine and data is getting updated in SalesForce system.
    XPI inspector logs for the channel suggest the following:
    client [103965] RequestImpl.initSslAttributes(): Initially sslAttributes = null
    client [103965] RequestImpl.initSslAttributes(): Cannot find SSL headers in the request.
    client [103965] RequestImpl.initSslAttributes(): No SSL attributes: not found in headers and not searched in FCA, because connection.isSecure() = false; sslAttributes = null
    I have checked the following SAP Note and requested for updation of SSL icm parameters
    891877 - Message-specific configuration of HTTP-Security
    I checked the following discussions:
    http://scn.sap.com/message/8910518#8910518
    http://scn.sap.com/message/6244674#6244674
    http://scn.sap.com/thread/2100000
    http://scn.sap.com/thread/1632114
    which are suggesting a different approach. Kindly suggest a way forward.
    Thanks,
    Vishwajeet

    This is related network issue.
    Did you do telnet in pi server with target system ip and port?
    If you use https then you need to install certificates.
    Check below threads
    http://scn.sap.com/thread/190299
    Unable to create socket error

  • SOAP Receiver   java.io.IOException: unable to create a socket

    Hi All,
    I have scenario where i invoke a external webservice  (over internet)  using SOAP adapter. I can reach the external target as they see my traffic on firewall but i always get:
    com.sap.aii.af.ra.ms.api.DeliveryException: java.io.IOException: unable to create a socket
    I cannot find any logs which provide more information on this. I have imported all the clients certificates into my J2EE keystore (webservice is over HTTPS). Any suggestions on where better logs can be found would be appreciated. So far checked RWB and the default trace log.
    Since my certificates arent in ABAP stack I cant use SM59 to test. I have used test tool like soapUI and can invoke the web service (although on different network to my XI server) so not sure why XI is failing
    Any suggestions would be greatly appreciated!
    Sorry forgot to mention - The error its self i suspect is firewall and will need to get network people to look at but any information on how to debug errors like this on J2EE side would be appreciated - is there a J2EE version of SM59?
    Message was edited by:
            Chris Mills

    Hi Chris,
    Check this thread..
    SOAP Adapter: java.io.IOException: unable to create a socket
    cheers,
    Prashanth
    P.S Please mark helpful answers

  • Unable to create the service call usage entry. Exception details: System.ObjectDisposedException: Message is closed.

    Hello Community
    my ULS-logs are flooded with entries like
    w3wp.exe SharePoint Foundation Topology ajczh High Unable to create the service call usage entry. Exception details: System.ObjectDisposedException: Message is closed. at System.ServiceModel.Channels.BufferedMessage.get_Headers() at Microsoft.SharePoint.Administration.SPServiceCallUsageEntry.Create(Message message) at Microsoft.SharePoint.SPServiceContextBehavior.System.ServiceModel.Dispatcher.IClientMessageInspector.BeforeSendRequest(Message& request, IClientChannel channel)
    Searching for solutions did not succeed, as the EventID of ajczh is not found on the web. Anyone had this problem already?
    Best Regards
    Michael

    Hi Linda
    thanks a lot for help.
    I modified the ULS-logging to include verbose entries. The problem is correlated to Excel Services, which are functioning quite well on our side. Our Topology consists of an application server, 2 WFE and an office app server. We are using the BI features
    of PowerPivot via an additional BI-SQL-server in SharePoint-mode.
    Right before the strange entry in the logs we are getting these:
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Web Front End 145c Verbose ServerSession.ExecuteWithSecurityContext: Before issuing a new request to server http://XXXXX028:32843/[guid]/ExcelService*.asmx ServerRequestCount: 1, AllServersRequestCount: 2, workerThreads: 395, completionPortThreads: 400
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Web Front End 8k3v Verbose ServerInfo.AcquireHealthCheckPriviliges: Acquired HealthCheck priviliges for server 'http://XXXXX028:32843/[guid]/ExcelService*.asmx'
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Excel Calculation Services d51n Medium MossHost.GetEndpointAddress: Server endpoint Uri: http://XXXXX028:32843/[guid]/ExcelService.asmx.
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Excel Calculation Services d51b Verbose MossHost.CreateServiceChannel<IExcelServiceSoap>: About to create service channel in Claims mode.
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Excel Calculation Services d51c Verbose MossHost.CreateServiceChannel<IExcelServiceSoap>: Service channel created.
    02.26.2014 10:42:45.02 w3wp.exe Excel Services Application Web Front End abpw Verbose ServerSession.GetHealthScoreCallback: About to send a GetHealthScore call to server http://XXXXX028:32843/[guid]/ExcelService*.asmx
    02.26.2014 10:42:45.02 w3wp.exe SharePoint Foundation Topology e5mc Medium WcfSendRequest: RemoteAddress: 'http://XXXXX028:32843/[guid]/ExcelService.asmx' Channel: 'Microsoft.Office.Excel.Server.CalculationServer.Proxy.IExcelServiceSoap' Action: 'http://schemas.microsoft.com/office/Excel/Server/WebServices/ExcelServerInternalService/ExcelServiceSoap/GetHealthScore' MessageId: 'urn:uuid:61212e7d-cf02-41ad-9876-2adf17ec2807'
    02.26.2014 10:42:45.02 w3wp.exe SharePoint Foundation Topology ajczh High Unable to create the service call usage entry. Exception details: System.ObjectDisposedException: Message is closed. at System.ServiceModel.Channels.BufferedMessage.get_Headers() at Microsoft.SharePoint.Administration.SPServiceCallUsageEntry.Create(Message message) at Microsoft.SharePoint.SPServiceContextBehavior.System.ServiceModel.Dispatcher.IClientMessageInspector.BeforeSendRequest(Message& request, IClientChannel channel)
    that's it, unfortunately. These entries are repeating every 15 seconds.
    Best Regards
    Michael

  • WSW0100: Unable to create Service

    Hi,
    I am trying to access a webservice(Location.jws) via a dataservice function(GetLocationResponse.ds)
    The primary objective of the webservice is to post a request to GlobalLocate, a location provider and obtain the user's location co-ordinates.
    On the test browser, I am able to test the webservice both by Test form and Text XML successfully.
    I have created GetLocationResponse.ds as explained in Chp 9 of Sample tutorial 1.
    However, when I execute the GetLocationResponse.ds in testview of DSP for the first time it works fine.
    On subsequent execution,I am encountering the following errors:
    com.bea.ld.wrappers.ws.exceptions.WSWrapperException: {bea-err}WSW0100: Unable to create Service {http://www.openuri.org/}Location of WSDL: http://localhost:7001/Location/controls/Location.jws?WSDL=.
         at com.bea.ld.wrappers.ws.exceptions.WSWrapperException.create(WSWrapperException.java:50)
         at weblogic.xml.query.exceptions.XQueryException.create(XQueryException.java:127)
         at weblogic.xml.query.exceptions.XQueryException.create(XQueryException.java:98)
         at weblogic.xml.query.exceptions.XQueryException.raise(XQueryException.java:575)
         at com.bea.ld.wrappers.ws.JAXRPCWebserviceAdapter.createService(JAXRPCWebserviceAdapter.java:341)
         at com.bea.ld.wrappers.ws.JAXRPCWebserviceAdapter.createNativeOperator(JAXRPCWebserviceAdapter.java:211)
         at weblogic.xml.query.operators.OperatorManager.getNativeOperator(OperatorManager.java:754)
         at com.bea.ld.wrappers.ws.JAXRPCWebserviceIterator.exec(JAXRPCWebserviceIterator.java:120)
         at com.bea.ld.wrappers.ws.JAXRPCWebserviceIterator.fetchNext(JAXRPCWebserviceIterator.java:103)
         at weblogic.xml.query.iterators.GenericIterator.hasNext(GenericIterator.java:134)
         at weblogic.xml.query.runtime.navigation.ChildPath.fetchNext(ChildPath.java:170)
         at weblogic.xml.query.iterators.GenericIterator.peekNext(GenericIterator.java:151)
         at weblogic.xml.query.runtime.node.Data.fetchNext(Data.java:83)
         at weblogic.xml.query.iterators.GenericIterator.next(GenericIterator.java:113)
         at weblogic.xml.query.runtime.constructor.AtomicElementConstructor.fetchNext(AtomicElementConstructor.java:129)
         at weblogic.xml.query.iterators.GenericIterator.peekNext(GenericIterator.java:151)
         at weblogic.xml.query.runtime.constructor.SuperElementConstructor.getPhase2(SuperElementConstructor.java:388)
         at weblogic.xml.query.runtime.constructor.PartMatElemConstructor.matEverything(PartMatElemConstructor.java:123)
         at weblogic.xml.query.runtime.constructor.PartMatElemConstructor.fetchNext(PartMatElemConstructor.java:197)
         at weblogic.xml.query.iterators.GenericIterator.peekNext(GenericIterator.java:151)
         at weblogic.xml.query.runtime.constructor.SuperElementConstructor.getPhase2(SuperElementConstructor.java:388)
         at weblogic.xml.query.runtime.constructor.PartMatElemConstructor.fetchNext(PartMatElemConstructor.java:229)
         at weblogic.xml.query.iterators.GenericIterator.next(GenericIterator.java:113)
         at weblogic.xml.query.xdbc.iterators.ItemIterator.fetchNext(ItemIterator.java:86)
         at weblogic.xml.query.iterators.GenericIterator.hasNext(GenericIterator.java:134)
         at weblogic.xml.query.runtime.sequences.Subsequence.fetchNext(Subsequence.java:101)
    Caused by: javax.xml.rpc.JAXRPCException: failed to create service
         at weblogic.webservice.core.rpc.ServiceImpl.getWebService(ServiceImpl.java:123)
         at weblogic.webservice.core.rpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:42)
         at com.bea.ld.wrappers.ws.JAXRPCWebserviceAdapter.createService(JAXRPCWebserviceAdapter.java:298)
         at com.bea.ld.wrappers.ws.JAXRPCWebserviceAdapter.createNativeOperator(JAXRPCWebserviceAdapter.java:211)
         at weblogic.xml.query.operators.OperatorManager.getNativeOperator(OperatorManager.java:754)
         at com.bea.ld.wrappers.ws.JAXRPCWebserviceIterator.exec(JAXRPCWebserviceIterator.java:120)
         at com.bea.ld.wrappers.ws.JAXRPCWebserviceIterator.fetchNext(JAXRPCWebserviceIterator.java:103)
         at weblogic.xml.query.iterators.GenericIterator.hasNext(GenericIterator.java:134)
         at weblogic.xml.query.runtime.navigation.ChildPath.fetchNext(ChildPath.java:170)
         at weblogic.xml.query.iterators.GenericIterator.peekNext(GenericIterator.java:151)
         at weblogic.xml.query.runtime.node.Data.fetchNext(Data.java:83)
         at weblogic.xml.query.iterators.GenericIterator.next(GenericIterator.java:113)
         at weblogic.xml.query.runtime.constructor.AtomicElementConstructor.fetchNext(AtomicElementConstructor.java:129)
         at weblogic.xml.query.iterators.GenericIterator.peekNext(GenericIterator.java:151)
         at weblogic.xml.query.runtime.constructor.SuperElementConstructor.getPhase2(SuperElementConstructor.java:388)
         at weblogic.xml.query.runtime.constructor.PartMatElemConstructor.matEverything(PartMatElemConstructor.java:123)
         at weblogic.xml.query.runtime.constructor.PartMatElemConstructor.fetchNext(PartMatElemConstructor.java:197)
         at weblogic.xml.query.iterators.GenericIterator.peekNext(GenericIterator.java:151)
         at weblogic.xml.query.runtime.constructor.SuperElementConstructor.getPhase2(SuperElementConstructor.java:388)
         at weblogic.xml.query.runtime.constructor.PartMatElemConstructor.fetchNext(PartMatElemConstructor.java:229)
         at weblogic.xml.query.iterators.GenericIterator.next(GenericIterator.java:113)
         at weblogic.xml.query.xdbc.iterators.ItemIterator.fetchNext(ItemIterator.java:86)
         at weblogic.xml.query.iterators.GenericIterator.hasNext(GenericIterator.java:134)
         at weblogic.xml.query.runtime.sequences.Subsequence.fetchNext(Subsequence.java:101)
         at weblogic.xml.query.iterators.GenericIterator.next(GenericIterator.java:113)
         at weblogic.xml.query.runtime.querycide.QueryAssassin.fetchNext(QueryAssassin.java:54)
         at weblogic.xml.query.iterators.GenericIterator.peekNext(GenericIterator.java:151)
         at weblogic.xml.query.runtime.qname.InsertNamespaces.fetchNext(InsertNamespaces.java:238)
         at weblogic.xml.query.iterators.GenericIterator.next(GenericIterator.java:113)
         at weblogic.xml.query.runtime.core.QueryIterator.fetchNext(QueryIterator.java:127)
         at weblogic.xml.query.iterators.GenericIterator.next(GenericIterator.java:113)
         at weblogic.xml.query.xdbc.iterators.ItemIterator.fetchNext(ItemIterator.java:86)
    Could you please help me resolve this?
    Thanks
    Vidya

    Sounds like the webservice is not available.
    Is http://localhost:7001/Location/controls/Location.jws?WSDL= the correct URL?
    Try putting http://localhost:7001/Location/controls/Location.jws?WSDL= in a browser and seeing if you get the wsdl back.

  • Unable to create or update the Custom Data Provider WIS 10853

    Hi,
    I have created the universe in designer then I created QAAWS. In the web intelligence tool, clicked for new document and then chosen web services under other data sources. After giving webservices detailed, I encountered the following error.
    Error from Personal Datasource : Unable to create or update the Custom Data Provider: invalid information retrieved while trying to get the structure. (CDS 105109). (WIS 10853)
    Can anyone help abt this problem? I wud very thankful for them.

    Hi,
    Can you post the wsdl URL. It would be of great help if we could have a look at the wsdl schema. Not all schemas are supported at the moment and hence the error. You can have a look at the limitations section in the documentation guide.
    Regards
    Rahul

  • Unable to create Web Service Model

    Hi All,
         I generated one wsdl file from Message Interfaces in Integration Repository of SAP XI.
    I am unable to create the model by using this wsdl file in Web Dynpro.
    I followed this approach
    In the NWDS > model > createModel > Import WebService Model > LocalFile System or URL > Here I am selecting wsdl file from local system.
    But the model is not created. Even it is not giving any message or error.
    Please suggest how to proceed.
    Regards
    Ashish.

    Hi Ashish,
      I think you missed something when u r creating the wsdl only.
    So do one thing check it again else create the wsdl again and try importing it. It should not be the problem else.I'm giving my wsdl file here..just check it with this. This takes the associate id as input and will give 3 outputs like email id and others as output. I dont think u can use this wsdl. You can simply compare this with ur wsdl and find out wat is the mistake..
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:p1="http://esaTwoRfcWebservice.satyam.com" name="Soap_OutBound_MI" targetNamespace="http://esaTwoRfcWebservice.satyam.com">
        <wsdl:types>
            <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://esaTwoRfcWebservice.satyam.com" targetNamespace="http://esaTwoRfcWebservice.satyam.com">
                <xsd:element name="Soap_In_MT" type="File_In_DT" />
                <xsd:element name="Soap_Out_FromRFC_MT" type="FileFromRFC1_DT" />
                <xsd:complexType name="FileFromRFC1_DT">
                    <xsd:annotation>
                        <xsd:appinfo source="http://sap.com/xi/TextID">
                        b598f031e79611d995c8e527ac121d2b
                        </xsd:appinfo>
                    </xsd:annotation>
                    <xsd:sequence>
                        <xsd:element name="Details" minOccurs="0" maxOccurs="unbounded">
                            <xsd:annotation>
                                <xsd:appinfo source="http://sap.com/xi/TextID">
                                fd9f6cc0e6f511d9aa5bdfdeac121d2b
                                </xsd:appinfo>
                            </xsd:annotation>
                            <xsd:complexType>
                                <xsd:sequence>
                                    <xsd:element name="Associate_Name" type="xsd:string">
                                        <xsd:annotation>
                                            <xsd:appinfo source="http://sap.com/xi/TextID">
                                            fd9f6cc1e6f511d9b0bddfdeac121d2b
                                            </xsd:appinfo>
                                        </xsd:annotation>
                                    </xsd:element>
                                    <xsd:element name="Associate_Mail_ID" type="xsd:string">
                                        <xsd:annotation>
                                            <xsd:appinfo source="http://sap.com/xi/TextID">
                                            fd9f6cc2e6f511d9c314dfdeac121d2b
                                            </xsd:appinfo>
                                        </xsd:annotation>
                                    </xsd:element>
                                    <xsd:element name="From_SecondRFC_Name" type="xsd:string">
                                        <xsd:annotation>
                                            <xsd:appinfo source="http://sap.com/xi/TextID">
                                            b598f030e79611d9a6abe527ac121d2b
                                            </xsd:appinfo>
                                        </xsd:annotation>
                                    </xsd:element>
                                </xsd:sequence>
                            </xsd:complexType>
                        </xsd:element>
                    </xsd:sequence>
                </xsd:complexType>
                <xsd:complexType name="File_In_DT">
                    <xsd:annotation>
                        <xsd:appinfo source="http://sap.com/xi/TextID">
                        15c39470e79611d9b14200096bf55f9d
                        </xsd:appinfo>
                    </xsd:annotation>
                    <xsd:sequence>
                        <xsd:element name="Associate_Id" type="xsd:string">
                            <xsd:annotation>
                                <xsd:appinfo source="http://sap.com/xi/TextID">
                                b09aa0c0e6f511d9912fdfdeac121d2b
                                </xsd:appinfo>
                            </xsd:annotation>
                        </xsd:element>
                    </xsd:sequence>
                </xsd:complexType>
            </xsd:schema>
        </wsdl:types>
        <wsdl:message name="Soap_In_MT">
            <wsdl:part name="Soap_In_MT" element="p1:Soap_In_MT" />
        </wsdl:message>
        <wsdl:message name="Soap_Out_FromRFC_MT">
            <wsdl:part name="Soap_Out_FromRFC_MT" element="p1:Soap_Out_FromRFC_MT" />
        </wsdl:message>
        <wsdl:portType name="Soap_OutBound_MI">
            <wsdl:operation name="Soap_OutBound_MI">
                <wsdl:input message="p1:Soap_In_MT" />
                <wsdl:output message="p1:Soap_Out_FromRFC_MT" />
            </wsdl:operation>
        </wsdl:portType>
        <wsdl:binding name="Soap_OutBound_MIBinding" type="p1:Soap_OutBound_MI">
            <soap:binding xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" style="document" transport="http://schemas.xmlsoap.org/soap/http" />
            <wsdl:operation name="Soap_OutBound_MI">
                <soap:operation xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" soapAction="http://sap.com/xi/WebService/soap1.1" />
                <wsdl:input>
                    <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal" />
                </wsdl:input>
                <wsdl:output>
                    <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal" />
                </wsdl:output>
            </wsdl:operation>
        </wsdl:binding>
        <wsdl:service name="Soap_OutBound_MIService">
            <wsdl:port name="Soap_OutBound_MIPort" binding="p1:Soap_OutBound_MIBinding">
                <soap:address xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" location="http://cgnsap12:8000/sap/xi/engine?type=entry&version=3.0&Sender.Service=ESA_SOAP_SERVICE&Interface=http%3A%2F%2FesaTwoRfcWebservice.satyam.com%5ESoap_OutBound_MI" />
            </wsdl:port>
        </wsdl:service>
    </wsdl:definitions>
    All the best.
    Regards,
    Sirisha.R.S

  • Unable to create SC from internal catalog (MDM)

    Hi All,
    We have issue were user is unable to create SC from internal catalog. User can access the catalog, however when trying to checkout he gets BLANK screen. This issue is with all the items for that catalog.
    Please advise.
    Thanks,
    Sunil

    Hi Sunil,
    What is your IE version ? If its IE 8.0 please check SAP note 1511147. This contains settings that are needed.
    Please also check the following note:
    1264879 - Transferred Catalog items get stuck at Inbound Handler
    Please maintain the ISO code of page on the webservice details as UTF-8 and retest. Also try, if you are using BYPASS_INBOUND_HANDLR parameter on the call structure with value = X delete this line and retest.
    Another issue is that if the user does not have access to the product category their items will not be added to the SC.
    I hope this helps,
    Lisa

  • Unable to create message factory for SOAP

    my problem:
    i want to create a message in a servlet, code below:
    java.lang.System.setProperty("javax.xml.soap.MessageFactory","javax.xml.soap.MessageFactory");
    MessageFactory messageFactory = MessageFactory.newInstance();
    because i use weblogic 7 and it set property "javax.xml.soap.MessageFactory" to "weblogic.webservice.core.soap.MessageFactoryImpl", so i change it back to "javax.xml.soap.MessageFactory" in code.
    run it and get error:
    server soap exception:javax.xml.soap.SOAPException: Unable to create message fac
    tory for SOAP: Provider javax.xml.soap.MessageFactory could not be instantiated:
    java.lang.InstantiationException
    i think maybe the provider is wrong or something else.
    waiting for your replay. thanks!

    i have found the light,
    the provider should be "com.sun.xml.messaging.saaj.soap.MessageFactoryImpl"
    and this class is include in saaj-ri.jar(jaxm 1.1).
    now it works:)

  • OSB - Couldn't create SOAP message due to exception: Unable to create StAX

    Hi,
    If I call 2 webservices via OSB 10Rg3 in quick succession I get the following fault on the second response :
    <May 6, 2010 5:25:14 PM CEST> <Error> <ALSB Logging> <BEA-000000> < [null, null, null, ERROR] <soapenv:Header xmlns:soapenv="http://schemas.xmlsoap.org/soap/e
    nvelope/"/><S:Body xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Fault xmlns:ns4="http://www.w3.org/2003/05/soap-envelope">
    <faultcode>S:Client</faultcode>
    <faultstring>Couldn't create SOAP message due to exception: Unable to create StAX reader or writer</faultstring>
    </S:Fault>
    </S:Body><con:fault xmlns:con="http://www.bea.com/wli/sb/context">
    <con:errorCode>BEA-380001</con:errorCode>
    <con:reason>Internal Server Error</con:reason>
    <con:location>
    <con:node>RouteToTestService</con:node>
    <con:path>response-pipeline</con:path>
    </con:location>
    </con:fault>>
    Any ideas what could cause this? The provider web services are working fine... and there is no problem if there is a long time delay between calling the 2 web services.

    It seems that one of the providers was mis-configured (the first service called) :
    HTTP Transport Configuration      
    Follow HTTP redirects      DISABLED
    Use Chunked Streaming Mode      ENABLED
    when I enabled the HTTP redirect then the problem went away...
    HTTP Transport Configuration      
    Follow HTTP redirects      ENABLED
    Use Chunked Streaming Mode      DISABLED

  • Unable to Load Database/Unable to create database.

    RoboHelp 6.0 on my PC is suddenly unable to open existing
    projects or create new ones. The problem is not in the projects, as
    other people can unzip the same set of files and open them with
    RoboHelp on their PCs.
    The Details:
    When attempting to open an existing project (any project
    whether in version control or not), I get the message " Open
    project was cancelled or the application was unable to load
    database for..."
    I found the article that says to delete the CPD and XPJ files
    and then to use the Edit option to open the HHP file so that
    RoboHelp will recreate the two files. When I try that, I get the
    message "Unable to create database. Check that the directory is not
    read-only." It's
    not read-only.
    When I attempt to create a new project, the application acts
    like it is going to create one, but it just creates a project
    folder without the new first topic and then repeats the New Project
    Wizard window that prompts for title, etc. It will keep creating
    folders and returning to this window in a loop without ever really
    creating a project.
    RoboSource Control is functioning normally, by the way.
    I have uninstalled and reinstalled RH 6 several times, and
    have even uninstalled RH 6 and installed to RH 5 just to see if it
    could open projects, which it does with no problems. After that
    test, I uninstalled RH 5 and reinstalled RH 6, only to encounter
    the same problem all over again.
    This started happening after I uninstalled other unrelated
    software and received a message that some Service Pack 2 files had
    been changed and prompting me to insert the Service Pack 2 CD,
    which I don't have. This is because our IT department pre-builds
    our systems from an image and then distributes job-specific
    applications over the network. IT tried repairing Service Pack 2,
    but that didn't work. I'd like to uninstall and reinstall Service
    Pack 2, but the IT person says it's too risky on a system that was
    built from an image.
    We would like to find out
    which files RoboHelp is looking for when it launches a
    project so we can replace those files manually. Does anyone
    know what they are or have another suggestion that might fix the
    problem?
    Otherwise, I am stuck having to allow IT to rebuild my
    system. That means reinstalling and reconfiguring everything on it,
    just as if I were upgrading to a new PC. This can take a whole work
    week. However, I have already spent close to a work week on this
    problem, so maybe rebuilding would save time in the long
    run.

    Problem Resolution = HHA.dll
    For anyone who might be interested in the resolution to this
    issue, we did rebuild my PC and reinstall all of my software. The
    RoboHelp installation "complained" that I did not have HTML Help
    Workshop on my system and told me to download version 1.4 from
    Microsoft. I did have HTML Help Workshop..it's in my programs list.
    (It's not listed in programs on my co-workers' PCs, and they were
    not having problems, by the way.) But to make RH happy, I
    uninstalled the workshop and tried to install the version from
    Microsoft. But a message informed me that I already had a newer
    version of the workshop on my system, and I was back where I
    started. I could open projects, but there were weird problems.
    Selecting Topic Properties was met with an error message, and when
    the properties window opened, I could only see whatever template
    was assigned (or none if the topic had lost its template), and
    there was an extra section for Oracle help.
    So I started dinking around in the registry to see if I could
    get rid of any traces of the workshop so I could install the
    version RH wanted or to find any other clues to my problem. Under
    HTMLHelpAuthor, there was a reference to an HHA.dll file located in
    C:\WINDOWS\system32...only the file did not exist on my system.
    (Remember that my original problem was that some Service Pack 2
    files were either modified or missing.) So I did a Google search on
    that file name and found out that HTML Help Workshop is included in
    newer Windows operating systems, but that people used to have to
    get HTML Help Workshop from Microsoft, and that some people had
    made the mistake of just putting the HHA.dll file into the
    C:WINDOWS\system32 folder without also installing HTML Help
    Workshop. At this point it was obvious that I needed the HHA.dll,
    so I got it from a co-worker's PC. (Looking at the registry
    entries, I can also see that my system was built with a slightly
    different version of the operating system than my co-workers have.)
    Adding the HHA file to my system solved the problem. All
    projects but one were fine; one was still exhibiting the strange
    behavior. I fixed it by going back to the RoboHelp 5 version of the
    project and re-converting it to RoboHelp 6.
    I suspect that if I had known about the HHA.dll file before
    we rebuilt the PC, I could have solved the problem without going
    through that painful process. That is why I thought I should post
    the solution even though it was after the rebuild.

Maybe you are looking for

  • SAP Router start issue

    Hello All We are facing the following issue while starting the SAP router. The router just hangs with the following statement in the command prompt. trcfile dev_rout no logging active upon providing trace level 3 and looking into the dev_route file,

  • Can I replace Processor on my hp mini 110-3012 tu ?

    Can I replace Processor on my hp mini 110-3012 tu ? Replace Better Processor then intel atom 

  • Freeze during 10.4 archive and install

    Hi. I'm doing an Archive and Install on my PBG4 and the installation was going fine until I put in the second disk (as requested) and it is now hung-up on "Installing GarageBand Application." It has been for about 30 minutes - "Writing files: 8% comp

  • Error when launching Flex 4.5 mobile app.

    Any ideas why I'm getting this? Its an AIR app, not Firefox, so ??? TypeError: Error #1009: Cannot access a property or method of a null object reference. at ominds::Firebug$/connect() at flashfirebug/allCompleteHandler()

  • Illegal start to expression - java applet

    Hi Guys, this code is for a hangman game which will be in an applet. When I try putting the buttons in init, I'm getting an "illegal start of expression" for each button. Can someone tell me what I'm doing wrong? Cheers, * @(#)Hangman.java * Sample A