"Cannot find xforms-submission processor" ?

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

"Cannot find xforms-submission processor" ?

flyingzumwalt
I'm trying out the xforms-submission processor.  Right now I'm just using it to query an exist database and pass the results to an http serializer.  I've included a copy of the XPL pipeline below.  When I try to run it, I get this error:   Cannot find processor factory with name "{<A href="http://www.orbeon.com/oxf/processors}xforms-submission">http://www.orbeon.com/oxf/processors}xforms-submission"

Does anybody know what's up with this?

I'm running ops-3.5.M1.200608310259

Here is the XPL pipeline:

          xmlns:oxf="http://www.orbeon.com/oxf/processors"
          xmlns:xforms="http://www.w3.org/2002/xforms" 
  xmlns:xxforms="http://orbeon.org/oxf/xml/xforms">


<!-- 
This pipeline is meant to be called directly as an HTTP URL.  
It retrieves data from an exist database and returns the data 
to the requester via an HTTP serializer processor.
-->
<p:param name="data" type="output"/>

<p:processor name="oxf:xforms-submission">  
<p:input name="submission">  
<xforms:submission method="post" action="/exist/db/mshlf/test/temp" />  
</p:input>  
<p:input name="request">
<exist:query xmlns:exist="http://exist.sourceforge.net/NS/exist"><!-- start="first item to be returned"  max="max items to be returned" -->
                    <exist:text>/*</exist:text>
                    <!--<exist:properties>-->
                        <!--<exist:property name="name1" value="value1"/>-->
                    <!--</exist:properties>-->
                </exist:query>
</p:input>  
<p:output name="response" id="retrieved-data"/>  
</p:processor>
<p:processor name="oxf:http-serializer" xmlns:p="http://www.orbeon.com/oxf/pipeline">  
<p:input name="config">  
<config>  
<!-- This makes sure that the correct content type is sent to the client. 
In this particular case, this is not strictly necessary, as the content type provided 
by the input document would be used anyway. -->  
<content-type>text/xml</content-type>  
<force-content-type>false</force-content-type>  
</config>  
</p:input>  
<p:input name="data" href="#retrieved-data"/>  
</p:processor>
</p:config>



Matt Zumwalt
MediaShelf, LLC







--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: "Cannot find xforms-submission processor" ?

Erik Bruchez
Administrator
Matt,

 > I'm trying out the xforms-submission processor.  Right now I'm just
 > using it to query an exist database and pass the results to an http
 > serializer.  I've included a copy of the XPL pipeline below.  When I
 > try to run it, I get this error: Cannot find processor factory with
 > name "{http://www.orbeon.com/oxf/processors}xforms-submission"
 >
 > Does anybody know what's up with this?
 >
 > I'm running ops-3.5.M1.200608310259

The oxf:xforms-submission processor is more recent than the build you
are using. Just get a nightly build from here:

   http://forge.objectweb.org/nightlybuilds/ops/ops/

-Erik

--
Orbeon - XForms Everywhere:
http://www.orbeon.com/blog/




--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

RE: "Cannot find xforms-submission processor" ?

Ryan Puddephatt
In reply to this post by flyingzumwalt
Have you tried a more recent version of OPS, I believe it is a fairly new processor
 
Ryan
 

Ryan Puddephatt
Software Engineer
 

Teleflex Group - IT UK
1 Michaelson Square
Livingston
West Lothian
Scotland
EH54 7DP
 
e> [hidden email]
t> +44(0)1506 407 110
f> +44(0)1506 407 108
w> www.teleflex.com

 


From: Matt Zumwalt [mailto:[hidden email]]
Sent: 23 October 2006 20:49
To: [hidden email]
Subject: [ops-users] "Cannot find xforms-submission processor" ?

I'm trying out the xforms-submission processor. Right now I'm just using it to query an exist database and pass the results to an http serializer. I've included a copy of the XPL pipeline below. When I try to run it, I get this error: Cannot find processor factory with name "{<A href="http://www.orbeon.com/oxf/processors}xforms-submission">http://www.orbeon.com/oxf/processors}xforms-submission"

Does anybody know what's up with this?

I'm running ops-3.5.M1.200608310259

Here is the XPL pipeline:



<!--
This pipeline is meant to be called directly as an HTTP URL.
It retrieves data from an exist database and returns the data
to the requester via an HTTP serializer processor.
-->
<p:param name="data" type="output"/>

<p:processor name="oxf:xforms-submission">
<p:input name="submission">
<xforms:submission method="post" action="/exist/db/mshlf/test/temp" />
</p:input>
<p:input name="request">
<exist:query xmlns:exist="http://exist.sourceforge.net/NS/exist"><!-- start="first item to be returned" max="max items to be returned" -->
<exist:text>/*</exist:text>
<!--<exist:properties>-->
<!--<exist:property name="name1" value="value1"/>-->
<!--</exist:properties>-->
</exist:query>
</p:input>
<p:output name="response" id="retrieved-data"/>
</p:processor>
<p:processor name="oxf:http-serializer" xmlns:p="http://www.orbeon.com/oxf/pipeline">
<p:input name="config">
<config>
<!-- This makes sure that the correct content type is sent to the client.
In this particular case, this is not strictly necessary, as the content type provided
by the input document would be used anyway. -->
<content-type>text/xml</content-type>
<force-content-type>false</force-content-type>
</config>
</p:input>
<p:input name="data" href="#retrieved-data"/>
</p:processor>
</p:config>



Matt Zumwalt
MediaShelf, LLC







--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws
Reply | Threaded
Open this post in threaded view
|

Re: Re: "Cannot find xforms-submission processor" ?

flyingzumwalt
In reply to this post by flyingzumwalt
Grabbed the nightly build.  That solved it.

Thanks,
Matt



--
You receive this message as a subscriber of the [hidden email] mailing list.
To unsubscribe: mailto:[hidden email]
For general help: mailto:[hidden email]?subject=help
ObjectWeb mailing lists service home page: http://www.objectweb.org/wws