BusinessObjects Board

0x80004003 Object reference not set to an inst Live Office

To Fix the following error 0x80004003 Object reference not set to an instance of an object with using Live office

1.You need tomcat for live office to work
2.Open the options in live office (Word Excel PowerPoint > Business objects > Options)
3.Click webservice tab change

to
4.http://:8080/dswsbobje/services/session
5.copy this link paste it in IE and if you do not see the following on the page and get a 404 error

session
Hi there, this is an AXIS service!
Perhaps there will be a form for invoking the service here…

6.Do the following this is based if you installed BO on your c:\ drive if it is on a different drive change all the paths to your drive letter
7.Check if the following Folders/files are available
a.C:\Program Files\Business Objects\Tomcat\webapps[b]dswsbobje[/b]
b.C:\Program Files\Business Objects\Tomcat\work\Catalina\localhost[b]dswsbobje[/b]
8.If so delete them and do the following
9.Check if the following war file is available
10.C:\Program Files\Business Objects\BusinessObjects Enterprise 11.5\Web Services\en\dswsbobje.war
11.Check if dswsbobjewar.xml file is available in
12.C:\Program Files\Business Objects\Tomcat\conf\Catalina\localhost
13.Stop tomcat
14.Copy the file (dswsbobjewar.xml) from another server or Rename/Create a dswsbobjewar.xmlA file in this directory if you copy it or created it
15.edit the file and add the following
16.
17.Save the file
18.Start Tomcat
19.Rename the file back to dswsbobjewar.xml
20.Wait a while It will redeploy the required files
21.Test live office


FrikkieNagel (BOB member since 2006-12-20)

Moved to the Live Office forum.


Nick Daniels :uk: (BOB member since 2002-08-15)

I get the same Object reference error but my architecture uses Oracle App Server. Is Tomcat required?

Second question, is the webservices server typically the app server or BOE server? I know this can vary by specific site, but in my case the app server and BOE server are separate boxes.


bension (BOB member since 2005-09-01)

What ports need to be open on the firewall to get this working?


Schmitty (BOB member since 2006-11-16)

Good question – do i need 6400 open for the login to the CMS?


mtbhowie :us: (BOB member since 2005-06-08)

This still didn’t help me – SP3 using Tomcat. Options are correct, web services page tests correctly?

What else could be the issue?


mtbhowie :us: (BOB member since 2005-06-08)

I have resolved for Excel, still crapping out in Power point – but issue was versioning. Server is R2 (SP3), client was from R2 SP2 Productivity Pack. Once I upgrade the client components with R2 SP3, it worked.

Can you only bring in rows and columns? How about charts? Not interested in Excel, but would love to represent WebI graphs in PowerPoint or Word?


mtbhowie :us: (BOB member since 2005-06-08)

I have the same error when running this simple C# script with Microsoft Visual Studio

public override void Input0_ProcessInput(Input0Buffer Buffer)
{
while (Buffer.NextRow())
{
Input0_ProcessInputRow(Buffer);
}

    if (Buffer.EndOfRowset())
    {
        ResultBuffer.SetEndOfRowset();
    }
}

public override void Input0_ProcessInputRow(Input0Buffer Row)
{

    string [] arr = Row.MatNumber.Split(',');
    foreach (string str in arr)
    {
        ResultBuffer.AddRow();
            ResultBuffer.MatNumber = str;
    }
 }

can you please help me
:hb: just freaking out a little bit


RanzenbS (BOB member since 2015-08-24)