I'm trying to make a call to a soap web service. Where can i find working page flow and xpl files? Seems difficult to get started with the user guide documentation. The only example so far seems to be from this thread. http://mail-archive.objectweb.org/ops-users/2004-11/msg00262.html
Thanks in advance. -- 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 |
There is documentation here http://www.orbeon.com/ops/doc/processors-delegation#d12e376 I'm not sure how much help this is because the service has been shut down and the wsdl file isn't available either. But it did call an Apache Axis webservice through the delegation processor, which I think is what you are asking for. Note that you can use the attribute select= to extract the contents from the envelope, as it were. <!-- Prepare call, getting ID from preferences --> <p:processor name="oxf:xslt"> <p:input name="data" href="/site-prefs.xml"/> <p:input name="config"> <delegation:execute service="StandardService" operation="getTrainingAndCertificationByFacilityID" xsl:version="2.0" xmlns:delegation="http://orbeon.org/oxf/xml/delegation"> <facilityID><xsl:value-of select="/preferences/ssdb-facility-id"/></facilityID> </delegation:execute> </p:input> <p:output name="data" id="call-1"/> </p:processor> <!-- Define the interface --> <p:processor name="oxf:delegation"> <p:input name="interface"> <config> <service id="StandardService" type="webservice" style="rpc" endpoint="http://www.nacse.org/neesSiteSpecs/services/StandardService"> <operation nsuri="http://service.ssdb.nacse.org" name="getTrainingAndCertificationByFacilityID" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" select="//multiRef" /> </service> </config> </p:input> <p:input name="data"><empty/></p:input> <p:input name="call" href="#call-1"/> <p:output name="data" id="ssdb-1"/> </p:processor> ----- Original Message ----- From: <[hidden email]> To: <[hidden email]> Sent: Thursday, January 25, 2007 8:23 PM Subject: [ops-users] newbie request for web service example > I'm trying to make a call to a soap web service. Where can i find working page flow and xpl files? Seems difficult to get started > with the user guide documentation. The only example so far seems to be from this thread. > http://mail-archive.objectweb.org/ops-users/2004-11/msg00262.html > > Thanks in advance. > > -- 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 |
Hi,
I updated the last version of CVS and now on every submission I get the following error: XForms error: Error tag name "xxf:server-events" is not allowed. Possible tag names are: <divs>,<itemsets>,<load>,<message>,<repeat-indexes>,<repeats>,<script>,<setf ocus>,<submission>(schema: oxf:/ops/xforms/xforms-server-response.rng) Does version 3.5.beta has changed something of submissions with respect version 3.5.M1?? Thanks Jordi -----Mensaje original----- De: Hank Ratzesberger [mailto:[hidden email]] Enviado el: viernes, 26 de enero de 2007 18:00 Para: [hidden email] Asunto: Re: [ops-users] newbie request for web service example There is documentation here http://www.orbeon.com/ops/doc/processors-delegation#d12e376 I'm not sure how much help this is because the service has been shut down and the wsdl file isn't available either. But it did call an Apache Axis webservice through the delegation processor, which I think is what you are asking for. Note that you can use the attribute select= to extract the contents from the envelope, as it were. <!-- Prepare call, getting ID from preferences --> <p:processor name="oxf:xslt"> <p:input name="data" href="/site-prefs.xml"/> <p:input name="config"> <delegation:execute service="StandardService" operation="getTrainingAndCertificationByFacilityID" xsl:version="2.0" xmlns:delegation="http://orbeon.org/oxf/xml/delegation"> <facilityID><xsl:value-of select="/preferences/ssdb-facility-id"/></facilityID> </delegation:execute> </p:input> <p:output name="data" id="call-1"/> </p:processor> <!-- Define the interface --> <p:processor name="oxf:delegation"> <p:input name="interface"> <config> <service id="StandardService" type="webservice" style="rpc" endpoint="http://www.nacse.org/neesSiteSpecs/services/StandardService"> <operation nsuri="http://service.ssdb.nacse.org" name="getTrainingAndCertificationByFacilityID" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" select="//multiRef" /> </service> </config> </p:input> <p:input name="data"><empty/></p:input> <p:input name="call" href="#call-1"/> <p:output name="data" id="ssdb-1"/> </p:processor> ----- Original Message ----- From: <[hidden email]> To: <[hidden email]> Sent: Thursday, January 25, 2007 8:23 PM Subject: [ops-users] newbie request for web service example > I'm trying to make a call to a soap web service. Where can i find working page flow and xpl files? Seems difficult to get started > with the user guide documentation. The only example so far seems to be from this thread. > http://mail-archive.objectweb.org/ops-users/2004-11/msg00262.html > > Thanks in advance. > > -- 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 |
Administrator
|
Jordi,
Do you have a stale "ops" directory under your resources by any chance? -Erik Jordi Amatller wrote: > Hi, > > I updated the last version of CVS and now on every submission I get the > following error: > > XForms error: Error tag name "xxf:server-events" is not allowed. Possible > tag names are: > <divs>,<itemsets>,<load>,<message>,<repeat-indexes>,<repeats>,<script>,<setf > ocus>,<submission>(schema: oxf:/ops/xforms/xforms-server-response.rng) > > Does version 3.5.beta has changed something of submissions with respect > version 3.5.M1?? > > Thanks > Jordi > > -----Mensaje original----- > De: Hank Ratzesberger [mailto:[hidden email]] > Enviado el: viernes, 26 de enero de 2007 18:00 > Para: [hidden email] > Asunto: Re: [ops-users] newbie request for web service example > > > There is documentation here > > http://www.orbeon.com/ops/doc/processors-delegation#d12e376 > > I'm not sure how much help this is because the service has > been shut down and the wsdl file isn't available either. > But it did call an Apache Axis webservice through the > delegation processor, which I think is what you are asking > for. > > Note that you can use the attribute select= to extract the > contents from the envelope, as it were. > > <!-- Prepare call, getting ID from preferences --> > <p:processor name="oxf:xslt"> > <p:input name="data" href="/site-prefs.xml"/> > <p:input name="config"> > <delegation:execute service="StandardService" > operation="getTrainingAndCertificationByFacilityID" > xsl:version="2.0" > xmlns:delegation="http://orbeon.org/oxf/xml/delegation"> > <facilityID><xsl:value-of > select="/preferences/ssdb-facility-id"/></facilityID> > </delegation:execute> > </p:input> > <p:output name="data" id="call-1"/> > </p:processor> > > <!-- Define the interface --> > <p:processor name="oxf:delegation"> > <p:input name="interface"> > <config> > <service id="StandardService" type="webservice" style="rpc" > > endpoint="http://www.nacse.org/neesSiteSpecs/services/StandardService"> > <operation nsuri="http://service.ssdb.nacse.org" > name="getTrainingAndCertificationByFacilityID" > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > select="//multiRef" /> > </service> > </config> > </p:input> > <p:input name="data"><empty/></p:input> > <p:input name="call" href="#call-1"/> > <p:output name="data" id="ssdb-1"/> > </p:processor> > > ----- Original Message ----- > From: <[hidden email]> > To: <[hidden email]> > Sent: Thursday, January 25, 2007 8:23 PM > Subject: [ops-users] newbie request for web service example > > >> I'm trying to make a call to a soap web service. Where can i find working > page flow and xpl files? Seems difficult to get started >> with the user guide documentation. The only example so far seems to be > from this thread. >> http://mail-archive.objectweb.org/ops-users/2004-11/msg00262.html >> >> Thanks in advance. >> >> > > > > > -- Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- 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 |
Hi Erik,
I see all the structure has changed. No more examples-portal, ops folders,... Should we change to this new structure? I am not able to get working the old structure with the new orbeon libs. Jordi -----Mensaje original----- De: Erik Bruchez [mailto:[hidden email]] En nombre de Erik Bruchez Enviado el: viernes, 26 de enero de 2007 21:15 Para: [hidden email] Asunto: Re: [ops-users] Submissions Jordi, Do you have a stale "ops" directory under your resources by any chance? -Erik Jordi Amatller wrote: > Hi, > > I updated the last version of CVS and now on every submission I get the > following error: > > XForms error: Error tag name "xxf:server-events" is not allowed. Possible > tag names are: > <divs>,<itemsets>,<load>,<message>,<repeat-indexes>,<repeats>,<script>,<setf > ocus>,<submission>(schema: oxf:/ops/xforms/xforms-server-response.rng) > > Does version 3.5.beta has changed something of submissions with respect > version 3.5.M1?? > > Thanks > Jordi > > -----Mensaje original----- > De: Hank Ratzesberger [mailto:[hidden email]] > Enviado el: viernes, 26 de enero de 2007 18:00 > Para: [hidden email] > Asunto: Re: [ops-users] newbie request for web service example > > > There is documentation here > > http://www.orbeon.com/ops/doc/processors-delegation#d12e376 > > I'm not sure how much help this is because the service has > been shut down and the wsdl file isn't available either. > But it did call an Apache Axis webservice through the > delegation processor, which I think is what you are asking > for. > > Note that you can use the attribute select= to extract the > contents from the envelope, as it were. > > <!-- Prepare call, getting ID from preferences --> > <p:processor name="oxf:xslt"> > <p:input name="data" href="/site-prefs.xml"/> > <p:input name="config"> > <delegation:execute service="StandardService" > operation="getTrainingAndCertificationByFacilityID" > xsl:version="2.0" > xmlns:delegation="http://orbeon.org/oxf/xml/delegation"> > <facilityID><xsl:value-of > select="/preferences/ssdb-facility-id"/></facilityID> > </delegation:execute> > </p:input> > <p:output name="data" id="call-1"/> > </p:processor> > > <!-- Define the interface --> > <p:processor name="oxf:delegation"> > <p:input name="interface"> > <config> > <service id="StandardService" type="webservice" style="rpc" > > endpoint="http://www.nacse.org/neesSiteSpecs/services/StandardService"> > <operation nsuri="http://service.ssdb.nacse.org" > name="getTrainingAndCertificationByFacilityID" > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > select="//multiRef" /> > </service> > </config> > </p:input> > <p:input name="data"><empty/></p:input> > <p:input name="call" href="#call-1"/> > <p:output name="data" id="ssdb-1"/> > </p:processor> > > ----- Original Message ----- > From: <[hidden email]> > To: <[hidden email]> > Sent: Thursday, January 25, 2007 8:23 PM > Subject: [ops-users] newbie request for web service example > > >> I'm trying to make a call to a soap web service. Where can i find working > page flow and xpl files? Seems difficult to get started >> with the user guide documentation. The only example so far seems to be > from this thread. >> http://mail-archive.objectweb.org/ops-users/2004-11/msg00262.html >> >> Thanks in advance. >> >> > > > > > -- Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- 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 |
In reply to this post by Erik Bruchez
Hi Erik, I've solved the problem. I updated to the new structure.
Is this beta version optimized? It seems to me that loads pages much faster than version 3.5M1 Regards, Jordi -----Mensaje original----- De: Erik Bruchez [mailto:[hidden email]] En nombre de Erik Bruchez Enviado el: viernes, 26 de enero de 2007 21:15 Para: [hidden email] Asunto: Re: [ops-users] Submissions Jordi, Do you have a stale "ops" directory under your resources by any chance? -Erik Jordi Amatller wrote: > Hi, > > I updated the last version of CVS and now on every submission I get the > following error: > > XForms error: Error tag name "xxf:server-events" is not allowed. Possible > tag names are: > <divs>,<itemsets>,<load>,<message>,<repeat-indexes>,<repeats>,<script>,<setf > ocus>,<submission>(schema: oxf:/ops/xforms/xforms-server-response.rng) > > Does version 3.5.beta has changed something of submissions with respect > version 3.5.M1?? > > Thanks > Jordi > > -----Mensaje original----- > De: Hank Ratzesberger [mailto:[hidden email]] > Enviado el: viernes, 26 de enero de 2007 18:00 > Para: [hidden email] > Asunto: Re: [ops-users] newbie request for web service example > > > There is documentation here > > http://www.orbeon.com/ops/doc/processors-delegation#d12e376 > > I'm not sure how much help this is because the service has > been shut down and the wsdl file isn't available either. > But it did call an Apache Axis webservice through the > delegation processor, which I think is what you are asking > for. > > Note that you can use the attribute select= to extract the > contents from the envelope, as it were. > > <!-- Prepare call, getting ID from preferences --> > <p:processor name="oxf:xslt"> > <p:input name="data" href="/site-prefs.xml"/> > <p:input name="config"> > <delegation:execute service="StandardService" > operation="getTrainingAndCertificationByFacilityID" > xsl:version="2.0" > xmlns:delegation="http://orbeon.org/oxf/xml/delegation"> > <facilityID><xsl:value-of > select="/preferences/ssdb-facility-id"/></facilityID> > </delegation:execute> > </p:input> > <p:output name="data" id="call-1"/> > </p:processor> > > <!-- Define the interface --> > <p:processor name="oxf:delegation"> > <p:input name="interface"> > <config> > <service id="StandardService" type="webservice" style="rpc" > > endpoint="http://www.nacse.org/neesSiteSpecs/services/StandardService"> > <operation nsuri="http://service.ssdb.nacse.org" > name="getTrainingAndCertificationByFacilityID" > encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" > select="//multiRef" /> > </service> > </config> > </p:input> > <p:input name="data"><empty/></p:input> > <p:input name="call" href="#call-1"/> > <p:output name="data" id="ssdb-1"/> > </p:processor> > > ----- Original Message ----- > From: <[hidden email]> > To: <[hidden email]> > Sent: Thursday, January 25, 2007 8:23 PM > Subject: [ops-users] newbie request for web service example > > >> I'm trying to make a call to a soap web service. Where can i find working > page flow and xpl files? Seems difficult to get started >> with the user guide documentation. The only example so far seems to be > from this thread. >> http://mail-archive.objectweb.org/ops-users/2004-11/msg00262.html >> >> Thanks in advance. >> >> > > > > > -- Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- 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 |
Administrator
|
The old custom JSR-168-based examples portal is gone, which means that
yes, the examples should now display faster. -Erik Jordi Amatller wrote: > Hi Erik, I've solved the problem. I updated to the new structure. > > Is this beta version optimized? > It seems to me that loads pages much faster than version 3.5M1 > > Regards, > Jordi > > -----Mensaje original----- > De: Erik Bruchez [mailto:[hidden email]] En nombre de Erik Bruchez > Enviado el: viernes, 26 de enero de 2007 21:15 > Para: [hidden email] > Asunto: Re: [ops-users] Submissions > > Jordi, > > Do you have a stale "ops" directory under your resources by any chance? > > -Erik > > Jordi Amatller wrote: >> Hi, >> >> I updated the last version of CVS and now on every submission I get the >> following error: >> >> XForms error: Error tag name "xxf:server-events" is not allowed. Possible >> tag names are: >> > <divs>,<itemsets>,<load>,<message>,<repeat-indexes>,<repeats>,<script>,<setf >> ocus>,<submission>(schema: oxf:/ops/xforms/xforms-server-response.rng) >> >> Does version 3.5.beta has changed something of submissions with respect >> version 3.5.M1?? >> >> Thanks >> Jordi >> >> -----Mensaje original----- >> De: Hank Ratzesberger [mailto:[hidden email]] >> Enviado el: viernes, 26 de enero de 2007 18:00 >> Para: [hidden email] >> Asunto: Re: [ops-users] newbie request for web service example >> >> >> There is documentation here >> >> http://www.orbeon.com/ops/doc/processors-delegation#d12e376 >> >> I'm not sure how much help this is because the service has >> been shut down and the wsdl file isn't available either. >> But it did call an Apache Axis webservice through the >> delegation processor, which I think is what you are asking >> for. >> >> Note that you can use the attribute select= to extract the >> contents from the envelope, as it were. >> >> <!-- Prepare call, getting ID from preferences --> >> <p:processor name="oxf:xslt"> >> <p:input name="data" href="/site-prefs.xml"/> >> <p:input name="config"> >> <delegation:execute service="StandardService" >> operation="getTrainingAndCertificationByFacilityID" >> xsl:version="2.0" >> xmlns:delegation="http://orbeon.org/oxf/xml/delegation"> >> <facilityID><xsl:value-of >> select="/preferences/ssdb-facility-id"/></facilityID> >> </delegation:execute> >> </p:input> >> <p:output name="data" id="call-1"/> >> </p:processor> >> >> <!-- Define the interface --> >> <p:processor name="oxf:delegation"> >> <p:input name="interface"> >> <config> >> <service id="StandardService" type="webservice" style="rpc" >> >> endpoint="http://www.nacse.org/neesSiteSpecs/services/StandardService"> >> <operation nsuri="http://service.ssdb.nacse.org" >> name="getTrainingAndCertificationByFacilityID" >> encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" >> select="//multiRef" /> >> </service> >> </config> >> </p:input> >> <p:input name="data"><empty/></p:input> >> <p:input name="call" href="#call-1"/> >> <p:output name="data" id="ssdb-1"/> >> </p:processor> >> >> ----- Original Message ----- >> From: <[hidden email]> >> To: <[hidden email]> >> Sent: Thursday, January 25, 2007 8:23 PM >> Subject: [ops-users] newbie request for web service example >> >> >>> I'm trying to make a call to a soap web service. Where can i find working >> page flow and xpl files? Seems difficult to get started >>> with the user guide documentation. The only example so far seems to be >> from this thread. >>> http://mail-archive.objectweb.org/ops-users/2004-11/msg00262.html >>> >>> Thanks in advance. >>> >>> >> >> >> >> > > -- Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- 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 |
Ok, very much faster indeed.
Thanks, Jordi -----Mensaje original----- De: Erik Bruchez [mailto:[hidden email]] En nombre de Erik Bruchez Enviado el: sábado, 27 de enero de 2007 14:55 Para: [hidden email] Asunto: Re: [ops-users] Submissions The old custom JSR-168-based examples portal is gone, which means that yes, the examples should now display faster. -Erik Jordi Amatller wrote: > Hi Erik, I've solved the problem. I updated to the new structure. > > Is this beta version optimized? > It seems to me that loads pages much faster than version 3.5M1 > > Regards, > Jordi > > -----Mensaje original----- > De: Erik Bruchez [mailto:[hidden email]] En nombre de Erik Bruchez > Enviado el: viernes, 26 de enero de 2007 21:15 > Para: [hidden email] > Asunto: Re: [ops-users] Submissions > > Jordi, > > Do you have a stale "ops" directory under your resources by any chance? > > -Erik > > Jordi Amatller wrote: >> Hi, >> >> I updated the last version of CVS and now on every submission I get the >> following error: >> >> XForms error: Error tag name "xxf:server-events" is not allowed. Possible >> tag names are: >> > >> ocus>,<submission>(schema: oxf:/ops/xforms/xforms-server-response.rng) >> >> Does version 3.5.beta has changed something of submissions with respect >> version 3.5.M1?? >> >> Thanks >> Jordi >> >> -----Mensaje original----- >> De: Hank Ratzesberger [mailto:[hidden email]] >> Enviado el: viernes, 26 de enero de 2007 18:00 >> Para: [hidden email] >> Asunto: Re: [ops-users] newbie request for web service example >> >> >> There is documentation here >> >> http://www.orbeon.com/ops/doc/processors-delegation#d12e376 >> >> I'm not sure how much help this is because the service has >> been shut down and the wsdl file isn't available either. >> But it did call an Apache Axis webservice through the >> delegation processor, which I think is what you are asking >> for. >> >> Note that you can use the attribute select= to extract the >> contents from the envelope, as it were. >> >> <!-- Prepare call, getting ID from preferences --> >> <p:processor name="oxf:xslt"> >> <p:input name="data" href="/site-prefs.xml"/> >> <p:input name="config"> >> <delegation:execute service="StandardService" >> operation="getTrainingAndCertificationByFacilityID" >> xsl:version="2.0" >> xmlns:delegation="http://orbeon.org/oxf/xml/delegation"> >> <facilityID><xsl:value-of >> select="/preferences/ssdb-facility-id"/></facilityID> >> </delegation:execute> >> </p:input> >> <p:output name="data" id="call-1"/> >> </p:processor> >> >> <!-- Define the interface --> >> <p:processor name="oxf:delegation"> >> <p:input name="interface"> >> <config> >> <service id="StandardService" type="webservice" style="rpc" >> >> endpoint="http://www.nacse.org/neesSiteSpecs/services/StandardService"> >> <operation nsuri="http://service.ssdb.nacse.org" >> name="getTrainingAndCertificationByFacilityID" >> encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" >> select="//multiRef" /> >> </service> >> </config> >> </p:input> >> <p:input name="data"><empty/></p:input> >> <p:input name="call" href="#call-1"/> >> <p:output name="data" id="ssdb-1"/> >> </p:processor> >> >> ----- Original Message ----- >> From: <[hidden email]> >> To: <[hidden email]> >> Sent: Thursday, January 25, 2007 8:23 PM >> Subject: [ops-users] newbie request for web service example >> >> >>> I'm trying to make a call to a soap web service. Where can i find >> page flow and xpl files? Seems difficult to get started >>> with the user guide documentation. The only example so far seems to be >> from this thread. >>> http://mail-archive.objectweb.org/ops-users/2004-11/msg00262.html >>> >>> Thanks in advance. >>> >>> >> >> >> >> > > -- Orbeon Forms - Web Forms for the Enterprise Done the Right Way http://www.orbeon.com/ -- 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 |
Free forum by Nabble | Edit this page |