Workflow autogenerated jsp url

I have created a simple workflow process using an auto generated jsp and deployed it to a middle tier installation using jdev. What is the url for the jsp? http://hostname:7777/????
Thanks for your help.
Sean.

http://localhost:7777/integration/worklistapp/
login and there it comes ..

Similar Messages

  • Filter does not work with *.jsp URL pattern???

    Hi All,
    I am, by no means, very good at JSF or Java. I have looked at various forum posts on here for ways to implement a security filter to intercept requests to pages that first require one to be logged in, and if not, redirect them to the login page. Yes, I know a lot of you have heard this many times before, and I'm sorry to bring it up again.
    BUT, from the guidance of other posts, I have got a filter that works fine when the url pattern is set to "/faces/*" or "/<anything>/*", however it won't work for "*.jsp" or "*.<anything>"
    My filter is as follows:
    package test.security;
    import javax.faces.context.FacesContext;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.http.HttpSession;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class SecurityFilter implements Filter{
        /** Creates a new instance of SecurityFilter */
        private final static String FILTER_APPLIED = "_security_filter_applied";
        public SecurityFilter() {
        public void init(FilterConfig filterConfig) {
        public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws java.io.IOException, ServletException{
            HttpServletRequest req = (HttpServletRequest)request;
            HttpServletResponse res = (HttpServletResponse)response;
            HttpSession session = req.getSession();
            String requestedPage = req.getPathTranslated();
            String user=null;
            if(request.getAttribute(FILTER_APPLIED) == null) {
                //check if the page requested is the login page or register page
                if((!requestedPage.endsWith("Page1.jsp")) /* This is the login page */
                    //set the FILTER_APPLIED attribute to true
                    request.setAttribute(FILTER_APPLIED, Boolean.TRUE);
                    //Check that the session bean is not null and get the session bean property username.
                    if(((test.SessionBean1)session.getAttribute("SessionBean1"))!=null) {
                        user = ((test.SessionBean1)session.getAttribute("SessionBean1")).getUsername();
                    if((user==null)||(user.equals(""))) {
                       // try {
                     //       FacesContext.getCurrentInstance().getExternalContext().redirect("Page1.jsp");
                      //  } catch (ServletException ex) {
                      //      log("Error Description", ex);
                        res.sendRedirect("../Page1.jsp");
                        return;
            //deliver request to next filter
            chain.doFilter(request, response);
        public void destroy(){
    }My web.xml declaration for the filter is:
    <filter>
      <description>Filter to check whether user is logged in.</description>
      <filter-name>SecurityFilter</filter-name>
      <filter-class>test.security</filter-class>
    </filter>
    <filter-mapping>
      <filter-name>SecurityFilter</filter-name>
      <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    Note: I have also tried this with <url-pattern>*.jsp</url-pattern> for the filter mapping in place of the Faces Servlet
    My web.xml declaration for the url pattern is:
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.jsp</url-pattern>
    </servlet-mapping>Which JSC/NetbeansVWP automatically creates a "JSCreator_index.jsp" which has:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root  version="1.2" xmlns:jsp="http://java.sun.com/JSP/Page">
      <jsp:forward page="Page1.jsp"/>
    </jsp:root>When run, this causes an Error 500 in the browser and a NullPointerException in SecurityFilter.java on the line:
    if((!requestedPage.endsWith("Page1.jsp")) /* This is the login page */I think I'm missing something that would be obvious to anyone who knows better than me. Any ideas?

    Dear Ginger and Boris,
    thanks for the information - the problem seems to ocur in EP7 as well, Boris told me it is fixed in SP15. We are on SP14 now, so there is hope !
    actually the information in the oss note stated above is also true, as we have an Oracle DB. On a similar demo system (only difference is SQL DB) the hyphen search works !
    best regards, thank you !
    Johannes

  • Workflow with JSP

    Hi,
    I want to use oracle workflow with JSP/EJB without using oracle apps. How will I call the workflow in JSP or EJB.
    Regards
    Jayasri.

    Jayasri,
    Workflow provides Java API's which can be called from any Java application. Check out the White Paper "Oracle Workflow with J2EE Components" from the Workflow home page on OTN for more information on using workflow in a J2EE environment.
    Cheers,
    Raja

  • % in JSP url

    I need to have JSP accept un encoded URL with chars like %. Is there anyway I can do it ?
    See the difference between http://www.google.com/search?q=%+in+url (it works) and http://onesearch.sun.com/search/developers/index.jsp?qt=%+in+url (doesn't work)
    Anthos

    Also this HTTP request got uncoded characters which fails request params in cases of %, # and so on.
    1. Save the following as params.jsp
    <%@ page contentType="text/html;charset=UTF-8"%>
    <HTML>
    <HEAD>
    <TITLE></TITLE>
    </HEAD>
    <BODY>
    <TABLE BORDER='1'>
    <TR><TD>NAME</TD><TD>VALUE</TD></TR>
    <%
    java.util.Enumeration names = request.getParameterNames();
    while(names.hasMoreElements())
    String name = (String) names.nextElement();
    Object value = request.getParameter(name);
    out.println("<TR><TD>" + name + "</TD><TD>" + value + "</TD></TR>");
    %>
    </TABLE>
    </BODY>
    </HTML>
    2. Invoke as http://localhost.../params.jsp?param1=value1&param2=value2
    and http://localhost.../params.jsp?param1=value%1&param2=value2 and see the difference.

  • Workflow Designer: template url problem

    Hi all,
    I successfully installed:
    Forms/Form Manger 7.0.1 on w2k3_box1;
    Workflow Server 7.0.1 on w2k3_box2;
    Using:
    Jboss 3.2.5,
    MSS 2K,
    JDK 1.4.2_11
    with manual options. Adminui appears fine, FormsIVS appears fine.
    In Workflow Desginer, I tried to define a new workflow. In initform, when I clicked on "browse" botton next to "template url" field, I got error msg:
    com.adobe.appstore.AppstoreException
    Can anyone give a clue of how to resolve it? I have uploaded a test form into forms repository, and trying to refer to it in the workflow designer.
    Thanks!
    Scott Jiang

    Hi all,<br /><br />Thanks for the response. I have tried WF designer on both client and WF server side. Same result. <br /><br />If anyone can point me to the documention where it says Form Manager and Workflow have to be installed in the same box that's great. I'm told to install them on separate boxes because version 6, has been done in that way, and due to transaction volume we'd like to install them separately. Has any customer done in this kind of configuration? <br />BTW, I already checked "Integrating LiveCycle Products" doc.<br /><br />There is the log from java console. Seems like JNDI lookup failed on the client side code when I click the "template url" button.<br />===================================================================<br />com.adobe.appstore.AppstoreFactoryException: com.adobe.appstore.AppstoreException<br />        at com.adobe.ebxml.registry.appstore.AppstoreFactory.getAppstore(Unknown<br /> Source)<br />        at com.adobe.workflow.saf.SAFApplication.getAppstore(SAFApplication.java<br />:827)<br />        at com.adobe.workflow.saf.SAFApplication.browseAppstore(SAFApplication.j<br />ava:837)<br />        at com.adobe.workflow.tools.processdesigner.JUrlCellEditor$1.actionPerfo<br />rmed(JUrlCellEditor.java:104)<br />        at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)<br />        at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Unknow<br />n Source)<br />        at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)<br />        at javax.swing.DefaultButtonModel.setPressed(Unknown Source)<br />        at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Sour<br />ce)<br />        at java.awt.Component.processMouseEvent(Unknown Source)<br />        at java.awt.Component.processEvent(Unknown Source)<br />        at java.awt.Container.processEvent(Unknown Source)<br />        at java.awt.Component.dispatchEventImpl(Unknown Source)<br />        at java.awt.Container.dispatchEventImpl(Unknown Source)<br />        at java.awt.Component.dispatchEvent(Unknown Source)<br />        at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)<br />        at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)<br />        at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)<br />        at java.awt.Container.dispatchEventImpl(Unknown Source)<br />        at java.awt.Window.dispatchEventImpl(Unknown Source)<br />        at java.awt.Component.dispatchEvent(Unknown Source)<br />        at java.awt.EventQueue.dispatchEvent(Unknown Source)<br />        at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)<br /><br />        at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)<br />        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)<br />        at java.awt.EventDispatchThread.pumpEvents(Unknown Source)<br />        at java.awt.EventDispatchThread.run(Unknown Source)<br />Caused by: com.adobe.appstore.AppstoreException<br />        at com.adobe.ebxml.registry.appstore.AppstoreDelegate.lookup(Unknown Sou<br />rce)<br />        at com.adobe.ebxml.registry.appstore.AppstoreDelegate.<init>(Unknown Sou<br />rce)<br />        ... 27 more<br />Caused by: javax.naming.NameNotFoundException: com not bound<br />        at org.jnp.server.NamingServer.getBinding(NamingServer.java:495)<br />        at org.jnp.server.NamingServer.getBinding(NamingServer.java:503)<br />        at org.jnp.server.NamingServer.getObject(NamingServer.java:509)<br />        at org.jnp.server.NamingServer.lookup(NamingServer.java:253)<br />        at sun.reflect.GeneratedMethodAccessor163.invoke(Unknown Source)<br />        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces<br />sorImpl.java:25)<br />        at java.lang.reflect.Method.invoke(Method.java:324)<br />        at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)<br />        at sun.rmi.transport.Transport$1.run(Transport.java:148)<br />        at java.security.AccessController.doPrivileged(Native Method)<br />        at sun.rmi.transport.Transport.serviceCall(Transport.java:144)<br />        at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:4<br />60)<br />        at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport<br />.java:701)<br />        at java.lang.Thread.run(Thread.java:534)<br />        at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknow<br />n Source)<br />        at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)<br />        at sun.rmi.server.UnicastRef.invoke(Unknown Source)<br />        at org.jnp.server.NamingServer_Stub.lookup(Unknown Source)<br />        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:530)<br />        at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:509)<br />        at javax.naming.InitialContext.lookup(Unknown Source)<br />        ... 29 more

  • Workflow and JSP

    Hallo,
    I would like to analyse the input data of an entry form. I think the jsp is needed. Can anyone give me an example for the look like an how to use the jsp script in workflow?
    ex.
    In the entry form a user should fill in a number of days. The workflow should send a notification after this days .
    thx
    nicole

    hi
    have a look here its helped me lots. if you dont find what your looking for check out the kablink sites development forum and have a word there :-)
    cheers
    barneyb

  • JSP URL encoding

    Hi I've got this link that leads me to print_article.jsp. When I use the link, the encoding fine in the page that I get to. So in print_article.jsp, when I call ${param.title} it displays 'Assurance m�dicale � la carte', as it should.
    If I cut and paste that URL in a new browser, the encoding for ${param.title} is wrong. ${param.title} gives Assurance m&#65533;dicale &#65533; la carte.
    here is the URL in question:
    http://localhost/print_article.jsp?page=/assurance-voyage/trouver-produit/liste-protections/plan-medicaux/assurance-medicale-carte.fr.html&title=Assurance%20m�dicale%20�%20la%20carte&lng=fr
    I tried forcing the encoding using utf-8, windows-1252 and ISO-something and none of those work.
    I encoded the URL ( and only the param.title part ) using java.net.URLEncoder. That didn't work either.
    I tries IE7, firefox, got the same behavior
    What has me baffled is that all works fine, except when I cut and paste the URL in a new browser, new window, the I lost the encoding on the parameter title.
    Any idea?

    Design advice that solves the problem:
    Don't send whole title as url parameter, send only some article id and get all the other article attributes using this id.

  • JSP - URL File I/O BufferedReader

    I need help with the below code. I can grab external code fine, but I am looking for an efficient way to only buffer part of the code (i.e. everything in between <html> and </html>).
    URL url = new URL("http://www.yahoo.com/");
    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
    String inputLine;
    StringBuffer sb = new StringBuffer();
    while ((inputLine = in.readLine()) != null)
    sb.append(inputLine);
    in.close();
    Do I need to modify the while statement?
    Or do I need to add StringTokenizer and/or trim()?
    something like this example:
    StringTokenizer stBegin = new StringTokenizer(inputLine,"<html>");
    I'm using JSP 1.1/JDK 1.3.1
    Any code samples or forum links are greatly appreciated.
    thanks.

    You cannot only buffer in the <html> part code. What you can do is buffer in the whole code and use indexOf() and subString() to cut the string u need. Something like that:
    while ((inputLine = in.readLine()) != null)
    String htmlCode = null;
    int htmlStart = inpputLine.indexOf("<html>");
    int htmlEnd = inputLine.indexOf("</html>");
    htmlCode = inputLine.substring(htmlStart, htmlEnd);
    }           

  • SharePoint Workflow Manager email urls not changing

    Hello Experts,
    I have created workflow using VS 2013 in SharePoint 2013 using Workflow Manager
    every thing is working fine .
    but over due e-mails  of Task assigned shows url in the form of servername like http://servername/...
    i want to show FQDN.
    server is on Production so can not create new web app .
    Please help . i have already changed default zone url to FQDN.
    Mukesh

    HI ALL
    my probulem has been solved just i redeployed a workflow  every thing seems correct.
    Mukesh

  • Calling WLI Workflows from JSP/servlets

    Hello,
    I'm looking for some help with WLI workflows.
    I want to create a JSP/Servlet that starts a workflow to request some
    data.
    I understand how to start a workflow by placing a message on a JMS
    queue, but I am unsure of how to get a response back from the workflow.
    How does a work flow return a result to a client?
    Does the workflow place the result onto a JMS queue? If so, how does the
    result message get associated with the request message? Is there any
    mechanisms to do this, or do I need to write this on my own?
    Would the servlet/JSP block until the response is returned, or does it
    need to poll some other queue?
    Any advice would be appreciated.
    Thanks
    Alan

    Alan
    Currently you do not need JMS to return a result. Here is a sample jsp
    based worklist, you can use this to see how to start one using the worklist
    api, however, what exactly do you want to return. ?
    Tony
    "Alan Mangroo" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    I'm looking for some help with WLI workflows.
    I want to create a JSP/Servlet that starts a workflow to request some
    data.
    I understand how to start a workflow by placing a message on a JMS
    queue, but I am unsure of how to get a response back from the workflow.
    How does a work flow return a result to a client?
    Does the workflow place the result onto a JMS queue? If so, how does the
    result message get associated with the request message? Is there any
    mechanisms to do this, or do I need to write this on my own?
    Would the servlet/JSP block until the response is returned, or does it
    need to poll some other queue?
    Any advice would be appreciated.
    Thanks
    Alan
    [worklist.zip]

  • FacesServlet routing to a different jsp url

    I would like to encode information on which businessobject is currently in use in the URL. To view my Businessobject with with ID=123456 an URL would look like: http://host/faces/123456/view.jsp Still it should call the /view.jsp as should http://host/faces/3434/view.jsp and so on. The part between the /faces/ and the /view.jsp is only for my application use.
    Any hints on how to achive this?
    In the web.xml the facesservlet has a mapping of faces/* which makes it work for those urls, too. But how do I make it forward to /view.jsp. I the moment I believe it is looking for /123456/view.jsp which obviously does not exist.

    Andy,
    I do have an afh:body on my page. I just tried to replace it with a <body> tag, but then the partial page rendering won't work anymore (this caused all tabs of the detail page not to work anymore). I read that either afh:body, af:document or af:panelPartialRoot is needed.
    So I used af:panelPartialRoot instead, but that wouldn't help either.
    Anyway, I still can't navigate to a different page in the disclosure listener of my detail page tabs.
    Is there maybe a way to treat a tab as a normal button, with an action event and an according listener?
    Torsten

  • Need JSP-URL in controlling servlet

    Hi,
    I have a simple questions which is driving me crazy.
    2 JSP's are using same Servlet which has to process their input.
    Inside this servlet I need to know which jsp is calling the servlet.
    I tried following code :
              System.out.println("req.getRequestURI() = \"" + req.getRequestURI() +"\"");
              System.out.println("req.getClass() = \"" + req.getClass() +"\"");
              System.out.println("req.getPathInfo() = \"" + req.getPathInfo() +"\"");
              System.out.println("req.getPathTranslated() = \"" + req.getPathTranslated() +"\"");
              System.out.println("req.getServletPath() = \"" + req.getServletPath() +"\"");
              System.out.println("HttpUtils.getRequestURL(req)= \"" + HttpUtils.getRequestURL(req) +"\"");
    but none of them are returning the correct name of the calling JSP...
    Here are the results in same sequence:
    req.getRequestURI() = "/servlet/com.clipper.servlets.FQController"
    req.getClass() = "class com.ibm.servlet.engine.webapp.WebAppDispatcherRequest"
    req.getPathInfo() = "null"
    req.getPathTranslated() = "null"
    req.getServletPath(req) = "/servlet/com.clipper.servlets.FQController"
    HttpUtils.getRequestURL()= "http://www.clippersupport.be:2031/servlet/com.clipper.servlets.FQController"
    As you can see, I only retrieve the Servlets info, not the JSP's...
    I need to find :
    /JSP/JSP1.jsp
    How do I do this ???

    I don't think it is possible to find out the details of the calling jsp in another servlet jsp or servlet. The only possibility is in the jsp get requestURL and place this as a request parameter in the request. Then when you call the servlet, the servlet can then extract this request parameter.

  • Quick question about url/jsp mapping

    Could anyone clarify whether the following mapping in the web.xml file is possible?
    I want to access the file webapps\examples\gate\login.jsp by going to the page http://192.168.2.143:8080/work/login.jsp instead of http://192.168.2.143:8080/examples/gate/login.jsp
    Currently I can map it fine to http://192.168.2.143:8080/examples/work/login.jsp,
    which is an existing folder, but when I try and get it above the examples folder, it gives me the 404 error.
        <servlet>
            <servlet-name>Login</servlet-name>
            <jsp-file>/gate/login.jsp</jsp-file>
        </servlet>
        <servlet-mapping>
            <servlet-name>Login</servlet-name>
            <url-pattern>/../work/login.jsp</url-pattern>
        </servlet-mapping>

    Using only work/login.jsp will cause an error, and the tomcat server to crash, if I use the pattern
    <url-pattern>/work/login.jsp</url-pattern>, I just map the URL http://192.168.2.143:8080/examples/work/login.jsp instead of
    http://192.168.2.143:8080/examples/gate/login.jsp
    My entire webaps structure is rather long, and contains code other than my own, so I'd rather not post it, I just need to figure out if it is possible to map the jsp page to a path above the file. (do you think I need to do it in another web.xml?)

  • How can I invoke a JSP using a URL instance from another JSP?

              Hi all.
              I've been developed a J2EE application using Oracle 9iAS.
              Now I'm migrating to WL Server and I have the following problem.
              I was using the following code to read a URL contents from another JSP:
              URL url = config.getServletContext().getResource("/path/to/url/of/textfile.xsl");
              This was working fine in a expanded directory project structure (typical during
              development time) and Oracle 9iAS.
              When I execute this code from my WL packed .ear file I get a URL not found exception.
              Which is the right way to get a resource available from the same context root?
              Thanks in advance for your answers (and sorry for my bad english ;-))
              

    The previous owner of that machine should have wiped it and install the original OS that shipped with the system leaving the system at the point where the new owner takes over and enters all there own information.
    Before you go much further with this machine you should seriously consider backing up any new stuff you have done and wiping it and starting from scratch. If you keep the system like it is you  will be plagued with problems. Even doing OS updates will prove frustrating.
    Right now the best you can do is to move the Aperture that is on the system into the trash, log into the App Store using your ID and buying Aperture. That should work but to be honest I have never had to do it so can;t say for sure.
    You might want to look at this What to do before selling or giving away your Mac from Apple to read what they recommend.
    good luck
    regards

  • Help regarding workflow triggering

    hi
    i am working on WLI using weblogic 8.1
    i have designed very simple workflow using some simple nodes.
    as given in the tutorial i am able to run my workflow using test browser.
    .its pefectly working.
    i would like to know the ways of triggering the workflow from java clients.
    Is subscribing to message broker is the only way or we have some other simpler
    ways?
    thanx

    Thats correct for Weblogic Integration 7.0 and before but in Weblogic
    Integration 8.1 there is no default queue with the name
    "com.bea.wli.bpm.EventQueue" configured. Weblogic Platform 7.0 uses the
    Message Oriented Middleware (MOM) aproach and Weblogic Platform 8.1 uses the
    Service Oriented Architecture (SOA).
    There is a good article about Weblogic Workshop Internals on dev2dev [1] and
    in the documentation there is a page about writing clients for web services
    [2] (in Weblogic Platform 8.1 workflows are web services).
    If you create your workflow with Weblogic Workshop then you can access the
    workflow over the URL
    http://yourhost:7001/yourApplication/processes/yourProcess.jpd with SOAP. In
    the test browser under the overview tab you can generate a WSDL, a Java
    Control, a Service Broker Control and a Java Proxy (which needs the Proxy
    Support Jar). With this components you can access your workflow. If you
    wanna see the SOAP message use the test browser there is the html form which
    uses http for triggering the workflow, for example:
    <table cellspacing=0 cellpadding=0 border=0 width="100%">
    <form NAME="placeOrder"
    METHOD="POST"
    ACTION=http://localhost:7001/AvitekWeb/processes/orderProcessing/placeOrder.
    jpd>
    <tr><td colspan=2 class=methname><A
    NAME="placeOrder"></A>placeOrder</td></tr>
    <tr><td colspan=2 class=methdesc><!-- do comments
    correctly --><!--docString--></td></tr>
    <tr>
    <td class=namcol><nobr><b>SOAP body:</b> </nobr></td>
    <td class=inpcol>
    <TEXTAREA class="xmlbox" name=".SOAPMESSAGE" COLS=50 ROWS=10 ><placeOrder
    xmlns="http://www.openuri.org/"
    xmlns:eval="http://www.beasys.com/evalguide">
    <eval:Order>
    <eval:CustomerID>3</eval:CustomerID>
    <eval:OrderPriority>string</eval:OrderPriority>
    <eval:CustomerType>string</eval:CustomerType>
    <eval:LineItems>
    <!--1 or more repetitions:-->
    <eval:Item>
    <eval:Name>string</eval:Name>
    <eval:SKU>3</eval:SKU>
    <eval:Description>string</eval:Description>
    <eval:Price>1.5E2</eval:Price>
    <eval:Quantity>3</eval:Quantity>
    </eval:Item>
    </eval:LineItems>
    <eval:OrderID>3</eval:OrderID>
    <eval:TotalAmount>1.051732E7</eval:TotalAmount>
    <eval:OrderDate>2008-09-29</eval:OrderDate>
    <eval:OrderStatus>string</eval:OrderStatus>
    </eval:Order>
    </placeOrder>
    </TEXTAREA></td></tr>
    <tr><td><img alt="" height=6 width=0
    src="http://localhost:7001/AvitekWeb/processes/orderProcessing/placeOrder.jp
    d?.RESOURCE=blank.gif">
    </td></tr><tr><td> </td><td class=inpcol><input TYPE=submit
    class=inpbut VALUE="placeOrder"> starts a conversation<input TYPE=HIDDEN
    NAME=.EXPLOREOVERRIDE value=".TESTXML"><input TYPE=hidden NAME=.EXPLORE
    VALUE=.INVOKE><INPUT TYPE=hidden NAME=.CONVERSATIONID VALUE=_ID_><INPUT
    TYPE=HIDDEN NAME=".CONVPHASE" VALUE=".START"><p></td></tr></form>
    I think in this code is all what you need to start a workflow.
    mfg
    Daniel
    [1] http://www.dev2dev.com/products/wlworkshop81/articles/wlw_internals.jsp
    [2] http://e-docs.bea.com/wls/docs81/webserv/client.html
    "Raj" <[email protected]> schrieb im Newsbeitrag
    news:[email protected]...
    >
    Hi Swati,
    You can write JMS program to post an XML to a Queue and configure thestart node
    to event.The Quename for this client program should be"com.bea.wli.bpm.EventQueue",
    else you have to configure an MDB listener. Let me know if you havefurther doubts....
    >
    Regards
    Raj
    "swati" <[email protected]> wrote:
    hi
    i am working on WLI using weblogic 8.1
    i have designed very simple workflow using some simple nodes.
    as given in the tutorial i am able to run my workflow using test browser.
    .its pefectly working.
    i would like to know the ways of triggering the workflow from java
    clients.
    Is subscribing to message broker is the only way or we have some other
    simpler
    ways?
    thanx

Maybe you are looking for

  • Need some help with a Business Process monitor PPO Collector

    We have one particular monitor that won't return any value, consistently gray. Monitoring scenario is Shopping Cart/PPO process - we have cases where Shopping carts fail to create purchase orders in our ECC system. We can see the errors, and have cre

  • Blue Ray discs supported?

    On my MacPro I have an OPTIARC DVD RW AD-7170A burner. Can I burn Blue Ray discs with it? Or there must be a particular burner for Blue Ray discs? Tnx

  • BAPI_SALESORDER_CHANGE

    Hi All, I have a requirement to change the reasons for rejection for selective items in the sales order. but when i use BAPI_SALESORDER_CHANGE. i get the error: Field ABGRU cannot be changed VBAPKOM 0003000ready for input. Sales document not changed.

  • WARRENTY CHECK ON COUNTER

    CAN ANYONE GUIDE ME HOW TO CHECK WARRENTY ON RUNNING HOURS OR KM BASIS FOR AN VEHICLE. FROM WHERE SYSTEM WILL PICK COUNTER READING IF I AM CREATING A MASTER WARRENTY ON COUNTER KM.

  • How to update the spry region?

    there is a spry region that bound to a dateset for to show the dataset's records. when i reload the ds,how should i refresh the spry region?