SAP Business Objects 4.2 Integration
I need help on how to migrate our java codes with regards to connecting to business objects. It was recently migrated from version 3 to 4.2. We are using java 8 running on WAS 9. I have tried updating the jars based from the forums that I have read but I am encountering this error.
org.apache.axis2.AxisFault: login The exception is of a known origin. (Error: FWB 00008)
at com.businessobjects.dsws.Consumer.dswsExceptionDocToAxisFault(Unknown Source)
at com.businessobjects.dsws.session.Session.login(Unknown Source)
at com.bms.reacts.bobj.BOWSClient.getInstance(BOWSClient.java:138)
at com.bms.reacts.ui.reports.action.GetDynaReportPromptsAction.getBoWsClient(GetDynaReportPromptsAction.java:674)
at com.bms.reacts.ui.reports.action.GetDynaReportPromptsAction.execute(GetDynaReportPromptsAction.java:153)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1234)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:778)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:477)
at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:143)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:96)
at com.bms.sidetrack.DebugFilter.doFilter(DebugFilter.java:103)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:969)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1109)
at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:82)
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:961)
at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817)
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:294)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:532)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:318)
at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:88)
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1892)
Please see below codes:
public static synchronized BOWSClient getInstance()
throws AxisFault, NamingException, MalformedURLException {
BOWSClient bowsclient = null;
if (bowsclient == null) {
bowsclient = new BOWSClient();
}
try {
// create connection
Connection boConnection;
boConnection = new Connection(getBoConURL());
int bobjServerTimout = Integer.parseInt(System.getProperty("BOBJ_SRVR_TOUT")) *60*1000;
boConnection.setTimeOut(bobjServerTimout);
// provide authentication credentials
EnterpriseCredential boCredential = EnterpriseCredential.Factory.newInstance();
//username, pwd and urls are loaded from database table appl_parm during login
boCredential.setLogin(System.getProperty("BOBJ_UNAME"));
boCredential.setPassword(ReactsUtil.doROT13Convert(System.getProperty("BOBJ_PWD")));
boCredential.setAuthType("secEnterprise");
if (bowsclient.bowsSession == null) {
// create session
bowsclient.bowsSession = new Session(boConnection);
SessionInfo boSI = bowsclient.bowsSession.login(boCredential);
bowsclient.bowsSession.resetSessionTimeOut();
if (log.isDebugEnabled())
log.debug("BOWS Conn established successfully.");
}
} catch (AxisFault e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
} catch (NamingException e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
} catch (MalformedURLException e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
}
return bowsclient;
}
I am not sure if this is an error on Java or BO. Please let me know the steps on how to integrate it properly.
java-8 business-objects business-objects-sdk
add a comment |
I need help on how to migrate our java codes with regards to connecting to business objects. It was recently migrated from version 3 to 4.2. We are using java 8 running on WAS 9. I have tried updating the jars based from the forums that I have read but I am encountering this error.
org.apache.axis2.AxisFault: login The exception is of a known origin. (Error: FWB 00008)
at com.businessobjects.dsws.Consumer.dswsExceptionDocToAxisFault(Unknown Source)
at com.businessobjects.dsws.session.Session.login(Unknown Source)
at com.bms.reacts.bobj.BOWSClient.getInstance(BOWSClient.java:138)
at com.bms.reacts.ui.reports.action.GetDynaReportPromptsAction.getBoWsClient(GetDynaReportPromptsAction.java:674)
at com.bms.reacts.ui.reports.action.GetDynaReportPromptsAction.execute(GetDynaReportPromptsAction.java:153)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1234)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:778)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:477)
at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:143)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:96)
at com.bms.sidetrack.DebugFilter.doFilter(DebugFilter.java:103)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:969)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1109)
at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:82)
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:961)
at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817)
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:294)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:532)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:318)
at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:88)
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1892)
Please see below codes:
public static synchronized BOWSClient getInstance()
throws AxisFault, NamingException, MalformedURLException {
BOWSClient bowsclient = null;
if (bowsclient == null) {
bowsclient = new BOWSClient();
}
try {
// create connection
Connection boConnection;
boConnection = new Connection(getBoConURL());
int bobjServerTimout = Integer.parseInt(System.getProperty("BOBJ_SRVR_TOUT")) *60*1000;
boConnection.setTimeOut(bobjServerTimout);
// provide authentication credentials
EnterpriseCredential boCredential = EnterpriseCredential.Factory.newInstance();
//username, pwd and urls are loaded from database table appl_parm during login
boCredential.setLogin(System.getProperty("BOBJ_UNAME"));
boCredential.setPassword(ReactsUtil.doROT13Convert(System.getProperty("BOBJ_PWD")));
boCredential.setAuthType("secEnterprise");
if (bowsclient.bowsSession == null) {
// create session
bowsclient.bowsSession = new Session(boConnection);
SessionInfo boSI = bowsclient.bowsSession.login(boCredential);
bowsclient.bowsSession.resetSessionTimeOut();
if (log.isDebugEnabled())
log.debug("BOWS Conn established successfully.");
}
} catch (AxisFault e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
} catch (NamingException e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
} catch (MalformedURLException e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
}
return bowsclient;
}
I am not sure if this is an error on Java or BO. Please let me know the steps on how to integrate it properly.
java-8 business-objects business-objects-sdk
You'll need to provide a lot more information in order to get help here. At least the code that is throwing the error, the full stack trace, and which libraries you're using.
– Joe
Nov 20 at 14:41
Hi I have added the code where the error occured and the full stack trace.
– sheeilala
Nov 20 at 14:56
add a comment |
I need help on how to migrate our java codes with regards to connecting to business objects. It was recently migrated from version 3 to 4.2. We are using java 8 running on WAS 9. I have tried updating the jars based from the forums that I have read but I am encountering this error.
org.apache.axis2.AxisFault: login The exception is of a known origin. (Error: FWB 00008)
at com.businessobjects.dsws.Consumer.dswsExceptionDocToAxisFault(Unknown Source)
at com.businessobjects.dsws.session.Session.login(Unknown Source)
at com.bms.reacts.bobj.BOWSClient.getInstance(BOWSClient.java:138)
at com.bms.reacts.ui.reports.action.GetDynaReportPromptsAction.getBoWsClient(GetDynaReportPromptsAction.java:674)
at com.bms.reacts.ui.reports.action.GetDynaReportPromptsAction.execute(GetDynaReportPromptsAction.java:153)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1234)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:778)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:477)
at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:143)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:96)
at com.bms.sidetrack.DebugFilter.doFilter(DebugFilter.java:103)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:969)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1109)
at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:82)
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:961)
at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817)
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:294)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:532)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:318)
at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:88)
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1892)
Please see below codes:
public static synchronized BOWSClient getInstance()
throws AxisFault, NamingException, MalformedURLException {
BOWSClient bowsclient = null;
if (bowsclient == null) {
bowsclient = new BOWSClient();
}
try {
// create connection
Connection boConnection;
boConnection = new Connection(getBoConURL());
int bobjServerTimout = Integer.parseInt(System.getProperty("BOBJ_SRVR_TOUT")) *60*1000;
boConnection.setTimeOut(bobjServerTimout);
// provide authentication credentials
EnterpriseCredential boCredential = EnterpriseCredential.Factory.newInstance();
//username, pwd and urls are loaded from database table appl_parm during login
boCredential.setLogin(System.getProperty("BOBJ_UNAME"));
boCredential.setPassword(ReactsUtil.doROT13Convert(System.getProperty("BOBJ_PWD")));
boCredential.setAuthType("secEnterprise");
if (bowsclient.bowsSession == null) {
// create session
bowsclient.bowsSession = new Session(boConnection);
SessionInfo boSI = bowsclient.bowsSession.login(boCredential);
bowsclient.bowsSession.resetSessionTimeOut();
if (log.isDebugEnabled())
log.debug("BOWS Conn established successfully.");
}
} catch (AxisFault e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
} catch (NamingException e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
} catch (MalformedURLException e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
}
return bowsclient;
}
I am not sure if this is an error on Java or BO. Please let me know the steps on how to integrate it properly.
java-8 business-objects business-objects-sdk
I need help on how to migrate our java codes with regards to connecting to business objects. It was recently migrated from version 3 to 4.2. We are using java 8 running on WAS 9. I have tried updating the jars based from the forums that I have read but I am encountering this error.
org.apache.axis2.AxisFault: login The exception is of a known origin. (Error: FWB 00008)
at com.businessobjects.dsws.Consumer.dswsExceptionDocToAxisFault(Unknown Source)
at com.businessobjects.dsws.session.Session.login(Unknown Source)
at com.bms.reacts.bobj.BOWSClient.getInstance(BOWSClient.java:138)
at com.bms.reacts.ui.reports.action.GetDynaReportPromptsAction.getBoWsClient(GetDynaReportPromptsAction.java:674)
at com.bms.reacts.ui.reports.action.GetDynaReportPromptsAction.execute(GetDynaReportPromptsAction.java:153)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:790)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1234)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:778)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:477)
at com.ibm.ws.webcontainer.servlet.ServletWrapperImpl.handleRequest(ServletWrapperImpl.java:178)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.invokeTarget(WebAppFilterChain.java:143)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:96)
at com.bms.sidetrack.DebugFilter.doFilter(DebugFilter.java:103)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:197)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:90)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:969)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.invokeFilters(WebAppFilterManager.java:1109)
at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:82)
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:961)
at com.ibm.ws.webcontainer.WSWebContainer.handleRequest(WSWebContainer.java:1817)
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:294)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:532)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:318)
at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:88)
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1892)
Please see below codes:
public static synchronized BOWSClient getInstance()
throws AxisFault, NamingException, MalformedURLException {
BOWSClient bowsclient = null;
if (bowsclient == null) {
bowsclient = new BOWSClient();
}
try {
// create connection
Connection boConnection;
boConnection = new Connection(getBoConURL());
int bobjServerTimout = Integer.parseInt(System.getProperty("BOBJ_SRVR_TOUT")) *60*1000;
boConnection.setTimeOut(bobjServerTimout);
// provide authentication credentials
EnterpriseCredential boCredential = EnterpriseCredential.Factory.newInstance();
//username, pwd and urls are loaded from database table appl_parm during login
boCredential.setLogin(System.getProperty("BOBJ_UNAME"));
boCredential.setPassword(ReactsUtil.doROT13Convert(System.getProperty("BOBJ_PWD")));
boCredential.setAuthType("secEnterprise");
if (bowsclient.bowsSession == null) {
// create session
bowsclient.bowsSession = new Session(boConnection);
SessionInfo boSI = bowsclient.bowsSession.login(boCredential);
bowsclient.bowsSession.resetSessionTimeOut();
if (log.isDebugEnabled())
log.debug("BOWS Conn established successfully.");
}
} catch (AxisFault e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
} catch (NamingException e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
} catch (MalformedURLException e) {
log.error("Exception message is " + e.getMessage(), e);
throw e;
}
return bowsclient;
}
I am not sure if this is an error on Java or BO. Please let me know the steps on how to integrate it properly.
java-8 business-objects business-objects-sdk
java-8 business-objects business-objects-sdk
edited Nov 20 at 14:54
asked Nov 20 at 14:15
sheeilala
11
11
You'll need to provide a lot more information in order to get help here. At least the code that is throwing the error, the full stack trace, and which libraries you're using.
– Joe
Nov 20 at 14:41
Hi I have added the code where the error occured and the full stack trace.
– sheeilala
Nov 20 at 14:56
add a comment |
You'll need to provide a lot more information in order to get help here. At least the code that is throwing the error, the full stack trace, and which libraries you're using.
– Joe
Nov 20 at 14:41
Hi I have added the code where the error occured and the full stack trace.
– sheeilala
Nov 20 at 14:56
You'll need to provide a lot more information in order to get help here. At least the code that is throwing the error, the full stack trace, and which libraries you're using.
– Joe
Nov 20 at 14:41
You'll need to provide a lot more information in order to get help here. At least the code that is throwing the error, the full stack trace, and which libraries you're using.
– Joe
Nov 20 at 14:41
Hi I have added the code where the error occured and the full stack trace.
– sheeilala
Nov 20 at 14:56
Hi I have added the code where the error occured and the full stack trace.
– sheeilala
Nov 20 at 14:56
add a comment |
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394968%2fsap-business-objects-4-2-integration%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53394968%2fsap-business-objects-4-2-integration%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You'll need to provide a lot more information in order to get help here. At least the code that is throwing the error, the full stack trace, and which libraries you're using.
– Joe
Nov 20 at 14:41
Hi I have added the code where the error occured and the full stack trace.
– sheeilala
Nov 20 at 14:56