Unable to make web exports

Hi, all, i have the following installation:
BP Repository Server & BP Publisher in the same machine, the database is in a second machine (in an Oracle 10g db)
the communication between BP Architect and the repository works OK,
but when i want to create a web export i got the message "the procedure was canceled" and "unable to create export". In the window of the Tomcat process execution i see this exception:
Client receives this exception as CORBA::UNKNOWN
operation name: "createDataTransfer"
id: iiop
local address: 10.10.10.123:17059
remote address: 10.10.10.25:4232
com.idsscheer.aris.businesspublisher.dao.ADAOException: ADAOException
at com.idsscheer.aris.businesspublisher.dao.ADAOSystemFacade.installSystemIfNotExistent(ADAOSystemFacade.java:103)
could be because i don't have a direct connect between the BP Publisher and the database and it is trying to use the Olite default database.
Any thoughts?
thanx in advance
José

Hi Jose,
can you please check he config file for server.xml with respect to hostname/ip and also check the corresponding entry under catalina? Please make sure they are fine and restart the server.
Regards,
JMehta

Similar Messages

  • Export ever get a fix? Can Bridge make web galleries?

    Did export panel ever get fixed for CS5? I currently use LR for web galleries. Was curious if Bridge can make web galleries.

    Funny that Bridge does not have the beautiful web gallery choices that LR has.
    It's not funny.  ;-)  I tried long and hard to push for parity.
    I know tons of people use LR for many things. I only use it presently for it amazing web gallery making!
    (everything else, I'm a PS and Bridge guy)
    Yup, me, too.  The output aspects of Bridge (Web and PDF) still need serious work.  I've submitted a long list of requests. It's frustrating to have to use multiple major apps from the same company because of a gross deficiency in one - especially when that app is the "parent app," so to speak.  Maybe in CS6...
    --Rich

  • Muse unable to make a preview or export to HTML.

    Muse unable to make a preview or export to HTML.

    I stil not able to export. This is a new screenshot:

  • Html link to specific photo in flash web export

    I want to send someone links to specific images in my flash web export. I know I can direct them to the source image file, but I want them to see it in the flash export interface. Is there a way I can make a duplicate copy of the index.html and edit the start image and save as another name, or would I have to copy and alter the flash file?

    You can't do a direct link to the image witht the built-in Flash movie. If you need to do this often, consider getting the SlideShowPro web engine and switching on "permalinks".
    But to resolve your existing problem, it is fiddly. I assume you want the rest of the web gallery to work, so copy the index.html file, and then look for a folder called resources\mediaGroupData and make a copy of the file group.xml, so you have two xml files in that folder. What you would need to do is edit this "copy.xml" so it only lists your picture. Then back to your copy of index.html and replace any references to group.xml with copy.xml. I told you it was fiddly!
    John

  • Unable to create Web i reports in Win 7 64 bit OS

    Hi,
        I have WIN 7 64 bit installed on my Laptop. I am unable to create Web I reports in this machine. Does any one know why?
    BR, Nanda

    Hi Nanda Kishore,
    Webi reports does not show in your local system,because webi reports acces from repository through URL,if you export your Bex Query(Universe) to repository,it is possible to see.but you local system is usefull for stand alone applications.
    you can see only web intelligece rich client and Desk intelligence.
    All the best
    Praveen

  • Trouble creating web exports in BPA

    I´m currently trying to create a web export in BPA, for a database where I applied a specific filter and where I customized som models and attributes.
    At the end of the exporting process, while "transfering attributes", the process stops with an error.
    I created another database, where I applied the same filter, and the export is successful, I can view the results in Publisher.
    Thanks.
    Ana Telha

    Have you tried creating the export from scratch? Also, have you tried with any of the different profiles? I believe BPA ships with Profiles 1,2,3 which are all slightly different. Does your export fail using every profile?
    I also know from bitter experience, that if you perfom an export and then change any aspect of the export profle (for instance) you are unable to update any existing exports successfully.

  • Unable to make adobe player work

    I have downloaded version 11 of player numerous times because I keep getting requests, and nothing will play on my computer.  The message says version is running, but I cannot watch any videos, as same request for latest version shows.

    It is an adobe flash player running on Vista.
    Date: Sat, 6 Apr 2013 21:59:55 -0700
    From: [email protected]
    To: [email protected]
    Subject: Unable to make adobe player work
        Re: Unable to make adobe player work
        created by Pat Willener in Adobe Reader - View the full discussion
    There is no such thing as "adobe player".  There is Adobe Flash Player, Adobe Shockwave Player, Adobe Media Player - all different products. We also need to know your operating system and web browser.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5213224#5213224
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5213224#5213224
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5213224#5213224. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Unable to access Web Method after deploying into the server

    Hi,
    I'm Unable to access Web method after deploying into the server.
    My Web method is 
    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json )]
    public object getOwners()
    DataTable dt = _qbObj.returnDDLData("employeedetails", "EmpID", "EmpFirstName");
    if (dt == null)
    return new { Result = "Error", Options = "Error getting data" };
    string[] strAttributes = { "ID", "Name" };
    string[] strColName = { "EmpID", "EmpFirstName" };
    List<SolOwners> lstObject = convertToList(dt, strAttributes, strColName, new SolOwners());
    var owners = lstObject.Select(c => new { DisplayText = c.Name, Value = c.ID });
    return new { Result = "OK", Options = owners };
    When I.m accessing that method after deploying into server, I got following error.
    System.InvalidOperationException: There was an error generating the XML document. ---> System.InvalidOperationException: &lt;&gt;f__AnonymousType9`2[System.String,System.Collections.Generic.IEnumerable`1[&lt;&gt;f__AnonymousTypea`2[System.String,System.String]]] cannot be serialized because it does not have a parameterless constructor.
    at System.Xml.Serialization.TypeScope.GetTypeDesc(Type type, MemberInfo source, Boolean directReference, Boolean throwOnError)
    at System.Xml.Serialization.XmlSerializationWriter.CreateUnknownTypeException(Type type)
    at System.Xml.Serialization.XmlSerializationWriter.WriteTypedPrimitive(String name, String ns, Object o, Boolean xsiType)
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriter1.Write1_Object(String n, String ns, Object o, Boolean isNullable, Boolean needType)
    at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationWriter1.Write71_anyType(Object o)
    at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
    --- End of inner exception stack trace ---
    at System.Xml.Serialization.XmlSerializer.Serialize(XmlWriter xmlWriter, Object o, XmlSerializerNamespaces namespaces, String encodingStyle, String id)
    at System.Xml.Serialization.XmlSerializer.Serialize(TextWriter textWriter, Object o, XmlSerializerNamespaces namespaces)
    at System.Web.Services.Protocols.XmlReturnWriter.Write(HttpResponse response, Stream outputStream, Object returnValue)
    at System.Web.Services.Protocols.WebServiceHandler.WriteReturns(Object[] returnValues)
    at System.Web.Services.Protocols.WebServiceHandler.Invoke()Please help me to solve that issue.Thank you.

    Hi Vani,
    What project are you developing? According to your code looks like an Asp.Net application? Am i right?
    If so , please repost in  ASP.Net Forum
    http://forums.asp.net for more efficient responses.
    This forum is discuss problems of C# development.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I want to make a export to a pdf wich has to excluding blanc pages

    Hallo
    When you want to create a pdf without any blanc pages you can do this by using the printerinterface.
    But now i want to do so this with the export to a pdf and i dont have this option
    Sorry for my english

    Hi Sukrit
                Thanks for your reaction
                The problem i have is the next one
                We are working with a web-2-print solution which is Indesign Server based
    The version we use there is 5.5 at this moment and i will be version 6 soon
    When the customer creates a new document the server will make a pdf using a distiller joboptions.
    So any blank pages will be created also
    I don’t have problems of deleting this using acrobat reader or professional
    But the customer is afraid that his users will not do so
    One of the solutions is that I let the system send the created document to my one email and make the correction and send
    it then to the customer. But then they have to wait.
    So I am searching for a solution  in my document or in a distiller job
    I hope you understand what I mean because my English is not so good as it shoot be
    Kind regards
    Piet Schmidt
    Van: sukritd15 
    Verzonden: vrijdag 20 februari 2015 12:15
    Aan: Piet Schmidt
    Onderwerp:  I want to make a export to a pdf wich has to excluding blanc pages
    I want to make a export to a pdf wich has to excluding blanc pages
    created by sukritd15 <https://forums.adobe.com/people/sukritd15>  in Creating, Editing & Exporting PDFs - View the full discussion <https://forums.adobe.com/message/7213384#7213384>

  • When ever I try to export to Perfect Effects 8 a DNG Photo this is the Error message "Unable to complete the export. One or more files could not be found" Any one know how to fix this?

    When ever I try to export to Perfect Effects 8 a DNG Photo this is the Error message "Unable to complete the export. One or more files could not be found" Any one know how to fix this?@

    Adobe web chat come up with a solution.
    Open the PP project.
    Export your sequence or project as a Final Cut Pro XML file.
    Set up a new PP project.
    Import the Final Cut Pro XML file.
    This will get you back up an running.
    Since getting back to editing this project I have found that some things will be lost or change in using XML:
    You will lose position key framing, black video clips, dissolve fx, audio levels, audio dynamic fx, the ability to open a multi camera clip and change the camera view.
    You will keep cut points, crop fx.
    Not perfect but only took a couple of hours to save 3 days work.

  • "Unable to create web dynpro callable object implementation" - GP error

    Good day.
    I've created a GP process and transported it to the test system. But when I try to start the process I get an error on the screen: Error while processing the item; it cannot be displayed. When I look to the logs I can see the following exception:
    Unable to create web dynpro callable object implementation.
    java.lang.Exception
    at com.sap.caf.eu.gp.ui.co.exec.wd.COExecWD.execute(COExecWD.java:294)
    at com.sap.caf.eu.gp.ui.co.exec.wd.wdp.InternalCOExecWD.execute(InternalCOExecWD.java:171)
    at com.sap.caf.eu.gp.ui.co.exec.wd.COExecWDInterface.execute(COExecWDInterface.java:122)
    at com.sap.caf.eu.gp.ui.co.exec.wd.wdp.InternalCOExecWDInterface.execute(InternalCOExecWDInterface.java:134)
    at com.sap.caf.eu.gp.ui.co.exec.wd.wdp.InternalCOExecWDInterface$External.execute(InternalCOExecWDInterface.java:249)
    at com.sap.caf.eu.gp.ui.act.container.VContainer.onPlugFromDispatcher(VContainer.java:391)
    at com.sap.caf.eu.gp.ui.act.container.wdp.InternalVContainer.wdInvokeEventHandler(InternalVContainer.java:167)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.navigate(ClientApplication.java:826)
    at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.navigate(ClientComponent.java:881)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doNavigation(WindowPhaseModel.java:498)
    at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:144)
    at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:321)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:733)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:668)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
    at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
    at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860)
    at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220)
    at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1289)
    at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:356)
    at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:549)
    at com.sap.portal.pb.PageBuilder.wdDoApplicationStateChange(PageBuilder.java:303)
    at com.sap.portal.pb.wdp.InternalPageBuilder.wdDoApplicationStateChange(InternalPageBuilder.java:197)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doApplicationStateChange(DelegatingComponent.java:139)
    at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.doApplicationStateChange(ClientComponent.java:667)
    at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doApplicationStateChange(ClientApplication.java:537)
    at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:120)
    at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:321)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666)
    at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250)
    at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
    at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    It doesn't make any sense to me... I would appreciate for any help.

    Hello
    We are facing exact similar issue when we checked the logs.
    Could you help us as we are new to GP.
    What steps you followed to resolve this error.
    Regards
    aparna

  • Renaming files at web export time?

    I have a particular file naming scheme for my Lightroom catalog (as I'm sure we all do), it works really well for keeping all the shots in my entire library organized in the filesystem... but of course it doesn't really take collections into consideration.  It seems to me that the web module is really made for collections (or even smaller sub-collection selection sets), and that "web collection" order is not necessarily related to file sequence, chronological order, import time, etc... so is there a way to rename the photos at web export time making use of some kind of "web collection sequence" metadata?

    Our goal in designing the output from the web module was to make the resulting gallery when viewed in a web browser the best experience possible.  Therefore, we didn't spend any effort allowing the user to customize the way in which that exported gallery gets built internally.
    That said, it may be possible for someone who writes their own gallery to specify a new naming scheme for the photos.
    Why does it matter to you what the filenames on the web gallery photos are?  Most users are going to view them in the context of the accompanying flash or HTML files, and won't be aware of what the filenames are behind the scenes.  (I'm curious about how you're using the web module that this matters )
    - Andy
    Lightroom Engineer

  • Newly activated Palm Treo 700wx unable to make calls

    Just activated an old Treo 700wx and I am able to use the internet but unable to make calls or receive text messages. Just ends the call right after it began. Tried hard reset, soft reset, re-activating... nothing.

    I suggest you go to the HP - Palm web site and to the community forums there. You will see a thread how Syniverse, a subsidiary of Altel, ATT, Verizon, et. al changed their coding schemes and that the Palm Treo 700WX can't accomodate the new scheme. I contacted the CEO of Verizon Wireless and they fixed it for me only.

  • Unable to make master project containing sub-projects using Project Online PWA (Cloud)

    Can anybody help? I tried a lot of navigations in Project Online PWA (not project server) but still unable to make master project containing sub-projects using Project Online PWA (Cloud)

    Hi John,
    It isn't possible to do this in the Project Web App either in Project Online or Project Server - you will need to use Project Professional 2013 and connect to your Project Online instance, or the subscription version, Project Pro for Office 365.
    Best regards,
    Brian Smith
    Blog |
    Facebook | Twitter | Posting is provided "AS IS" with no warranties, and confers no rights.
    Project Server TechCenter |
    Project Developer Center |
    Project Server Help | Project Product Page

  • Geting error msg "Unable to start Web browser for U" while open Siebel Icon

    hi,
    I have Successfully Installed Siebel 8.1 on Windows 7 Operating System After this when i am trying to open "Siebel Financial Services - ENU" ICON i am getting Error Message that "Unable to start Web browser for your Session".
    I have Internet Explorer 8 on my Windows 7 operating system.
    Waiting for ur Quick Reply.
    THANKING YOU!
    Best Regards
    Oradb.

    Hi,
    Which web browser you were trying to open the siebel application. You should make that web browser as a default browser for your OS.
    Open IE- Tools - Internet Options - Programs - Make Default Browser.
    Try this and let me know the results.
    Regards,
    Joseph

Maybe you are looking for