Webflow - WS66700043

Hello Everybody,
When I executed the Workflow WS66700043 (WS90000001 copy), in the step "web activity" Sendrequest_Getoffer, that starts another Workflow WS66700045 (WS90000003 copy) , occurred the following error in swi2_freq transaction:
Executing remote workitem   - The WF-XML response received contains the exception 300 check_response_exception - The WF-XML response received contains the exception 300
In the Web Activity I have been "WF-XML Version 1.0 <Coding 03>"
and the
URL: HTTP://stbrsp07.softtek.com.br:8000/SAP/BC/WORKFLOW_XML/?~localkey=WS90000003
I need your help...
Thanks,
Marcelo.

Hi Sriram,
When I test the URL, in the Wizard Icon the following page is open : http://stbrsp07.softtek.com.br:8000/index.html this page is "SAP J2EE Engine Start Page"  and the subtitle is "SAP NetWeaver"
               "SAP Web Application Server"
This web page also some informations about Sap Library, System Information, User Management, Sap NetWeaver Administration, and others...
But, The problems error continues....
Thanks,
Marcelo.
Edited by: Marcelo Elias de Souza on Dec 5, 2008 6:42 PM

Similar Messages

  • How do I get to the request object in a webflow.

    How do I get to the request object in a webflow.
    I created a input process and one function it needs to do is create a cookie.
    Problem is I don't have a response object.
    How do I create/get the response object so I can create a cookie.
    Thanks
    Michael C Ford
    ------------------ Code Line ------------------------------------
    public Object process(HttpServletRequest req, Object requestContext)
    throws ProcessingException
    // get the pipeline and namespace info for the process
    PipelineSession pSession = null;
    String namespace = null;
    String username = req.getRemoteUser();
    pSession = getPipelineSession(req);
    namespace = getCurrentNamespace(pSession);
    /* ***** DO THE INITIAL CREATE OF THE BEAN *** */
         try {
              Properties props = new Properties();
              props.put(
                   Context.INITIAL_CONTEXT_FACTORY,
                   "weblogic.jndi.WLInitialContextFactory");
              Context ctx = new InitialContext(props);
              Object homeObject = ctx.lookup("com.??.??PortalMgr");
              SeechangePortalMgrHome seechangePortalMgrHome =
              (SeechangePortalMgrHome) javax.rmi.PortableRemoteObject.narrow(
                                                      homeObject,
                                                      SeechangePortalMgrHome.class);
              SeechangePortalMgr portalMgr = seechangePortalMgrHome.create();
    /* Set the initail user */
    portalMgr.setUser(username);          
              UserRuntime userRuntime = (UserRuntime)portalMgr.getRuntimeObject();
              System.out.print("Run Time User is " + userRuntime.getUserName());
              System.out.print("Run Time User is " + userRuntime.getOrgSeq());
    // ** cookies for Actuate XXX=(customer sequence ID), YYY=ZZZ is a dummy per
    their requirement
              Cookie cCustSeqNumber = new Cookie("XXX",userRuntime.getOrgSeq());
              Cookie cPassword = new Cookie("YYY","ZZZ");
              cCustSeqNumber.setPath("/");
              cPassword.setPath("/");
              ??response.addCookie(cCustSeqNumber);
              ??response.addCookie(cPassword);          
         } catch (Exception ee) {
              System.out.print("Unable to create Portal Manager" + ee);
    // at this point we add the logic to produce the bean
    return "success";

    Thanks
    Just what I needed, except I needed to caste response.
    Michael C
    "Daniel Selman" <[email protected]> wrote:
    Michael,
    // get the HttpServletResponse from the HttpServletRequest
    HttpServletResponse response =
    equest.getAttribute( WebflowConstants.HTTP_SERVLET_RESPONSE );
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    response.addCookie(cCustSeqNumber);
    response.addCookie(cPassword);
    You HAVE the HttpServletRequest...
    public Object process(HttpServletRequest req, ObjectrequestContext)
    throws ProcessingExceptionMake sense?
    Dan
    "michael C Ford" <[email protected]> wrote in message
    news:[email protected]...
    How can I get to the response this way ?
    this just stored the response as an attribute did it now ?
    If I don't have it, how can I use it in a setAttribute ?
    Sorry just a little slow
    I can't do this can I ?
    request.setAttribute(WebflowConstants.HTTP_SERVLET_RESPONSE,response);
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    response.addCookie(cCustSeqNumber);
    response.addCookie(cPassword);
    "Daniel Selman" <[email protected]> wrote:
    Michael,
    I found this handy snippet in our code:
    // Put the httpServletResponse into the request, this is done
    in
    case IPs want to
    // use the response to deposit cookies. The IPs maynot howeverwrite
    // anything to the response as this will cause an
    IllegalStateException
    request.setAttribute(WebflowConstants.HTTP_SERVLET_RESPONSE,
    response);
    So, the HttpServletResponse is bound into the HttpServletRequest usingthe
    key, WebflowConstants.HTTP_SERVLET_RESPONSE.
    Magic!
    Sincerely,
    Daniel Selman
    "michael C Ford" <[email protected]> wrote in message
    news:[email protected]...
    How do I get to the request object in a webflow.
    I created a input process and one function it needs to do is create
    a
    cookie.
    Problem is I don't have a response object.
    How do I create/get the response object so I can create a cookie.
    Thanks
    Michael C Ford
    ------------------ Code Line ------------------------------------
    public Object process(HttpServletRequest req, Object
    requestContext)
    throws ProcessingException
    // get the pipeline and namespace info for the process
    PipelineSession pSession = null;
    String namespace = null;
    String username = req.getRemoteUser();
    pSession = getPipelineSession(req);
    namespace = getCurrentNamespace(pSession);
    /* ***** DO THE INITIAL CREATE OF THE BEAN *** */
    try {
    Properties props = new Properties();
    props.put(
    Context.INITIAL_CONTEXT_FACTORY,
    "weblogic.jndi.WLInitialContextFactory");
    Context ctx = new InitialContext(props);
    Object homeObject = ctx.lookup("com.??.??PortalMgr");
    SeechangePortalMgrHome seechangePortalMgrHome =
    (SeechangePortalMgrHome) javax.rmi.PortableRemoteObject.narrow(
    homeObject,
    SeechangePortalMgrHome.class);
    SeechangePortalMgr portalMgr = seechangePortalMgrHome.create();
    /* Set the initail user */
    portalMgr.setUser(username);
    UserRuntime userRuntime = (UserRuntime)portalMgr.getRuntimeObject();
    System.out.print("Run Time User is " + userRuntime.getUserName());
    System.out.print("Run Time User is " + userRuntime.getOrgSeq());
    // ** cookies for Actuate XXX=(customer sequence ID), YYY=ZZZ isa
    dummy per
    their requirement
    Cookie cCustSeqNumber = new
    Cookie("XXX",userRuntime.getOrgSeq());
    Cookie cPassword = new Cookie("YYY","ZZZ");
    cCustSeqNumber.setPath("/");
    cPassword.setPath("/");
    ??response.addCookie(cCustSeqNumber);
    ??response.addCookie(cPassword);
    } catch (Exception ee) {
    System.out.print("Unable to create Portal Manager" + ee);
    // at this point we add the logic to produce the bean
    return "success";

  • How can I forward to a Webflow URL in a portlet?

    I am trying to get a JSP in a portlet to forward to a Webflow URL,
    without much success...
    The following code produces the ubiquitous "Functionality temporarily
    unavailable" message, presumably because jsp:forward chokes on the
    absolute URL:
    <c:set var="url">
    <portlet:createWebflowURL event="next"/>
    </c:set>
    <%
    // convert to a scripting variable for the jsp:forward tag
    String url = (String) pageContext.getAttribute("url");
    %>
    <jsp:forward page="<%=url%>"/>
    Using c:redirect fares little better. This code produces an empty
    portlet:
    <c:set var="url">
    <portlet:createWebflowURL event="next"/>
    </c:set>
    <c:redirect url="${url}"/>
    The closest I've been able to get is to have the user click a link to
    get to the next page, but I'd like to have an automatic forward rather
    than introduce another mouse click:
    ">
    Click to continue...</A>
    Am I missing something obvious? Any help would be appreciated...
    Thanks,
    -- Craig

    Craig - I'm trying to do something very similar - build a waiting page into the
    flow. I've got a support case open (to get the BEA recommended approach) but so
    far have had no luck. Let me know if you've found the answer - or are still struggling.
    Cheers,
    Niall
    [email protected] (Craig Coffin) wrote:
    I am trying to get a JSP in a portlet to forward to a Webflow URL,
    without much success...
    The following code produces the ubiquitous "Functionality temporarily
    unavailable" message, presumably because jsp:forward chokes on the
    absolute URL:
    <c:set var="url">
    <portlet:createWebflowURL event="next"/>
    </c:set>
    <%
    // convert to a scripting variable for the jsp:forward tag
    String url = (String) pageContext.getAttribute("url");
    %>
    <jsp:forward page="<%=url%>"/>
    Using c:redirect fares little better. This code produces an empty
    portlet:
    <c:set var="url">
    <portlet:createWebflowURL event="next"/>
    </c:set>
    <c:redirect url="${url}"/>
    The closest I've been able to get is to have the user click a link to
    get to the next page, but I'd like to have an automatic forward rather
    than introduce another mouse click:
    ">
    Click to continue...</A>
    Am I missing something obvious? Any help would be appreciated...
    Thanks,
    -- Craig

  • How to install WebFlow Navigation Manager

    Can any one help me please. I have copied the wfnm.jar file into tomcat 5.5 bin directory. I wanted to confirm if iam doing right thing to use the WebFlow Navigation Managerframe work.
    Thank you.
    Any reply will be appreciated.

    Hi you will get the "wfnm-sample.war" with the wfnm download and place it under your "webapps" of your tomcat.
    Regards
    Arunkumar.H.G

  • Help on getting started with Spring MVC, WebFlow; Where can it be applied ?

    I'm an individual programmer, developer and I see a huge demand (at the corporate level) for the frameworks: Spring, Spring MVC, webflow, and Hibernate. Popular today: Spring MVC, webflow, GWT.
    I've been going through the tutorials, and the technology looks awesome ! What I would like to know, is.. It's used in corporate sites, why not for smaller sites. How can I apply these frameworks in building websites ?
    I can't imaging doing any kind of serious website building without a modern CMS or Portal framework (whether in Java/php-opensource), And yes, MVC gives you the validation and authentication hooks to be used.
    The spring framework, with it's extensive scope, is a bit overwhelming, and implies that there could be a significant amount of architecture, design and planning time needed before starting implementation on a project
    All the demo's on Spring, cover some elementary, contrived example.
    If I learn these technologies (and I'm well on my way), how do I put them into practice, and in what context (no pun intented) do I use them ? I don't want to rebuild a CMS system, but I'd like to employ these frameworks effectively.

    user1944443 wrote:
    The spring framework, with it's extensive scope, is a bit overwhelming, and implies that there could be a significant amount of architecture, design and planning time needed before starting implementation on a projectYes, usually there is. Unless you're using the frameworks to build a home page for your kittens. Then you usually don't need to put that much effort into it.
    All the demo's on Spring, cover some elementary, contrived example.I'm sure you realize that they have to. There's no "follow these examples and you'll become a competent programmer" method of learning invented yet and frameworks usually need to document the basic cases extensively.
    If I learn these technologies (and I'm well on my way), how do I put them into practice, and in what context (no pun intented) do I use them ? I don't want to rebuild a CMS system, but I'd like to employ these frameworks effectively.You'll just need to come up with a project you'll be interested in finishing or at least developing for a while.
    I'm not sure whether I managed to answer your question or not, but if anything was left unclear, just ask.

  • Webflow doesn't work with Portal 7.0

    Hi, there
    We are migrating from Portal 4.0 to 7.0.
    After migration, the webflow which we were using for
    web application doesn't work anymore.
    We use datasync app to find that within Master Repository
    there is no webflow for our web app, but the webflow for 'tools'
    does exists. BTW, we double check the Oracle DB, all the webflow
    were synced to there by EBCC7.0.
    In the datasync console, the Schema URI filter seems to be not
    correct. In Registered Data Repositories, we can not find correct
    Webflow Data Repository.
    I attached the exception from console:
    <Aug 14, 2002 11:43:54 AM EDT> <Error> <Webflow> <401200> <Error while parsing
    uri /esdi/application, path null, query s
    tring null - Webflow XML does not exist, is not loaded properly, or you do not
    have a configuration-error-page defined.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The configuration-error-page
    node was not found in the
    webflow xml file. for webapp [esdi], namespace [sampleapp_main]. While trying
    to display CONFIGURATION ERROR: [Exception
    [com.bea.p13n.appflow.exception.ConfigurationException: Bad Namespace - namespace
    [sampleapp_main] is not available for
    webflow execution. Make sure the [sampleapp_main.wf] file is deployed in webapp
    [esdi].]],]
    Any help would be great appreciated!
    Harry
    [email protected]

    Harry,
    This sounds very similar to a customer that had not fully completed the
    upgrade to 7.0 - they had a 4.0 copy of the WebflowServlet JAR within their
    application. Please triple-check that ALL your JARs (taglibs, web apps etc.)
    are the 7.0 versions.
    Sincerely.
    Daniel Selman
    "Harry Yu" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi, there
    We are migrating from Portal 4.0 to 7.0.
    After migration, the webflow which we were using for
    web application doesn't work anymore.
    We use datasync app to find that within Master Repository
    there is no webflow for our web app, but the webflow for 'tools'
    does exists. BTW, we double check the Oracle DB, all the webflow
    were synced to there by EBCC7.0.
    In the datasync console, the Schema URI filter seems to be not
    correct. In Registered Data Repositories, we can not find correct
    Webflow Data Repository.
    I attached the exception from console:
    <Aug 14, 2002 11:43:54 AM EDT> <Error> <Webflow> <401200> <Error whileparsing
    uri /esdi/application, path null, query s
    tring null - Webflow XML does not exist, is not loaded properly, or you donot
    have a configuration-error-page defined.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The
    configuration-error-page> node was not found in the> webflow xml file. for webapp [esdi, namespace [sampleapp_main]. Whiletrying
    to display CONFIGURATION ERROR: [Exception
    [com.bea.p13n.appflow.exception.ConfigurationException: Bad Namespace -
    namespace> [sampleapp_main is not available for
    webflow execution. Make sure the [sampleapp_main.wf] file is deployed inwebapp
    [esdi].]],]
    Any help would be great appreciated!
    Harry
    [email protected]

  • Multiple webflow namespaces in portal 8.1

    I have two portlets(projects & contacts), both use webflow/pipelines and pipeline
    sessions. When I only display one portlet everything appears to work as before.
    When I display both, one using a namespace of 'projects' the other 'contacts',
    only the last portlet is being displayed correctly. It appears that the first
    pipeline session goes away. Is this a supported feature? What is the workaround
    for this issue?

    I believe this behavior was changed in Acrobat 9.

  • Portal 7-8 Migration - WebFlow errors

    Hey -
    I am migrating a Portal 7 app to 8. What do I do with the webflows? I have run
    all the migration steps as per the document. However when I run the Portal, I
    get an error -
    <Dec 8, 2003 4:22:03 PM PST> <Error> <netuix> <BEA-420042> <The control com.bea.
    netuix.servlets.controls.window.WebflowPortlet could not be rendered properly
    du
    e to the following error:
    java.lang.NullPointerException
    <Dec 8, 2003 4:22:03 PM PST> <Error> <netuix> <BEA-420043> <A javax.servlet.Serv
    letException occurred while rendering JSP /framework/skeletons/sptdotcom/webflow
    portlet.jsp, for control com.bea.netuix.servlets.controls.window.WebflowPortlet
    indicating the exception most likely originated in the JSP page. The error was:
    javax.servlet.ServletException: com.bea.portal.model.PortletIdentifier The under
    lying cause was: java.lang.NoClassDefFoundError: com.bea.portal.model.PortletIde
    ntifier
    java.lang.NoClassDefFoundError: com.bea.portal.model.PortletIdentifier
    <Dec 8, 2003 4:22:03 PM PST> <Error> <netuix> <BEA-420043> <A javax.servlet.Serv
    letException occurred while rendering JSP /framework/skeletons/sptdotcom/webflow
    portlet.jsp, for control com.bea.netuix.servlets.controls.window.WebflowPortlet
    indicating the exception most likely originated in the JSP page. The error was:
    javax.servlet.ServletException: Request context is null - this page MUST be call
    ed via webflow The underlying cause was: javax.servlet.jsp.JspException: Request
    context is null - this page MUST be called via webflow
    javax.servlet.jsp.JspException: Request context is null - this page MUST be call
    ed via webflow
    Anyone seen this?
    Thanks
    Kunal

    hi,
    remve all the tempprary xml files stored like delete .inetrnal and .workshop and .wlnotdlete folders .... and files from .page-generated-struts* .. then rebuold and deploy ur application ...
    hope it will work
    thanks

  • Navigating from pipeline component to a IP in another webflow

    Hi folks,
    I am stuck with a issue here. Please help me out if you know the answer. Thanks
    in advance.
    I have a requirement where I have cart webflow and a shipping webflow. I have
    a PC called continue shopping which should take me to an IP in shipping. is this
    possible. can I navigate to another webflow to a IP from a PC in this webflow.
    If so how. Please respond if you know the answer to this.
    Thanks
    Srini

    Thanks for the reply tanya!
    I am using proxy node now and it takes me to the next webflow but none of the
    events in the second webflow work. Do you have a way around that ?
    Thanks in advance
    Srini
    "tanya" <[email protected]> wrote:
    >
    have you tried using a proxy node?
    it's described in the following:
    http://e-docs.bea.com/wlp/docs70/dev/navigate.htm#1011383
    -tanya
    "srini" <[email protected]> wrote:
    Hi folks,
    I am stuck with a issue here. Please help me out if you know the answer.
    Thanks
    in advance.
    I have a requirement where I have cart webflow and a shipping webflow.
    I have
    a PC called continue shopping which should take me to an IP in shipping.
    is this
    possible. can I navigate to another webflow to a IP from a PC in this
    webflow.
    If so how. Please respond if you know the answer to this.
    Thanks
    Srini

  • UWL remove entries in uwl.webflow. systemalias (low)

    Dear Sirs,
    We re-registered our UWL system in the portal, which had not been done in a while. 
    We have a custom task items, which has worked for several months. The handling for this task has been controlled by a custom (medium) config file (launches SAP transaction in new window, when subject is clicked) 
    After we re-registered the following lines are added to our uwl.webflow..xml (low) file.
    <ItemType name="uwl.task.webflow.decision.TS91100XXX.ALIAS" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
    <ItemTypeCriteria systemId="P10300" externalType="TS91100XXX" connector="WebFlowConnector"></ItemTypeCriteria>
    The effect of this is that we no longer can click on the subject and get a transaction in a new window. When it is clicked now we are given a decision view.
    My question is, how can I remove the lines which was added by our re-registering?, and get it back the way it where.
    I guess it is not advisable to hack directly in the low files, which will we overwritten on next re-register anyway.
    best regards,
    Jørgen

    Hello Darren,
    I appricate your help.
    From file
    uwl.TS164
    , which is a file I have made and uploaded with medium configuration.
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE UWLConfiguration PUBLIC '-//SAP//UWL1.0//EN' 'uwl_configuration.dtd'
      >
    <UWLConfiguration version="1.0">
      <ItemTypes>
        <ItemType name="uwl.task.webflow.TS91100164.ERP" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="Click" executionMode="default">
          <ItemTypeCriteria systemId="P10300" externalType="TS91100164" connector="WebFlowConnector"></ItemTypeCriteria>
          <Actions>     
         <Action name="Click" groupAction="no" handler="SAPTransactionLauncher" referenceBundle="lauch_sap" returnToDetailViewAllowed="yes" launchInNewWindow="yes">
               <Properties>
            <Property name="p_nosecm" value="X"></Property>
            <Property name="display_order_priority" value="5"></Property>
               </Properties>
              <Descriptions default=""></Descriptions>
            </Action>
    </Actions>
        </ItemType>
      </ItemTypes>
    </UWLConfiguration>
    In the
    uwl.webflow.ERP (Low)
    , the following lines where added after I registered the system again. The task TS911000164 was made after we registered for the first time, and it worked as I wanted as wanted until the lines below was added to this file following a re-registration.
    <ItemType name="uwl.task.webflow.decision.TS91100164.P10300" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
          <ItemTypeCriteria systemId="P10300" externalType="TS91100164" connector="WebFlowConnector"></ItemTypeCriteria>
        </ItemType>
    So want I need to do is to somehow makes the above lines dissapear from the uwl.webflow.ERP file.
    regards,
    Jørgen

  • URGENT ...Webflow Config Error...

    Hi all,
    i am getting following Webflow Configuration Error, after i run the portal server
    for some time....there is no configuration changes in the portal application...
    Configuration Error Message:
    ClassCastException was throw while trying to cast class[com.bea.p13n.appflow.webflow.internal.IPProcessor}
    to [{1}]
    attached is the complete configurationerror.jsp i get when i try to access the portal
    site...
    following is the messages from the console....
    <Apr 18, 2002 12:30:34 PM EDT> <Info> <HTTP> <[WebAppServletContext(6286071,hpo,/hpo)]
    portalwebflow: destroy>
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <HTTP> <[WebAppServletContext(6286071,hpo,/hpo)]
    portalwebflow: init>
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Data Repository of type "Webflow Data Repository" created with persistence manager
    of type "com.bea.p13n.appflow.webflow.internal.WebflowPersistenceManager".>
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Adding notified DR on: Master Data Repository = Webflow Data Repository>
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Starting data sync [DR: Master Data Repository]>
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing SyncRequestMessage [DR: Webflow Data Repository]>
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing SyncRequestResultMessage [DR: Master Data Repository]>
    <Apr 18, 2002 12:30:36 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataSyncMessage [DR: Webflow Data Repository]>
    <Apr 18, 2002 12:30:36 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: /webapps/hpo/email.wf,
    Action: CREATE]>
    <Apr 18, 2002 12:30:36 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: /webapps/hpo/portal.wf,
    Action: CREATE]>
    <Apr 18, 2002 12:30:37 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: /webapps/hpo/security.wf,
    Action: CREATE]>
    <Apr 18, 2002 12:30:37 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: /webapps/hpo/tools.wf,
    Action: CREATE]>
    Can somebody help we how can i get rid of this error....
    <Apr 18, 2002 12:30:37 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: /webapps/hpo/user_account.wf,
    Action: CREATE]>
    <Apr 18, 2002 12:30:37 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: /webapps/hpo/worldnews.wf,
    Action: CREATE]>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Data sync complete (OK) [DR: Master Data Repository]>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Data Repository of type "Webflow Extensions Data Repository" created with persistence
    manager of type "com.bea.p13n.appflow.webflow.internal.WebflowExtensionPersistenceManager".>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Adding notified DR on: Master Data Repository = Webflow Extensions Data Repository>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Starting data sync [DR: Master Data Repository]>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing SyncRequestMessage [DR: Webflow Extensions Data Repository]>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing SyncRequestResultMessage [DR: Master Data Repository]>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataSyncMessage [DR: Webflow Extensions Data Repository]>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Extensions Data Repository, URI: /webapps/hpo/webflow-extensions.wfx,
    Action: CREATE]>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> <Application: paradigmDev;
    Data sync complete (OK) [DR: Master Data Repository]>
    <Apr 18, 2002 12:30:39 PM EDT> <Info> <HTTP> <[WebAppServletContext(6286071,hpo,/hpo)]
    *.jsp: destroy>
    <Apr 18, 2002 12:30:39 PM EDT> <Info> <HTTP> <[WebAppServletContext(6286071,hpo,/hpo)]
    *.jsp: init>
    it is urgent
    thanks
    Vijay
    [att1.html]

    Thanks Dan,
    To add the Email and worldnews portlets (of the sample avitek financial portal example),
    I added the sampleportal.jar to the home directory of my enterprise app and added
    as a module to my application's DD(application.xml).like this...
    <module>
    <ejb>sampleportal.jar</ejb>
    </module>
    and deployed/targeted.
    and i added following class files from sampleportal
    \applications\sampleportal\sampleportal\WEB-INF\classes\examples\sampleportal\email\ip\AbstractEmailIP.class
    \applications\sampleportal\sampleportal\WEB-INF\classes\examples\sampleportal\email\ip\EmailConfigIP.class
    \applications\sampleportal\sampleportal\WEB-INF\classes\examples\sampleportal\email\ip\EmailIP.class
    \applications\sampleportal\sampleportal\WEB-INF\classes\examples\sampleportal\profile\*.*
    (subdir)
    to my new portal application's corresponding directories...
    I know it is not perfect but....it did'nt gave me any error at that time...
    I used all the default configurations(same as the stockportal).
    thanks for any corrections...
    thanks
    Vijay
    "Daniel Selman" <[email protected]> wrote:
    >
    >
    Vijay,
    I noticed these two lines in your console output:
    <Apr 18, 2002 12:30:39 PM EDT> <Info> <HTTP> =
    <[WebAppServletContext(6286071,hpo,/hpo)]
    *.jsp: destroy>=20
    <Apr 18, 2002 12:30:39 PM EDT> <Info> <HTTP> =
    <[WebAppServletContext(6286071,hpo,/hpo)]
    *.jsp: init>=20
    It looks like the Server is reinitializing your WebApp, any idea why? =
    This might account for the ClassCastException, if the server has dropped
    =
    the ClassLoader for the WebApp.
    Could you give us any more code/details/config to help debug this?
    Thanks,
    Daniel Selman
    "Vijay Bujula" <[email protected]> wrote in message =
    news:[email protected]...
    Hi all,
    i am getting following Webflow Configuration Error, after i run the =
    portal server
    for some time....there is no configuration changes in the portal =
    application...
    Configuration Error Message:
    ClassCastException was throw while trying to cast =
    class[com.bea.p13n.appflow.webflow.internal.IPProcessor}
    to [{1}]
    attached is the complete configurationerror.jsp i get when i try to =
    access the portal
    site...
    following is the messages from the console....
    <Apr 18, 2002 12:30:34 PM EDT> <Info> <HTTP> =
    <[WebAppServletContext(6286071,hpo,/hpo)]
    portalwebflow: destroy>=20
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <HTTP> =
    <[WebAppServletContext(6286071,hpo,/hpo)]
    portalwebflow: init>=20
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Data Repository of type "Webflow Data Repository" created with =
    persistence manager
    of type =
    "com.bea.p13n.appflow.webflow.internal.WebflowPersistenceManager".>=20
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Adding notified DR on: Master Data Repository =3D Webflow Data =
    Repository>=20
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Starting data sync [DR: Master Data Repository]>=20
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing SyncRequestMessage [DR: Webflow Data Repository]>=20
    <Apr 18, 2002 12:30:35 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing SyncRequestResultMessage [DR: Master Data Repository]>=20
    <Apr 18, 2002 12:30:36 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataSyncMessage [DR: Webflow Data Repository]>=20
    <Apr 18, 2002 12:30:36 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: =
    /webapps/hpo/email.wf,
    Action: CREATE]>=20
    <Apr 18, 2002 12:30:36 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: =
    /webapps/hpo/portal.wf,
    Action: CREATE]>=20
    <Apr 18, 2002 12:30:37 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: =
    /webapps/hpo/security.wf,
    Action: CREATE]>=20
    <Apr 18, 2002 12:30:37 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: =
    /webapps/hpo/tools.wf,
    Action: CREATE]>=20
    Can somebody help we how can i get rid of this error....
    <Apr 18, 2002 12:30:37 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: =
    /webapps/hpo/user_account.wf,
    Action: CREATE]>=20
    <Apr 18, 2002 12:30:37 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Data Repository, URI: =
    /webapps/hpo/worldnews.wf,
    Action: CREATE]>=20
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Data sync complete (OK) [DR: Master Data Repository]>=20
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Data Repository of type "Webflow Extensions Data Repository" created =
    with persistence
    manager of type =
    "com.bea.p13n.appflow.webflow.internal.WebflowExtensionPersistenceManager=
    ".>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Adding notified DR on: Master Data Repository =3D Webflow Extensions =
    Data Repository>
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Starting data sync [DR: Master Data Repository]>=20
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing SyncRequestMessage [DR: Webflow Extensions Data =
    Repository]>=20
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing SyncRequestResultMessage [DR: Master Data Repository]>=20
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataSyncMessage [DR: Webflow Extensions Data Repository]>=20
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Processing DataItemMessage [DR: Webflow Extensions Data Repository, =
    URI: /webapps/hpo/webflow-extensions.wfx,
    Action: CREATE]>=20
    <Apr 18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application: paradigmDev;
    Data sync complete (OK) [DR: Master Data Repository]>=20
    <Apr 18, 2002 12:30:39 PM EDT> <Info> <HTTP> =
    <[WebAppServletContext(6286071,hpo,/hpo)]
    *.jsp: destroy>=20
    <Apr 18, 2002 12:30:39 PM EDT> <Info> <HTTP> =
    <[WebAppServletContext(6286071,hpo,/hpo)]
    *.jsp: init>=20
    it is urgent=20
    thanks=20
    Vijay
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML><HEAD>
    <META content=3D"text/html; charset=3Diso-8859-1" =
    http-equiv=3DContent-Type>
    <META content=3D"MSHTML 5.00.3315.2870" name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY bgColor=3D#ffffff>
    <DIV><FONT face=3DArial size=3D2>Vijay,</FONT></DIV>
    <DIV> </DIV>
    <DIV><FONT face=3DArial size=3D2>I noticed these two lines in your =
    console=20
    output:</FONT></DIV>
    <DIV> </DIV>
    <DIV><FONT face=3DArial size=3D2><Apr 18, 2002 12:30:39 PM EDT> =
    <Info>=20
    <HTTP> <[WebAppServletContext(6286071,hpo,/hpo)]<BR>*.jsp: =
    destroy>=20
    <BR><Apr 18, 2002 12:30:39 PM EDT> <Info> <HTTP>=20
    <[WebAppServletContext(6286071,hpo,/hpo)]<BR>*.jsp: init> =
    <BR><BR><BR>It=20
    looks like the Server is reinitializing your WebApp, any idea why? This
    =
    might=20
    account for the ClassCastException, if the server has dropped the =
    ClassLoader=20
    for the WebApp.</FONT></DIV>
    <DIV> </DIV>
    <DIV><FONT face=3DArial size=3D2>Could you give us any more =
    code/details/config to=20
    help debug this?</FONT></DIV>
    <DIV> </DIV>
    <DIV><FONT face=3DArial size=3D2>Thanks,</FONT></DIV>
    <DIV> </DIV>
    <DIV><FONT face=3DArial size=3D2>Daniel Selman</FONT></DIV>
    <DIV><FONT face=3DArial size=3D2> </DIV></FONT>
    <BLOCKQUOTE=20
    style=3D"BORDER-LEFT: #000000 2px solid; MARGIN-LEFT: 5px; MARGIN-RIGHT:
    =
    0px; PADDING-LEFT: 5px; PADDING-RIGHT: 0px">
    <DIV>"Vijay Bujula" <<A=20
    href=3D"mailto:[email protected]">[email protected]</A>> wrote in =
    message <A=20
    =
    href=3D"news:[email protected]">news:3cbefb08$1@newsgroups2.=
    bea.com</A>...</DIV><BR>Hi=20
    all,<BR>i am getting following Webflow Configuration Error, after i =
    run the=20
    portal server<BR>for some time....there is no configuration changes in
    =
    the=20
    portal application...<BR><BR>Configuration Error=20
    Message:<BR>ClassCastException was throw while trying to cast=20
    class[com.bea.p13n.appflow.webflow.internal.IPProcessor}<BR>to=20
    [{1}]<BR><BR><BR>attached is the complete configurationerror.jsp i get
    =
    when i=20
    try to access the portal<BR>site...<BR><BR>following is the messages =
    from the=20
    console....<BR><BR><Apr 18, 2002 12:30:34 PM EDT> <Info>=20
    <HTTP> =
    <[WebAppServletContext(6286071,hpo,/hpo)]<BR>portalwebflow:=20
    destroy> <BR><Apr 18, 2002 12:30:35 PM EDT> <Info> =
    <HTTP>=20
    <[WebAppServletContext(6286071,hpo,/hpo)]<BR>portalwebflow: =
    init>=20
    <BR><Apr 18, 2002 12:30:35 PM EDT> <Info> <Data=20
    Synchronization> <Application: paradigmDev;<BR>Data Repository =
    of type=20
    "Webflow Data Repository" created with persistence manager<BR>of type=20
    "com.bea.p13n.appflow.webflow.internal.WebflowPersistenceManager".>
    =
    <BR><Apr 18, 2002 12:30:35 PM EDT> <Info> <Data=20
    Synchronization> <Application: paradigmDev;<BR>Adding notified =
    DR on:=20
    Master Data Repository =3D Webflow Data Repository> <BR><Apr 18,
    =
    2002=20
    12:30:35 PM EDT> <Info> <Data Synchronization> =
    <Application:=20
    paradigmDev;<BR>Starting data sync  [DR: Master Data =
    Repository]>=20
    <BR><Apr 18, 2002 12:30:35 PM EDT> <Info> <Data=20
    Synchronization> <Application: paradigmDev;<BR>Processing=20
    SyncRequestMessage  [DR: Webflow Data Repository]> <BR><Apr
    =
    18,=20
    2002 12:30:35 PM EDT> <Info> <Data Synchronization>=20
    <Application: paradigmDev;<BR>Processing =
    SyncRequestResultMessage =20
    [DR: Master Data Repository]> <BR><Apr 18, 2002 12:30:36 PM =
    EDT>=20
    <Info> <Data Synchronization> <Application:=20
    paradigmDev;<BR>Processing DataSyncMessage  [DR: Webflow Data=20
    Repository]> <BR><Apr 18, 2002 12:30:36 PM EDT> <Info>
    =
    <Data=20
    Synchronization> <Application: paradigmDev;<BR>Processing=20
    DataItemMessage  [DR: Webflow Data Repository, URI:=20
    /webapps/hpo/email.wf,<BR>Action: CREATE]> <BR><Apr 18, 2002 =
    12:30:36 PM=20
    EDT> <Info> <Data Synchronization> <Application:=20
    paradigmDev;<BR>Processing DataItemMessage  [DR: Webflow Data =
    Repository,=20
    URI: /webapps/hpo/portal.wf,<BR>Action: CREATE]> <BR><Apr 18, =
    2002=20
    12:30:37 PM EDT> <Info> <Data Synchronization> =
    <Application:=20
    paradigmDev;<BR>Processing DataItemMessage  [DR: Webflow Data =
    Repository,=20
    URI: /webapps/hpo/security.wf,<BR>Action: CREATE]> <BR><Apr 18,
    =
    2002=20
    12:30:37 PM EDT> <Info> <Data Synchronization> =
    <Application:=20
    paradigmDev;<BR>Processing DataItemMessage  [DR: Webflow Data =
    Repository,=20
    URI: /webapps/hpo/tools.wf,<BR>Action: CREATE]> <BR><BR><BR>Can =
    somebody=20
    help we how can i get rid of this error....<BR><BR><Apr 18, 2002 =
    12:30:37=20
    PM EDT> <Info> <Data Synchronization> <Application:=20
    paradigmDev;<BR>Processing DataItemMessage  [DR: Webflow Data =
    Repository,=20
    URI: /webapps/hpo/user_account.wf,<BR>Action: CREATE]> <BR><Apr
    =
    18, 2002=20
    12:30:37 PM EDT> <Info> <Data Synchronization> =
    <Application:=20
    paradigmDev;<BR>Processing DataItemMessage  [DR: Webflow Data =
    Repository,=20
    URI: /webapps/hpo/worldnews.wf,<BR>Action: CREATE]> <BR><Apr 18,
    =
    2002=20
    12:30:38 PM EDT> <Info> <Data Synchronization> =
    <Application:=20
    paradigmDev;<BR>Data sync complete (OK)  [DR: Master Data =
    Repository]>=20
    <BR><Apr 18, 2002 12:30:38 PM EDT> <Info> <Data=20
    Synchronization> <Application: paradigmDev;<BR>Data Repository =
    of type=20
    "Webflow Extensions Data Repository" created with =
    persistence<BR>manager of=20
    type=20
    =
    "com.bea.p13n.appflow.webflow.internal.WebflowExtensionPersistenceManager=
    ".><BR><BR><Apr=20
    18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization>
    =
    <Application: paradigmDev;<BR>Adding notified DR on: Master Data =
    Repository=20
    =3D Webflow Extensions Data Repository><BR><BR><Apr 18, 2002 =
    12:30:38 PM=20
    EDT> <Info> <Data Synchronization> <Application:=20
    paradigmDev;<BR>Starting data sync  [DR: Master Data =
    Repository]>=20
    <BR><Apr 18, 2002 12:30:38 PM EDT> <Info> <Data=20
    Synchronization> <Application: paradigmDev;<BR>Processing=20
    SyncRequestMessage  [DR: Webflow Extensions Data Repository]>=20
    <BR><Apr 18, 2002 12:30:38 PM EDT> <Info> <Data=20
    Synchronization> <Application: paradigmDev;<BR>Processing=20
    SyncRequestResultMessage  [DR: Master Data Repository]> =
    <BR><Apr=20
    18, 2002 12:30:38 PM EDT> <Info> <Data Synchronization>
    =
    <Application: paradigmDev;<BR>Processing DataSyncMessage  [DR:
    =
    Webflow=20
    Extensions Data Repository]> <BR><Apr 18, 2002 12:30:38 PM =
    EDT>=20
    <Info> <Data Synchronization> <Application:=20
    paradigmDev;<BR>Processing DataItemMessage  [DR: Webflow =
    Extensions Data=20
    Repository, URI: /webapps/hpo/webflow-extensions.wfx,<BR>Action: =
    CREATE]>=20
    <BR><Apr 18, 2002 12:30:38 PM EDT> <Info> <Data=20
    Synchronization> <Application: paradigmDev;<BR>Data sync =
    complete=20
    (OK)  [DR: Master Data Repository]> <BR><Apr 18, 2002 =
    12:30:39 PM=20
    EDT> <Info> <HTTP>=20
    <[WebAppServletContext(6286071,hpo,/hpo)]<BR>*.jsp: destroy> =
    <BR><Apr=20
    18, 2002 12:30:39 PM EDT> <Info> <HTTP>=20
    <[WebAppServletContext(6286071,hpo,/hpo)]<BR>*.jsp: init>=20
    <BR><BR><BR><BR>it is urgent <BR><BR>thanks=20
    <BR>Vijay<BR><BR></BLOCKQUOTE></BODY></HTML>

  • Webflow problem Urgent

    Hi,
    I'm trying to create my first simple webflow whcih will take the user to
    yahoo.html /hotmail.html depending on the link the user clicks.This is what
    i had done :
    1. Create a new webApplication . i can access the default page by giving
    http://portalserver:7501/myapp/default.jsp
    2. Registered the necessary taglibs for webflow namely
    webflow_taglib.jar,lic_taglib.jar.
    3. I also did the following settings P13N_APPLICATION_URL=/application,
    P13N_DEFAULT_NAMESPACE=prashant
    4. My webflow servlet mapping is
    com.bea.p13n.appflow.webflow.servlets.internal.WebflowServlet
    5. My prashant.wf file is as under
    <webflow-configuration
    xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance" is-complete="true"
    xsi:schemaLocation="http://www.bea.com/servers/p13n/xsd/webflow/2.0
    webflow.xsd" xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <namespace>prashant</namespace>
    <configuration-error-page page-name="error.html"/>
    <presentation-origin node-type="jsp" node-name="test">
    <node-processor-info page-name="test.jsp" page-relative-path="/test"/>
    <event-list>
    <event event-name="link.hotmail">
    <destination node-type="html" namespace="prashant" node-name="hotmail"/>
    </event>
    <event event-name="link.yahoo">
    <destination node-type="html" namespace="prashant" node-name="yahoo"/>
    </event>
    </event-list>
    </presentation-origin>
    <presentation-origin node-type="html" node-name="yahoo">
    <node-processor-info page-name="yahoo.html" page-relative-path="/test"/>
    </presentation-origin>
    <presentation-origin node-type="html" node-name="hotmail">
    <node-processor-info page-name="hotmail.html" page-relative-path="/test"/>
    </presentation-origin>
    </webflow-configuration>
    and here is the error is get
    <Jan 28, 2002 12:32:23 PM IST> <Error> <Webflow> <Error while parsing uri
    /PCDSL
    /application, path null, query string
    namespace=prashant&origin=test.jsp&event=l
    ink.yahoo - Webflow XML does not exist, is not loaded properly, or you do
    not ha
    ve a configuration-error-page defined.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The
    configurati
    on-error-page node was not found in the webflow xml file. for webapp [null],
    nam
    espace [prashant]. While trying to display CONFIGURATION ERROR:
    [Exception[com.b
    ea.p13n.appflow.exception.ConfigurationException: Bad Namespace - namespace
    [pra
    shant] is not available for webflow execution. Make sure the [prashant.wf]
    file
    is deployed in webapp [null].]],]
    at
    com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processConf
    igurationError(WebflowExecutorImpl.java:772)
    at
    com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:474)
    at
    com.bea.p13n.appflow.webflow.internal.WebflowExecutorImpl.processWebf
    lowRequest(WebflowExecutorImpl.java:409)
    at
    com.bea.p13n.appflow.webflow.servlets.internal.WebflowServlet.doGet(W
    ebflowServlet.java:132)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:265)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
    pl.java:200)
    at
    weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
    rvletContext.java:2459)
    at
    weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
    pl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    Can anybody suggest where should i look for errors or missing pieces of
    information.
    Prashant

    Read whenever you have time...
    <b>Spending 10 minutes more asking the question initially can save you a day in solving the problem.</b> See the <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/communityguidelines">Community Guidelines</a> for information about how you should ask a question (the section called Forum Rules of Engagement) to increase the likelihood of getting the best answers - that in turn will solve your problem sooner. Spending 10 minutes more asking the question initially can save you a day in solving the problem.
    The Wiki that was created by Mike Pokraka for <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/sapBusinessWorkflow+FAQ">SAP Business Workflow FAQ</a> (Frequently Asked Questions) is a good place to start.

  • Multiple namespaces on a webflow

    Hello ... i am working with weblogic portal 7.0 SP2
    my program is about curriculum management (add/edit/remove,..)
    and have one webflow and one portlet
    the webflow is about 100Kb and the ebcc said that it cant open it ;)
    Now i need to divide the webflow into multiple webflows (or namespaces) .
    But i cant find the method to divide the webflow into multiple webflows (one for each action, add, modify, delete,...)
    the <webflow-filename> only supports 1 webflow ...
    anyone has the same problem ??
    anyone knows a solution ??
    thanks

    I´ll give you an example what I want to do:
    I have a gateway with two dial-peer voice xxx pots, both with destination pattern 0049T for calls from outside to Germany.
    When the gateway is registerd to the gatekeeper, the gatekeeper can give this information to other gateways which now can establish calls to my gateway in Germany.
    Now I want to increase the number of B-channels from 60 to 120. For this I´m going to install a second gateway here in Germany, of course with a different ip address. On my second gateway I will also have two dial-peer voice xxx pots, both with destination pattern 0049T. When the sencond gateway also registers to the same gatekeeper, the gatekeeper will have now two possible ip targets for the destination pattern 0049T.
    So what will happen, if outside gateways ask the gatekeeper for 0049T?
    Will the gatekeeper do a load-sharing to the two gateways in Germany? Is the gatekeeper able to see, if a gateway has free B-channels?
    Thanks for your reply,
    Martin.

  • Retriving custom attributes in uwl.task.webflow.decision

    Hello,
    I know this question is closed. I am trying  to retreive custom attributes from decisson(uwl.task.webflow.decision)uwl.task.webflow.decision.TS00008267. I am not able to do that.
    I am able to retrieve ABAP_BOR object.
    These attributes are not directly in container. Those attributes are located in structures  ADHOCOBJECTS, _WORKITEMS, _Attachments.
    How I am able to retrieve them. Can you point me to scriplets of XML.
    I really appreciate your help. 
    Regards
    Mark

    Hi,
    Thanks for your help.
    I am able to get from task. I am not able to get from Decission (ex .uwl.task.webflow.decision.TS90400017.SAP_PLM)
    my xml looks like this. I am able to get from Task object.
    Any Ideas. I really appreciate your help.  Is there any special way for decission.
    <ItemType name="uwl.task.webflow.decision.TS90400017.SAP_PLM" connector="WebFlowConnector" defaultView="DefaultView" defaultAction="viewDetail" executionMode="default">
               <ItemTypeCriteria systemId="SAP_PLM" externalType="TS90400017" connector="WebFlowConnector"/>     
          <CustomAttributes>
                  <CustomAttributeSource id="WEBFLOW_CONTAINER" objectIdHolder="externalId" objectType="WebflowContainer" cacheValidity="final">
                    <Attribute name="BOR_OBJECT" type="string" displayName="BOR Object"/>
                  </CustomAttributeSource>
                  <CustomAttributeSource id="ABAP_BOR" objectIdHolder="BOR_OBJECT" objectType="ZBUS2078" cacheValidity="default">
                    <Attribute name="Description" type="string" displayName="Description"/>
                    <Attribute name="RequiredEndDate" type="date" displayName="Due Date"/>
                    <Attribute name="Number" type="string" displayName="Number"/>
                    <Attribute name="RESPONSIBLE" type="string" displayName="Responsible"/>
                  </CustomAttributeSource>
                </CustomAttributes>
          </ItemType>
    Following is in the view
    <DisplayAttribute name="Description" type="string" width="" sortable="yes" format="default" hAlign="LEFT" vAlign="BASELINE" maxTextWidth="0" headerVisible="yes">
              <Descriptions default="Description"/>
            </DisplayAttribute>

  • Webflow Web Application Configuration Problem

    I am trying to use BEA&#8217;s webflow tool to handle navigation within a series
    of JSP pages, input processors, and pipeline components. The JSP pages will capture
    user profile information beyond the normal User ID and Password (user interests,
    etc). This information will be stored in the database, and be used to customize
    the user experience.
    I am using the validated form tag, and the webflow tag libraries in the JSP in
    order to take advantage of some pre-built validation tools.
    My web application is named conahec, and my namespace is called test.wf.
    The JSP page comes up perfectly, but when I enter data on the page to test it,
    and hit the save button, I get the following error:
    <Mar 8, 2002 8:48:54 AM MST> <Error> <Webflow> <Error while parsing uri
    /conahec/application, path null, query string null - Webflow XML does not exist,
    is not loaded properly,or you do not have a configuration-error-page defined.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The
    configuration-error-page node was not found in the webflow xml file. for webapp
    [null], namespace [portal]. While trying to display
    CONFIGURATION ERROR:
    [Exception[com.bea.p13n.appflow.exception.ConfigurationException: Bad
    Namespace - namespace [test] is not available for webflow execution. Make sure
    the[test.wf] file is deployed in webapp [null].]],]
    As you can see, it appears that the webapp is not defined. The only way the web
    app wouldn&#8217;t be defined (that I know of from reading previous posts to this
    group) is if the data synchronization was not successful.
    However, the DataSync page appears to show that the synchronization was successful.
    Here are the results I see on the DataSync page:
    - /webapps/conahec/test.wf
    Schema URI http://www.bea.com/servers/p13n/xsd/webflow/2.0
    Creation Date 2002-03-08 10:13:25.039
    Modification Date 2002-03-08 10:13:25.039
    Name test.wf
    Description E:\bea\ebcc4.0\applications\portal\application-sync\webapps\conahec\test.wf
    Author (omitted)
    Data
    <?xml version="1.0"?>
    <webflow-configuration xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    is-complete="true" xsi:schemaLocation="http://www.bea.com/servers/p13n/xsd/webflow/2.0
    webflow.xsd" xmlns:data="http://www.bea.com/servers/p13n/xsd/datalink/1.0" xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance">
    <namespace xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">test</namespace>
    <begin-origin xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <destination xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0" node-type="jsp"
    namespace="test" node-name="customer_profile"></destination>
    </begin-origin>
    <configuration-error-page xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    page-name="portal_error"></configuration-error-page>
    <presentation-origin xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" node-name="customer_profile">
    <node-processor-info xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    page-name="customer_profile.jsp" page-relative-path="/portlets/testIntl"></node-processor-info>
    <event-list xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <event xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0" event-name="button.save">
    <destination xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="inputprocessor" namespace="test" node-name="CustomerRegIP"></destination>
    </event>
    </event-list>
    </presentation-origin>
    <presentation-origin xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" node-name="customer_success">
    <node-processor-info xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    page-name="customer_success.jsp" page-relative-path="/portlets/testIntl"></node-processor-info>
    </presentation-origin>
    <presentation-origin xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" node-name="error">
    <node-processor-info xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    page-name="error.jsp" page-relative-path="/framework/error"></node-processor-info>
    </presentation-origin>
    <processor-origin xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="inputprocessor" node-name="CustomerRegIP">
    <node-processor-info xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    class-name="com.bea.conahec.customer.CustomerRegIP"></node-processor-info>
    <event-list xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <event xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0" event-name="success">
    <destination xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="pipeline" namespace="test" node-name="customerRegPC"></destination>
    </event>
    </event-list>
    <exception-list xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <exception xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    exception-name="com.bea.p13n.appflow.webflow.forms.InvalidFormDataException">
    <destination xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" namespace="test" node-name="customer_profile"></destination>
    </exception>
    </exception-list>
    </processor-origin>
    <processor-origin xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="pipeline" node-name="customerRegPC">
    <node-processor-info xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    pipeline-name="customerRegPC" pipeline-namespace="customerreg"></node-processor-info>
    <event-list xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <event xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0" event-name="success">
    <destination xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" namespace="test" node-name="customer_success"></destination>
    </event>
    </event-list>
    <exception-list xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <exception xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    exception-name="com.bea.p13n.appflow.exception.PipelineException">
    <destination xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" namespace="test" node-name="error"></destination>
    </exception>
    </exception-list>
    </processor-origin>
    </webflow-configuration>
    I have tried to remove the data repository, and re-synchronize the data.
    Can you please help by pointing me in a direction to continue to research this
    problem?
    Thanks.

    Thank you, Daniel.
    Support got back to me 24 hours later, and gave me the patch I needed. Early
    testing shows that this patch has fixed this problem.
    Scott Peterson
    "Daniel Selman" <[email protected]> wrote:
    Scott,
    Please contact support. We have seen (and fixed) a CR related to the
    web
    application name not being retrieved correctly (null) in all cases:
    The
    configuration-error-page node was not found in the webflow xml file.for
    webapp
    [null], namespace [portal]Sincerely,
    Daniel Selman
    "Scott Peterson" <[email protected]> wrote in message
    news:[email protected]...
    I am trying to use BEA&#8217;s webflow tool to handle navigation withina
    series
    of JSP pages, input processors, and pipeline components. The JSP pageswill capture
    user profile information beyond the normal User ID and Password (userinterests,
    etc). This information will be stored in the database, and be usedto
    customize
    the user experience.
    I am using the validated form tag, and the webflow tag libraries inthe
    JSP in
    order to take advantage of some pre-built validation tools.
    My web application is named conahec, and my namespace is called test.wf.
    The JSP page comes up perfectly, but when I enter data on the pageto test
    it,
    and hit the save button, I get the following error:
    <Mar 8, 2002 8:48:54 AM MST> <Error> <Webflow> <Error while parsinguri
    /conahec/application, path null, query string null - Webflow XML doesnot
    exist,
    is not loaded properly,or you do not have a configuration-error-pagedefined.
    Exception[com.bea.p13n.appflow.exception.ConfigurationException: The
    configuration-error-page node was not found in the webflow xml file.
    for>webapp>> [null, namespace [portal]. While trying to display
    CONFIGURATION ERROR:
    [Exception[com.bea.p13n.appflow.exception.ConfigurationException: Bad
    Namespace - namespace [test] is not available for webflow execution.Make
    sure
    the[test.wf] file is deployed in webapp [null].]],]
    As you can see, it appears that the webapp is not defined. The onlyway
    the web
    app wouldn&#8217;t be defined (that I know of from reading previousposts
    to this
    group) is if the data synchronization was not successful.
    However, the DataSync page appears to show that the synchronizationwas
    successful.
    Here are the results I see on the DataSync page:
    - /webapps/conahec/test.wf
    Schema URI http://www.bea.com/servers/p13n/xsd/webflow/2.0
    Creation Date 2002-03-08 10:13:25.039
    Modification Date 2002-03-08 10:13:25.039
    Name test.wf
    DescriptionE:\bea\ebcc4.0\applications\portal\application-sync\webapps\conahec\test.wf
    Author (omitted)
    Data
    <?xml version="1.0"?>
    <webflow-configuration
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    is-complete="true"
    xsi:schemaLocation="http://www.bea.com/servers/p13n/xsd/webflow/2.0
    webflow.xsd" xmlns:data="http://www.bea.com/servers/p13n/xsd/datalink/1.0"
    xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance">
    <namespace
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">test</namespace>
    <begin-origin xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <destination
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0" node-type="jsp"
    namespace="test" node-name="customer_profile"></destination>
    </begin-origin>
    <configuration-error-page
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    page-name="portal_error"></configuration-error-page>
    <presentation-origin
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" node-name="customer_profile">
    <node-processor-info
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    page-name="customer_profile.jsp"page-relative-path="/portlets/testIntl"></node-processor-info>
    <event-list
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <event xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    event-name="button.save">
    <destination
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="inputprocessor" namespace="test"node-name="CustomerRegIP"></destination>
    </event>
    </event-list>
    </presentation-origin>
    <presentation-origin
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" node-name="customer_success">
    <node-processor-info
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    page-name="customer_success.jsp"page-relative-path="/portlets/testIntl"></node-processor-info>
    </presentation-origin>
    <presentation-origin
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" node-name="error">
    <node-processor-info
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    page-name="error.jsp"page-relative-path="/framework/error"></node-processor-info>
    </presentation-origin>
    <processor-origin
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="inputprocessor" node-name="CustomerRegIP">
    <node-processor-info
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    class-name="com.bea.conahec.customer.CustomerRegIP"></node-processor-info>
    <event-list
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <event xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    event-name="success">
    <destination
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="pipeline" namespace="test"node-name="customerRegPC"></destination>
    </event>
    </event-list>
    <exception-list
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <exception
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    >
    exception-name="com.bea.p13n.appflow.webflow.forms.InvalidFormDataException"
    <destination
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" namespace="test"node-name="customer_profile"></destination>
    </exception>
    </exception-list>
    </processor-origin>
    <processor-origin
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="pipeline" node-name="customerRegPC">
    <node-processor-info
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    pipeline-name="customerRegPC"pipeline-namespace="customerreg"></node-processor-info>
    <event-list
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <event xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    event-name="success">
    <destination
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" namespace="test"node-name="customer_success"></destination>
    </event>
    </event-list>
    <exception-list
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0">
    <exception
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    exception-name="com.bea.p13n.appflow.exception.PipelineException">
    <destination
    xmlns="http://www.bea.com/servers/p13n/xsd/webflow/2.0"
    node-type="jsp" namespace="test" node-name="error"></destination>
    </exception>
    </exception-list>
    </processor-origin>
    </webflow-configuration>
    I have tried to remove the data repository, and re-synchronize thedata.
    Can you please help by pointing me in a direction to continue to researchthis
    problem?
    Thanks.

Maybe you are looking for

  • Can't connect java socket server in MAC OS

    Does any know what settings need to be done in order to connect socket server written in java on MACOS. my socket server is running on 5000 port, i've tried on running server on linux, and my program is able to receive the request from remote unix se

  • Set default phone number in address book

    Most clients have multiple numbers. When I am driving and say to Siri "Call Linda Johnson" I would like to have a default number chosen. IPhone does not offer a default option. If I make the first number in my contact's listing the "default" can Siri

  • How do I not import RAW files into iPhoto

    I shoot RAW + Jpeg with my cameras... Up until a recent upgrade to Mavericks... I would put the SD card in the iMac and it would import all the JPEGs, and then say something like 75 files could not be downloaded. Those were the large RAW files and I

  • Can we call webserrvice from javascript code?

    Hi Gurus, Can we call webservice in "Javascript" code? Any pointers, samples? Appreciate your time. Thanks

  • RSS feed headlines on website using Java

    Good evening, I am interested in showing the titles of blog posts as headlines on our website. (The RSS feed would be converted, etc.) I found free plug-and-play javascript generators that will do this, but they are giving me validation errors and ha