Login  Register

Re: Re: Re: Re: Re: Orbeon using HttpClient to open a connection to itself?

Posted by Erik Bruchez-3 on Nov 19, 2009; 4:36pm
URL: https://discuss.orbeon.com/Orbeon-using-HttpClient-to-open-a-connection-to-itself-tp622658p624080.html

Bart,

So one question was: "WHY is orbeon trying to open the connection".

A connection has to be opened somewhere, right? Since no absolute URL
is provided, Orbeon has to rewrite that URL to build one. To do so, it
uses the incoming request URI as obtained from the Servlet API.

You can override this in your properties-local.xml with the following property:

<property as="xs:anyURI"  name="oxf.url-rewriting.service.base-uri"
value="http://localhost:8080/orbeon"/>

See:

http://wiki.orbeon.com/forms/doc/developer-guide/url-rewriting#TOC-Examples-of-service-URL-resolution

-Erik

2009/11/19 Bart Ottenkamp <[hidden email]>:

> It's also in the log file:
> 2009-11-13 10:38:17,262 DEBUG XPathCache  -
> makeObject(/e-formulieren/formAction)
> here is the submission in my .xhml:
>             <xforms:submission
>                 id = "broker-200724065-submission"
>                 ref = "instance('form-instance')/formcontent"
>                 xxforms:show-progress = "false"
>                 method = "post"
>                 action = "/e-formulieren/formAction"
>                 replace = "instance"
>                 instance = "result-instance">
>                 <xforms:delete
>                     ev:event = "xforms-submit"
>                     context =
> "instance('form-instance')/formcontent/form-info"
>                     nodeset = "brokerConnection"
>                     at = "1"/>
>                 <xforms:delete
>                     ev:event = "xforms-submit"
>                     context =
> "instance('broker-instance')/brokerConnections/brokerConnection[@brID='200724065']"
>                     nodeset = "files"
>                     at = "1"/>
>                 <xforms:insert
>                     ev:event = "xforms-submit"
>                     context =
> "instance('broker-instance')/brokerConnections/brokerConnection[@brID='200724065']"
>                     nodeset = "files"
>                     origin = "instance('files-instance')"/>
>                 <xforms:insert
>                     ev:event = "xforms-submit"
>                     context =
> "instance('form-instance')/formcontent/form-info"
>                     nodeset = "brokerConnection"
>                     origin =
> "instance('broker-instance')/brokerConnections/brokerConnection[@brID='200724065']"/>
>                 <xforms:setvalue ev:event = "xforms-submit-done" ref =
> "instance('broker-instance')/brokerConnections/brokerConnection[@brID =
> '200724065']/active">false</xforms:setvalue>
>                 <xforms:setvalue ev:event = "xforms-submit-done" ref =
> "instance('broker-instance')/brokerConnections/brokerConnection[@brID =
> '200724065']/inactive">true</xforms:setvalue>
>                 <xforms:message ev:event = "xforms-submit-error" level =
> "modal">Het formulier is niet volledig of niet correct ingevuld. Controleer
> of alle verplichte velden zijn ingevuld en controleer of het formulier geen
> foutmeldingen geeft.</xforms:message>
>             </xforms:submission>
> and here is my page-flow.xml:
> <config xmlns="http://www.orbeon.com/oxf/controller"
> xmlns:oxf="http://www.orbeon.com/oxf/processors">
> <!-- welcome -->
> <page path-info="/welcome/" view="pages/home.xhtml" />
> <!-- Formulieren -->
> <page path-info="/e-formulieren/form/(.*)/(.*)/start(.*)"
> matcher="oxf:perl5-matcher"
> model="forms/xpl/start-form.xpl" view="forms/pages/${1}/${2}.xhtml" />
> <page path-info="/e-formulieren/form/(.*)/stop(.*)"
> matcher="oxf:perl5-matcher"
> view="forms/pages/${1}/stop.xhtml" />
> <page path-info="/e-formulieren/pdf" model="forms/xpl/pdf.xpl" />
> <page path-info="/e-formulieren/html" model="forms/xpl/html.xpl" />
> <!-- broker -->
> <page path-info="/e-formulieren/formAction" view="forms/xpl/formAction.xpl"
> />
> <!-- epiloque -->
> <epilogue url="oxf:/config/epilogue.xpl" />
> </config>
>
> and here the formAction.xpl:
> <p:config
>     xmlns:p = "http://www.orbeon.com/oxf/pipeline"
>     xmlns:oxf = "http://www.orbeon.com/oxf/processors"
>     xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
>     xmlns:divosa = "http://www.divosa.com/ops/processors">
>     <p:param name = "instance" type = "input"/>
>     <p:param name = "data" type = "output"/>
>     <p:processor name = "divosa:formActionProcessor">
>         <p:input name = "data" href = "#instance"/>
>         <p:output name = "data" ref = "data"/>
>     </p:processor>
> </p:config>
> and in custom-processors.xml:
> <processor name="divosa:formActionProcessor">
> <class
> name="com.emaxx.eformulieren.web.core.processor.ExxellenceFormActionProcessor"
> />
> </processor>
> and ExxellenceFormActionProcessor simply extends from SimpleProcessor...
>
> hope this helps?
> Best regards,
> Bart
> 2009/11/19 Erik Bruchez <[hidden email]>
>>
>> So what URL did you specify on broker-200724065-submission ?
>>
>> -Erik
>>
>> 2009/11/18 Bart Ottenkamp <[hidden email]>:
>> > Hai Erik,
>> > thanks for the reply. I turned the logging on and got the logging that I
>> > attached to this mail...
>> > 1. It starts by making all 'makeObject' calls
>> > 2. then there is some 'actions' while filling in the form
>> > 3. then there is this line:
>> > "
>> > DEBUG XFormsServer  - XForms - event - dispatching {name:
>> > "xforms-submit-serialize", id: "broker-200724065-submission", location:
>> > "line 578 of XFormsModelSubmission.java"}
>> > "
>> > this is exactly the submission that I do, the
>> > "broker-200724065-submission"...
>> > 4. and then comes this part:
>> > 2009-11-13 10:38:17,277 DEBUG XFormsServer  - XForms -     connection -
>> > setting cookie {JSESSIONID: "F50099E2686BF6065AFBAE538CB2E44F"}
>> > 2009-11-13 10:38:17,277 DEBUG XFormsServer  - XForms -     connection -
>> > opening URL connection {URL:
>> > "https://waterschapshuis-acc.exxellence.nl/ob/e-formulieren/formAction"}
>> > 2009-11-13 10:38:17,277 DEBUG XFormsServer  - XForms -     submission -
>> > setting request body {mediatype: "application/xml", body: "<?xml
>> > version="1.0" encoding="UTF-8"?><formcontent
>> > xmlns:f="http://orbeon.org/oxf/xml/formatting"
>> > xmlns:xi="http://www.w3.org/2001/XInclude"
>> > xmlns:ev="http://www.w3.org/2001/xml-events"
>> > xmlns:xforms="http://www.w3.org/2002/xforms"
>> > xmlns:xhtml="http://www.w3.org/1999/xhtml"
>> > xmlns:xs="http://www.w3.org/2001/XMLSchema"
>> > xmlns:divosa="http://www.divosa.com/ops/processors"
>> > xmlns:dig="http://www.emaxx.org/adapters/digid"
>> > xmlns:webservicesnl="http://www.webservices.nl/soap/"
>> > xmlns:xxforms="http://orbeon.org/oxf/xml/xforms"
>> > xmlns:widget="http://orbeon.org/oxf/xml/widget"
>> > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>> >
>> > xmlns:exf="http://www.exforms.org/exf/1-0"><midoffice><correlationId>1258104734538</correlationId><referenceNumber>39</referenceNumber></midoffice><form-info
>> > group-name="Exxellence" user-name="niels" modified-date="12-11-2009
>> > 16:24:47" form-name="Schade_of_overlast_melden_aan_het_waterschap"
>> > gemeente=""><brokerConnection brID="200724065"><files><file
>> > xsi:type="xs:anyURI" filename="" mediatype=""
>> >
>> > size=""/></files><centralEmail/></brokerConnection></form-info><constants/><widgetTree><widget
>> > value="200625000"
>> > description="Schade_of_overlast_melden_aan_het_waterschap"
>> > addOverview="true" css="waterschapshuis" email="" google=""
>> > overviewName="Afronden" overviewRelevance="" pdfEndPage=""
>> > pdfFrontPage="voorblad-waterschapshuis" pdfTemplatePage=""
>> > widgetType="form"><widget value="200723828" description="Introductie"
>> > widgetType="tab"><widget value="200723819" description="146587250"
>> > align="none" class="" divStyle="" helptext="" includeInOverview="false"
>> > title="Introductie" widgetType="block"><widget value="200723817"
>> > description="146984113" align="none" class="" divStyle="" helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723818" description="146636402" class="" helptext=""
>> > hinttext=""
>> > modelValue="Met dit formulier kunt u schade of overlast aan het
>> > waterschap
>> > melden." widgetType="outputText"/></widget><widget value="200723820"
>> > description="147448359" align="none" class="" divStyle="" helptext=""
>> > includeInOverview="true" title="Invullen" widgetType="block"><widget
>> > value="200723821" description="147198798" class="" helptext=""
>> > hinttext=""
>> > modelValue="Vragen met een * moet u invullen."
>> > widgetType="outputText"/></widget><widget value="200723822"
>> > description="166159693" align="none" class="" divStyle="" helptext=""
>> > includeInOverview="true" title="Benodigde bijlagen en informatie"
>> > widgetType="block"><widget value="200723823" description="166523333"
>> > class="" helptext="" hinttext="" modelValue="U kunt bij uw melding ook
>> > bijlagen toevoegen." widgetType="outputText"/></widget><widget
>> > value="200723824" description="165938556" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723825" description="166401341" class="" helptext=""
>> > hinttext=""
>> > modelValue="&lt;b&gt;Let op!&lt;/b&gt; Als u in het formulier kiest om
>> > de
>> > gegevens en bijlagen per post te versturen, stuur dan de gegevens aan:
>> > [adres waterschap]" widgetType="outputText"/></widget><widget
>> > value="200723826" description="146807527" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" title="Vragen"
>> > widgetType="block"><widget value="200723827" description="146601296"
>> > class="" helptext="" hinttext="" modelValue="Mocht u vragen hebben over
>> > het
>> > invullen van het formulier, dan kunt u ons op werkdagen bereiken.
>> > Raadpleeg
>> > voor de contactgegevens en openingstijden onze website."
>> > widgetType="outputText"/></widget></widget></widget><widget
>> > value="200723831" description="Uw gegevens" widgetType="tab"><widget
>> > value="200723829" description="183871536" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723830" description="184234068" class="" helptext=""
>> > hinttext=""
>> > modelValue="U hoeft uw gegevens niet in te vullen. U kunt de schade of
>> > overlast anoniem melden. Wij kunnen u dan niet laten weten wat wij met
>> > uw
>> > melding doen. " widgetType="outputText"/></widget><widget
>> > value="200723832"
>> > description="184044468" align="horizontal" class="" divStyle=""
>> > helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723833" description="184592977" class="" helptext=""
>> > hinttext=""
>> > modelValue="Wilt u weten wat wij met uw melding doen?*"
>> > widgetType="outputText"/><widget value="200723834" description="1p2"
>> > field="" align="horizontal" appearance="full" constrainttext="" dkd=""
>> > helptext="" initValue="" widgetType="selectOne"><value>Ja</value><widget
>> > value="200723835" description="184760676" selectLabel="Ja"
>> > selectValue="Ja"
>> > widgetType="selectItem"/><widget value="200723836"
>> > description="184906257"
>> > selectLabel="Nee" selectValue="Nee"
>> > widgetType="selectItem"/></widget></widget><widget value="200723837"
>> > description="184035374" align="horizontal" class="" divStyle=""
>> > helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723838" description="184174971" class="" helptext=""
>> > hinttext=""
>> > modelValue="Mogen wij u per e-mail laten weten wat wij met uw melding
>> > doen?*" widgetType="outputText"/><widget value="200723839"
>> > description="1p3"
>> > field="" align="horizontal" appearance="full" constrainttext="" dkd=""
>> > helptext="" initValue="" widgetType="selectOne"><value>Ja</value><widget
>> > value="200723840" description="184026040" selectLabel="Ja"
>> > selectValue="Ja"
>> > widgetType="selectItem"/><widget value="200723841"
>> > description="184320258"
>> > selectLabel="Nee" selectValue="Nee"
>> > widgetType="selectItem"/></widget></widget><widget value="200723879"
>> > description="185009802" align="none" class="" divStyle="" helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723845" description="184046876" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723842" description="184176316" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723843" description="184759089"
>> > class="" helptext="" hinttext="" modelValue="Voorletter(s)*"
>> > widgetType="outputText"/><widget value="200723844"
>> > description="184006401"
>> > field="" constrainttext="Deze voorletters zijn niet goed. Vul alleen
>> > letters
>> > in. Gebruik geen punten. Wijzig de voorletters." dkd="" helptext="Vul
>> > alleen
>> > letters in. Gebruik geen punten." hinttext="" incremental=""
>> > initValue=""
>> > widgetType="inputText" xsdType="" xxforms_maxlength="10"
>> > xxforms_size="10"><value>AF</value></widget></widget><widget
>> > value="200723846" description="184566944" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723847" description="184748593"
>> > class="" helptext="" hinttext="" modelValue="Tussenvoegsel(s)"
>> > widgetType="outputText"/><widget value="200723848"
>> > description="184318999"
>> > field="" constrainttext="" dkd="" helptext="Bijvoorbeeld 'de', 'van',
>> > 'van
>> > der', of 'el'." hinttext="" incremental="" initValue=""
>> > widgetType="inputText" xsdType="" xxforms_maxlength="10"
>> > xxforms_size="10"><value/></widget></widget><widget value="200723849"
>> > description="184137244" align="horizontal" class="" divStyle=""
>> > helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723850" description="184334024" class="" helptext=""
>> > hinttext=""
>> > modelValue="Achternaam*" widgetType="outputText"/><widget
>> > value="200723851"
>> > description="184935784" field="" constrainttext="" dkd="" helptext=""
>> > hinttext="" incremental="" initValue="" widgetType="inputText"
>> > xsdType=""
>> > xxforms_maxlength="200"
>> > xxforms_size=""><value>Tijman</value></widget></widget><widget
>> > value="200723852" description="184049128" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723853" description="184105226"
>> > class="" helptext="" hinttext="" modelValue="Burgerservicenummer*"
>> > widgetType="outputText"/><widget value="200723854"
>> > description="183995407"
>> > field="" constrainttext="Dit burgerservicenummer is niet goed. Wijzig
>> > het
>> > burgerservicenummer." dkd="BSN" helptext="" hinttext="" incremental=""
>> > initValue="" widgetType="inputText" xsdType="" xxforms_maxlength="9"
>> > xxforms_size="9"><value>128446109</value></widget></widget><widget
>> > value="200723855" description="184859670" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723856" description="184675378"
>> > class="" helptext="" hinttext="" modelValue="Postcode*"
>> > widgetType="outputText"/><widget value="200723857"
>> > description="184967050"
>> > field="" constrainttext="Deze postcode is niet goed. Gebruik géén
>> > spatie.
>> > Bijvoorbeeld '1234AB'. Wijzig de postcode." dkd="postcodecheckPostcode1"
>> > helptext="Gebruik géén spatie. Bijvoorbeeld '1234AB'." hinttext=""
>> > incremental="" initValue="" widgetType="inputText" xsdType=""
>> > xxforms_maxlength="6"
>> > xxforms_size="6"><value>7556pe</value></widget></widget><widget
>> > value="200723858" description="184543028" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723859" description="184369347"
>> > class="" helptext="" hinttext="" modelValue="Huisnummer*"
>> > widgetType="outputText"/><widget value="200723860"
>> > description="184262804"
>> > field="" constrainttext="Vul alleen cijfers in."
>> > dkd="postcodecheckHuisnummer1" helptext="Vul alleen cijfers in."
>> > hinttext=""
>> > incremental="" initValue="" widgetType="inputText" xsdType=""
>> > xxforms_maxlength="5"
>> > xxforms_size="5"><value>80</value></widget></widget><widget
>> > value="200723861" description="184315354" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723862" description="184096467"
>> > class="" helptext="" hinttext="" modelValue="Huisletter"
>> > widgetType="outputText"/><widget value="200723863"
>> > description="184375874"
>> > field="" constrainttext="Deze huisnummerletter is niet goed. Vul hier
>> > alleen
>> > een letter in." dkd="" helptext="Bijvoorbeeld 'b' of 'W'." hinttext=""
>> > incremental="" initValue="" widgetType="inputText" xsdType=""
>> > xxforms_maxlength="1" xxforms_size="1"><value/></widget></widget><widget
>> > value="200723864" description="184712729" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723865" description="184526775"
>> > class="" helptext="" hinttext="" modelValue="Huisnummer toevoeging"
>> > widgetType="outputText"/><widget value="200723866"
>> > description="184636137"
>> > field="" constrainttext="Deze huisnummertoevoeging is niet goed. Wijzig
>> > de
>> > huisnummer toevoeging." dkd="" helptext="Bijvoorbeeld 'II' of 'bis'."
>> > hinttext="" incremental="" initValue="" widgetType="inputText"
>> > xsdType=""
>> > xxforms_maxlength="4" xxforms_size="4"><value/></widget></widget><widget
>> > value="200723867" description="184305765" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723868" description="184696604"
>> > class="" helptext="" hinttext="" modelValue="Straatnaam*"
>> > widgetType="outputText"/><widget value="200723869"
>> > description="184457205"
>> > field="" constrainttext="" dkd="postcodecheckStraat1" helptext=""
>> > hinttext="" incremental="" initValue="" widgetType="inputText"
>> > xsdType=""
>> > xxforms_maxlength="24"
>> > xxforms_size="24"><value>Welbergweg</value></widget></widget><widget
>> > value="200723870" description="184573616" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723871" description="184835441"
>> > class="" helptext="" hinttext="" modelValue="Woonplaats*"
>> > widgetType="outputText"/><widget value="200723872"
>> > description="184398424"
>> > field="" constrainttext="" dkd="postcodecheckWoonplaats1" helptext=""
>> > hinttext="" incremental="" initValue="" widgetType="inputText"
>> > xsdType=""
>> > xxforms_maxlength="24" xxforms_size="24"><value>HENGELO
>> > OV</value></widget></widget><widget value="200723873"
>> > description="184842198" align="horizontal" class="" divStyle=""
>> > helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723874" description="184850544" class="" helptext=""
>> > hinttext=""
>> > modelValue="Telefoonnummer*" widgetType="outputText"/><widget
>> > value="200723875" description="184748697" field="" constrainttext="Dit
>> > telefoonnummer is niet goed. Vul tien cijfers in. Gebruik geen streepje,
>> > haakje of spatie. Bijvoorbeeld '0123456789'. Wijzig het telefoonnummer."
>> > dkd="" helptext="Vul tien cijfers in. Gebruik geen streepje of haakje.
>> > Bijvoorbeeld '0123456789'." hinttext="" incremental="" initValue=""
>> > widgetType="inputText" xsdType="" xxforms_maxlength="10"
>> > xxforms_size="10"><value>0742470122</value></widget></widget><widget
>> > value="200723876" description="184859210" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723877" description="184131462"
>> > class="" helptext="" hinttext="" modelValue="E-mailadres*"
>> > widgetType="outputText"/><widget value="200723878"
>> > description="extraEmail"
>> > field="" constrainttext="Dit e-mailadres is niet goed. Een e-mailadres
>> > is
>> > bijvoorbeeld '[hidden email]'. Wijzig het e-mailadres." dkd=""
>> > helptext="" hinttext="" incremental="" initValue=""
>> > widgetType="inputText"
>> > xsdType="" xxforms_maxlength="50"
>> >
>> > xxforms_size=""><value>[hidden email]</value></widget></widget></widget></widget></widget><widget
>> > value="200724004" description="De melding en plaats"
>> > widgetType="tab"><widget value="200723925" description="186192518"
>> > align="none" class="" divStyle="" helptext="" includeInOverview="true"
>> > title="" widgetType="block"><widget value="200723917"
>> > description="185446704" align="horizontal" class="" divStyle=""
>> > helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723918" description="184774908" class="" helptext=""
>> > hinttext=""
>> > modelValue="Waar gaat uw melding over?*"
>> > widgetType="outputText"/><widget
>> > value="200723919" description="2p1" field="" align="none"
>> > appearance="minimal" constrainttext="" dkd="" helptext="" initValue=""
>> > widgetType="selectOne"><value>Waterpeil</value><widget value="200723920"
>> > description="185542953" selectLabel="Keur" selectValue="Keur"
>> > widgetType="selectItem"/><widget value="200723921"
>> > description="184836197"
>> > selectLabel="Waterkwaliteit" selectValue="Waterkwaliteit"
>> > widgetType="selectItem"/><widget value="200723922"
>> > description="184858139"
>> > selectLabel="Waterlopen" selectValue="Waterlopen"
>> > widgetType="selectItem"/><widget value="200723923"
>> > description="184730296"
>> > selectLabel="Waterpeil" selectValue="Waterpeil"
>> > widgetType="selectItem"/><widget value="200723924"
>> > description="184757734"
>> > selectLabel="Wegen" selectValue="Wegen"
>> > widgetType="selectItem"/></widget></widget><widget value="200723933"
>> > description="185453420" align="none" class="" divStyle="" helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200723952" description="185292772" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723953" description="185494083"
>> > class="" helptext="" hinttext="" modelValue="Waar gaat uw melding
>> > over?*"
>> > widgetType="outputText"/><widget value="200723954"
>> > description="185188658"
>> > field="" align="none" appearance="minimal" constrainttext="" dkd=""
>> > helptext="" initValue=""
>> > widgetType="selectOne"><value>Beregenen</value><widget value="200723955"
>> > description="185100392" selectLabel="Beregenen" selectValue="Beregenen"
>> > widgetType="selectItem"/><widget value="200723956"
>> > description="185278770"
>> > selectLabel="Afwijking peil" selectValue="Afwijking_peil"
>> > widgetType="selectItem"/><widget value="200723957"
>> > description="185362813"
>> > selectLabel="Dammen/Duikers" selectValue="Dammen_Duikers"
>> > widgetType="selectItem"/><widget value="200723958"
>> > description="186075709"
>> > selectLabel="Gemalen" selectValue="Gemalen"
>> > widgetType="selectItem"/></widget></widget></widget><widget
>> > value="200723971" description="186344072" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200723972" description="186367277"
>> > class="" helptext="" hinttext="" modelValue="U kunt hier uw melding
>> > verder
>> > omschrijven" widgetType="outputText"/><widget value="200723973"
>> > description="186511987" field="" constrainttext="" dkd="" helptext=""
>> > hinttext="" initValue="" widgetType="textarea" xxforms_cols=""
>> > xxforms_rows=""><value>test Exxellence</value></widget></widget><widget
>> > value="200723979" description="185904801" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" title="De plaats van uw melding"
>> > widgetType="block"><widget value="200723974" description="187292562"
>> > align="horizontal" class="" divStyle="" helptext=""
>> > includeInOverview="true"
>> > title="" widgetType="block"><widget value="200723975"
>> > description="186925010" class="" helptext="" hinttext=""
>> > modelValue="Gaat uw
>> > melding over een plaats bij of op een bepaald adres?*"
>> > widgetType="outputText"/><widget value="200723976" description="2p5"
>> > field="" align="horizontal" appearance="full" constrainttext="" dkd=""
>> > helptext="" initValue=""
>> > widgetType="selectOne"><value>Nee</value><widget
>> > value="200723977" description="186725517" selectLabel="Ja"
>> > selectValue="Ja"
>> > widgetType="selectItem"/><widget value="200723978"
>> > description="187276506"
>> > selectLabel="Nee" selectValue="Nee"
>> > widgetType="selectItem"/></widget></widget><widget value="200724001"
>> > description="187143529" align="horizontal" class="" divStyle=""
>> > helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200724002" description="187419835" class="" helptext=""
>> > hinttext=""
>> > modelValue="U kunt hier de plaats verder omschrijven"
>> > widgetType="outputText"/><widget value="200724003"
>> > description="186940027"
>> > field="" constrainttext="" dkd="" helptext="" hinttext="" initValue=""
>> > widgetType="textarea" xxforms_cols="" xxforms_rows=""><value>test
>> > Exxellence</value></widget></widget></widget></widget></widget><widget
>> > value="200724007" description="Bijlagen toevoegen"
>> > widgetType="tab"><widget
>> > value="200724005" description="187656096" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" title="" widgetType="block"><widget
>> > value="200724006" description="187245229" class="" helptext=""
>> > hinttext=""
>> > modelValue="Wilt u uw melding nog duidelijker maken? Stuur dan een foto
>> > of
>> > document als bijlage mee." widgetType="outputText"/></widget><widget
>> > value="200724014" description="116436573" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" title="Bijlagen"
>> > widgetType="block"><widget value="200724008" description="115900834"
>> > align="horizontal" class="" divStyle="" helptext=""
>> > includeInOverview="true"
>> > title="" widgetType="block"><widget value="200724009"
>> > description="116482147" class="" helptext="" hinttext=""
>> > modelValue="Wilt u
>> > bijlagen meesturen?*" widgetType="outputText"/><widget value="200724010"
>> > description="Post" field="" align="none" appearance="full"
>> > constrainttext=""
>> > dkd="" helptext="" initValue=""
>> > widgetType="selectOne"><value>Nee</value><widget value="200724011"
>> > description="116764802" selectLabel="Nee, ik wil geen bijlagen
>> > meesturen"
>> > selectValue="Nee" widgetType="selectItem"/><widget value="200724012"
>> > description="116028694" selectLabel="Ja, ik stuur de bijlagen digitaal"
>> > selectValue="Ja" widgetType="selectItem"/><widget value="200724013"
>> > description="116042519" selectLabel="Ja, ik stuur het bezwaar en de
>> > bijlagen
>> > per post" selectValue="post"
>> > widgetType="selectItem"/></widget></widget></widget></widget><widget
>> > value="200724028" description="Controleren" widgetType="tab"><widget
>> > value="200724019" description="187073552" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="false" title="Uw ingevulde gegevens
>> > zijn:"
>> > widgetType="block"><widget value="200724020" description="**Overzicht"
>> > align="none" class="" divStyle="" helptext="" includeInOverview="true"
>> > title="" widgetType="block"/><widget value="200724021"
>> > description="187427936" align="horizontal" class="bevestiging"
>> > divStyle=""
>> > helptext="" includeInOverview="false" title=""
>> > widgetType="block"><widget
>> > value="200724022" description="186924641" class="" helptext=""
>> > hinttext=""
>> > modelValue="Zijn de ingevulde gegevens juist?*"
>> > widgetType="outputText"/><widget value="200724023"
>> > description="zijnGegevensJuist" field="" align="horizontal"
>> > appearance="full" constrainttext="" dkd="" helptext="" initValue=""
>> > widgetType="selectOne"><value>Ja</value><widget value="200724024"
>> > description="187362165" selectLabel="Ja" selectValue="Ja"
>> > widgetType="selectItem"/><widget value="200724025"
>> > description="187086324"
>> > selectLabel="Nee" selectValue="Nee"
>> > widgetType="selectItem"/></widget></widget></widget></widget><widget
>> > value="200724066" description="Afronden" widgetType="tab"><widget
>> > value="200724038" description="116162775" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="false" repeatable="" title=""
>> > widgetType="block"><widget value="200724031" description="116111104"
>> > align="none" class="" divStyle="" helptext="" includeInOverview="false"
>> > title="" widgetType="block"><widget value="200724029"
>> > description="116804918" align="none" class="" divStyle="" helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200724030" description="116571569" class="" helptext=""
>> > hinttext=""
>> > modelValue="De gegevens worden naar u toegestuurd. Hierbij worden de
>> > volgende gegevens gebruikt." widgetType="outputText"/></widget><widget
>> > value="200724032" description="116548385" align="horizontal" class=""
>> > divStyle="" helptext="" includeInOverview="true" title=""
>> > widgetType="block"><widget value="200724033" description="116362050"
>> > class="" helptext="" hinttext="" modelValue="E-mailadres"
>> > widgetType="outputText"/><widget value="200724034"
>> > description="115838236"
>> > class="" helptext="" hinttext="" modelValue="@extraEmail"
>> > widgetType="outputText"/></widget><widget value="200724035"
>> > description="116479130" align="horizontal" class="" divStyle=""
>> > helptext=""
>> > includeInOverview="true" title="" widgetType="block"><widget
>> > value="200724036" description="116775743" class="" helptext=""
>> > hinttext=""
>> > modelValue="Gegevens toevoegen als" widgetType="outputText"/><widget
>> > value="200724037" description="116523247" class="" helptext=""
>> > hinttext=""
>> > modelValue="PDF" widgetType="outputText"/></widget></widget><widget
>> > value="200724041" description="116224858" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="false" title=""
>> > widgetType="block"><widget
>> > value="200724039" description="116423665" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" repeatable="" title=""
>> > widgetType="block"><widget value="200724040" description="116370556"
>> > class="" helptext="" hinttext="" modelValue="U kunt het formulier in een
>> > PDF-versie en HTML-versie openen. Kies ‘PDF-versie openen’of
>> > ‘HTML-versie openen’ om dit te doen.&lt;br /&gt; U kunt het
>> > formulier
>> > dan opslaan en afdrukken." widgetType="outputText"/></widget><widget
>> > value="200724042" description="**Knoppen" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="false" title=""
>> > widgetType="block"/></widget><widget value="200724045"
>> > description="116495246" align="none" class="white" divStyle=""
>> > helptext=""
>> > includeInOverview="false" repeatable="" title=""
>> > widgetType="block"><widget
>> > value="200724043" description="116317117" align="none" class=""
>> > divStyle=""
>> > helptext="" includeInOverview="true" repeatable="" title="Verzenden"
>> > widgetType="block"><widget value="200724044" description="116360229"
>> > class="" helptext="" hinttext="" modelValue="Uw melding is ingevuld.
>> > Kies
>> > 'Afronden' om de gegevens te verzenden."
>> > widgetType="outputText"/></widget><widget value="200724046"
>> > description="116226311" align="none" class="" divStyle="" helptext=""
>> > includeInOverview="true" repeatable="" title="Bericht en afhandeling"
>> > widgetType="block"><widget value="200724047" description="116080500"
>> > class="" helptext="" hinttext="" modelValue="Indien u uw e-mailadres
>> > heeft
>> > opgegeven, ontvangt u vandaag een bevestiging van uw melding per e-mail.
>> > Dit
>> > bericht bevat een overzicht van de door u opgegeven gegevens. &lt;br
>> > /&gt;
>> > &lt;br /&gt; Wij nemen binnen [aantal dagen] werkdagen contact met u op
>> > over
>> > de verdere behandeling van uw melding."
>> > widgetType="outputText"/></widget><widget value="200724048"
>> > description="116247332" align="none" class="" divStyle="" helptext=""
>> > includeInOverview="true" repeatable="" title="Contact"
>> > widgetType="block"><widget value="200724049" description="116394157"
>> > class="" helptext="" hinttext="" modelValue="Voor vragen kunt u bellen
>> > [contactgegevens waterschap]."
>> > widgetType="outputText"/></widget></widget><widget value="200724065"
>> > description="Afronden" centralEmail="true" mijnoverheid="false"
>> > ownEmail="false" saveDatabase="false" saveGensource="false" services=""
>> >
>> > widgetType="broker"/></widget></widget></widget></widgetTree></formcontent>"}
>> > 2009-11-13 10:38:17,278 DEBUG PostMethod  - enter
>> > PostMethod.clearRequestBody()
>> > 2009-11-13 10:38:17,278 DEBUG EntityEnclosingMethod  - enter
>> > EntityEnclosingMethod.clearRequestBody()
>> > 2009-11-13 10:38:17,278 DEBUG HttpClient  - enter
>> > HttpClient.executeMethod(HttpMethod)
>> > 2009-11-13 10:38:17,278 DEBUG HttpClient  - enter
>> > HttpClient.executeMethod(HostConfiguration,HttpMethod,HttpState)
>> > 2009-11-13 10:38:17,278 DEBUG MultiThreadedHttpConnectionManager  -
>> > enter
>> > HttpConnectionManager.getConnectionWithTimeout(HostConfiguration, long)
>> > 2009-11-13 10:38:17,278 DEBUG MultiThreadedHttpConnectionManager  -
>> > HttpConnectionManager.getConnection:  config =
>> > HostConfiguration[host=https://waterschapshuis-acc.exxellence.nl],
>> > timeout =
>> > 0
>> > 2009-11-13 10:38:17,278 DEBUG MultiThreadedHttpConnectionManager  -
>> > enter
>> > HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration)
>> > 2009-11-13 10:38:17,278 DEBUG MultiThreadedHttpConnectionManager  -
>> > enter
>> > HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration)
>> > 2009-11-13 10:38:17,278 DEBUG MultiThreadedHttpConnectionManager  -
>> > Allocating new connection,
>> >
>> > hostConfig=HostConfiguration[host=https://waterschapshuis-acc.exxellence.nl]
>> > 2009-11-13 10:38:17,278 DEBUG HttpMethodDirector  - Attempt number 1 to
>> > process request
>> > 2009-11-13 10:38:17,278 DEBUG HttpConnection  - enter
>> > HttpConnection.open()
>> > 2009-11-13 10:38:17,278 DEBUG HttpConnection  - Open connection to
>> > waterschapshuis-acc.exxellence.nl:443
>> > and that's where it goes wrong. The firewall doesn;t allow us to open a
>> > connection (from inside) to waterschapshuis-acc.exxellence.nl:443.
>> > And the big question: WHY is orbeon trying to open the connection. I'm
>> > submitting something, throught a pipline to a java application..., why
>> > is
>> > this trying to open a connection?
>> > I'm lost as you see..
>> > Any ideas?
>> > Hope you can help.
>> > Best regards,
>> > Bart Ottenkamp
>> >
>> > On Wed, Nov 18, 2009 at 5:51 PM, Erik Bruchez <[hidden email]>
>> > wrote:
>> >>
>> >> Bart,
>> >>
>> >> Hard to tell just like this. The difference could come from a slightly
>> >> different network configuration, e.g. DNS configuration.
>> >>
>> >> To see what's happening in Orbeon Forms, try enabling XForms logging:
>> >>
>> >> http://wiki.orbeon.com/forms/doc/developer-guide/xforms-logging
>> >>
>> >> -Erik
>> >>
>> >> On Tue, Nov 17, 2009 at 1:31 AM, Bart Ottenkamp
>> >> <[hidden email]>
>> >> wrote:
>> >> > Hai All,
>> >> > I have succesfully used orbeon for quite a while now and on
>> >> > differennt
>> >> > environments as well, but now I get this strange error about orbeon
>> >> > wantig
>> >> > to open a socket to itself or something.... on one of my
>> >> > environments.
>> >> > Here
>> >> > is some logging:
>> >> >
>> >> > 2009-11-13 10:36:24,627 DEBUG HttpConnection  - enter
>> >> > HttpConnection.open()
>> >> >
>> >> > 2009-11-13 10:36:24,627 DEBUG HttpConnection  - Open connection
>> >> > to waterschapshuis-acc.exxellence.nl:443
>> >> >
>> >> > 2009-11-13 10:36:25,581 DEBUG SimpleJobFactory  - Producing instance
>> >> > of
>> >> > Job
>> >> > 'eXist.User.Sync', class=org.exist.storage.sync.Sync
>> >> >
>> >> > 2009-11-13 10:36:25,581 DEBUG JobRunShell  - Calling execute on job
>> >> > eXist.User.Sync
>> >> >
>> >> >
>> >> >
>> >> >
>> >> >
>> >> > En bij regel 13985:
>> >> >
>> >> > 2009-11-13 10:33:15,526 DEBUG MultiThreadedHttpConnectionManager  -
>> >> > enter
>> >> > HttpConnectionManager.getConnectionWithTimeout(HostConfiguration,
>> >> > long)
>> >> >
>> >> > 2009-11-13 10:33:15,526 DEBUG MultiThreadedHttpConnectionManager  -
>> >> > HttpConnectionManager.getConnection:  config =
>> >> > HostConfiguration[host=https://waterschapshuis-acc.exxellence.nl],
>> >> > timeout =
>> >> > 0
>> >> >
>> >> > 2009-11-13 10:33:15,526 DEBUG MultiThreadedHttpConnectionManager  -
>> >> > enter
>> >> > HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration)
>> >> >
>> >> > 2009-11-13 10:33:15,541 DEBUG MultiThreadedHttpConnectionManager  -
>> >> > enter
>> >> > HttpConnectionManager.ConnectionPool.getHostPool(HostConfiguration)
>> >> >
>> >> > 2009-11-13 10:33:15,541 DEBUG MultiThreadedHttpConnectionManager  -
>> >> > Allocating new connection,
>> >> >
>> >> >
>> >> > hostConfig=HostConfiguration[host=https://waterschapshuis-acc.exxellence.nl]
>> >> >
>> >> > 2009-11-13 10:33:15,544 DEBUG HttpMethodDirector  - Attempt number 1
>> >> > to
>> >> > process request
>> >> >
>> >> > 2009-11-13 10:33:15,545 DEBUG HttpConnection  - enter
>> >> > HttpConnection.open()
>> >> >
>> >> > 2009-11-13 10:33:15,545 DEBUG HttpConnection  - Open connection
>> >> > to waterschapshuis-acc.exxellence.nl:443
>> >> >
>> >> > Does anybody know what Orbeon is trying to do?
>> >> >
>> >> > And why this is going wrong on just one enrironment and not on my
>> >> > other
>> >> > environments??
>> >> >
>> >> > Best regards,
>> >> >
>> >> > Bart Ottenkamp
>> >> >
>> >> > --
>> >> > 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
>> >> > OW2 mailing lists service home page: http://www.ow2.org/wws
>> >> >
>> >> >
>> >>
>> >>
>> >> --
>> >> 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
>> >> OW2 mailing lists service home page: http://www.ow2.org/wws
>> >>
>> >
>> >
>> >
>> > --
>> > 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
>> > OW2 mailing lists service home page: http://www.ow2.org/wws
>> >
>> >
>>
>>
>> --
>> 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
>> OW2 mailing lists service home page: http://www.ow2.org/wws
>>
>
>
>
> --
> 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
> OW2 mailing lists service home page: http://www.ow2.org/wws
>
>


--
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
OW2 mailing lists service home page: http://www.ow2.org/wws