Checkboxes that keep their value after a refresh

Hi
I am trying to work with Checkboxes in an HTML region which will make another region appear or disappear when they are checked or unchecked. As I understand it I need to submit the page to make regions appear or disappear - but when I do this by default the checkbox forgets its value.
My checkbox is based on the static love: STATIC2:;Y which should make it ticked when the value is 'Y' and unticked when it is 'N'. I have set its default value to Y.
I have read online about how to make a checkbox remember its value by putting a computation on it that will set the value of the checkbox to 'N' when it is null. Unfortunately when I refresh the page - if the checkbox is ticked then everything is fine (as it was before) - but if it is unticked then I suddenly get two checkboxes - both of which are ticked and one of which has an 'N' after it.
Does anyone have any idea what I'm doing wrong? It's driving me mad trying to achieve something that that I'd expect to just work without any effort.
I am using Apex 4.1.1.00.23
Thanks
Dan

user5476823 wrote:
HiWelcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already)), and update your forum profile with a real handle instead of "user5476823".
When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
<li>Full APEX version
<li>Full DB/version/edition/host OS
<li>Web server architecture (EPG, OHS or APEX listener/host OS)
<li>Browser(s) and version(s) used
<li>Theme
<li>Template(s)
<li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
I am trying to work with Checkboxes in an HTML region which will make another region appear or disappear when they are checked or unchecked. As I understand it I need to submit the page to make regions appear or disappear - but when I do this by default the checkbox forgets its value.
My checkbox is based on the static love: STATIC2:;Y which should make it ticked when the value is 'Y' and unticked when it is 'N'. I have set its default value to Y.
I have read online about how to make a checkbox remember its value by putting a computation on it that will set the value of the checkbox to 'N' when it is null. Unfortunately when I refresh the page - if the checkbox is ticked then everything is fine (as it was before) - but if it is unticked then I suddenly get two checkboxes - both of which are ticked and one of which has an 'N' after it.
Does anyone have any idea what I'm doing wrong? It's driving me mad trying to achieve something that that I'd expect to just work without any effort.Don't set the checkbox value to "N". Leave the default as null, and check that the value is "Y" or null as necessary.
APEX checkboxes probably don't work in the way you expect: a checkbox is displayed for each value in the LOV. With the checkbox item LOV Display Extra Values property set to Yes, extra values that are not included in the LOV definition&mdash;like your "N" default&mdash;will be displayed as additional checkboxes.
See +{message:id=10738376}+ for a similar situation.

Similar Messages

  • Keep page position after a refresh

    Hello,
    I need a solution for the following problem regarding a J2EE web application : after a page refresh (let's say an automatic page refresh), I want the user to see the page in the same position as it was before the refresh.
    (Suppose the user is at the end of a pretty long page, and normally, after the refresh the response will give the page at its beginning.)
    I suppose some client side scripting (javascript) will solve the problem, but any help would be appreciated.
    Thanks,
    George

    Normally you can add bookmarks to the page to demarcate different sections of the page, like this:
    <a name="sec103"></a> When the page refreshes it should go back to the last bookmark that the user passed by.

  • How to delete a junk mail that keeps coming back after deleting it from the junk box?

    I have a junk mail from February that I really want to delete but it keeps coming back after deleting it several times. It comes back in the junk mail as 'read'.
    How should I remove it?
    Thanks for your help in advance!

    If the email provider is Google, try going to the gmail web portal, (log on from a computer or your iPad using safari), and manually delete the contents of your junk and trash.
    I did this today, and the reappearing junk has not (as of yet) reappeared.  Knocking on wood.

  • Keep login value after validation

    Hi,
    i'm learning Dreamweaver and doing a login page.
    Is it possible, when I submit my Login Form, to keep the
    value I entered in the login texfield and display a error message?
    Ex: Form method="post"
    If it's valid, redirect to page x
    If not, redirect to the same form, display the message"
    Invalid password" and keep the wonrg value in the Login field.
    thanks,
    Rosline

    Hi,
    yes of course,
    can you post the link, or the source code where is the
    problem,
    T

  • Keep the value  after a event

    I am designing a page .on its left i place some condition for searching and a button named search. on its right one table for result.
    when i click the search button ,it trigger a event which do a searching according to those conditions.Then ,the table display result.
    but,those condition which is in the textinput,choice,...disappear.
    I want to keep these value .
    Please help me!

    I don't understand, both questions seem to be about saving selected state, which Attila answered nicely. You can save and bind to the selected value as a page property.
    Did I misunderstand, do you have another question?
    Here's a working example from a page, which looks almost exactly like Attila's post:
    the ui nodes:
    <bc4j:rootAppModuleScope name="EmpAppModule" >
    <contents>
    <header text="Search" >
    <contents>
    <form name="search" >
    <contents>
    <inlineMessage prompt="Search" vAlign="middle" >
    <contents>
    <bc4j:viewObjectScope name="EmpView" >
    <contents>
    <flowLayout>
    <contents>
    <choice name="attrName"
    data:selectedValue="attrName@ctrl:page"
    shortDesc="Search Column">
    <contents>
    <bc4j:region automatic="true" >
    <bc4j:attrStamp>
    <option>
    <boundAttribute name="text" >
    <bc4j:attrDefProperty name="name" />
    </boundAttribute>
    <boundAttribute name="value" >
    <bc4j:attrDefProperty name="name" />
    </boundAttribute>
    </option>
    </bc4j:attrStamp>
    </bc4j:region>
    </contents>
    </choice>
    <textInput name="attrValue" columns="20"
    data:text="attrValue@ctrl:page"
    shortDesc="Search"/>
    </contents>
    </flowLayout>
    </contents>
    </bc4j:viewObjectScope>
    </contents>
    <end>
    <submitButton text="Go" ctrl:event="search" />
    </end>
    </inlineMessage>
    </contents>
    </form>
    </contents>
    </header>
    and the event handler
    <event name="search" >
    <!-- using the ApplicationModule causes it to be checked out from the
    ApplicationPool. It is released using stateful mode. -->
    <bc4j:findRootAppModule name="EmpAppModule" >
    <!-- establish the ViewObject scope -->
    <bc4j:findViewObject name="EmpView" >
    <!-- search for the view criteria -->
    <bc4j:findByExample>
    <bc4j:exampleRow ignoreCase="true" >
    <bc4j:exampleAttribute comparison="equals" >
    <bc4j:nameBinding><bc4j:parameter name="attrName" /></bc4j:nameBinding>
    <bc4j:valueBinding><bc4j:parameter name="attrValue" /></bc4j:valueBinding>
    </bc4j:exampleAttribute>
    </bc4j:exampleRow>
    </bc4j:findByExample>
    <bc4j:executeQuery/>
    <!-- store the current search criteria as page properties -->
    <bc4j:setPageProperty name="attrName" >
    <bc4j:parameter name="attrName" />
    </bc4j:setPageProperty>
    <bc4j:setPageProperty name="attrValue" >
    <bc4j:parameter name="attrValue" />
    </bc4j:setPageProperty>
    </bc4j:findViewObject>
    </bc4j:findRootAppModule>
    </event>

  • Need multiple checkboxes to autofill their values into a separate textbox as they are checked

    Hi,
    I have a form that requires the user to check a box regarding what articles they want mailed out to a participant depending on which client they are affiliated with and the language they speak. I am using 1 form for 7 clients. There is a separate page for each client in english and spanish, so the entire form has 16 pages with 2,988 checkboxes in the entire document (a little over 200 in each page besides the first and last page). The last page contains a textbox labled Summary, and it should provide a summary of all the items checked in the document. The first page contains a dropdown menu of each client and a radio button set with the language selection. Theoretically only one page will be populated at a time, so there will be no more than 200 checkboxes checked in the entire document.
    As the articles are checked I want the checkbox name to automatically populate into the summary textbox on the last page. The code I'm using is below, but I can't get it to work.
    I don't get a script error, but there is nothing populating in the summary textbox.
    Can someone tell me what I'm doing wrong?
    The JS I am trying to get to work is the following:
    form1.SummaryPage.SummaryText::calculate - (JavaScript, client)
    // Custom Calculate script
    (function () {
    var i, v, s = "";
    // Loop through the 2988 check boxes
    for (i = 1; i < 2989; i += 1) {
    // Get the value of the current checkbox
    v = getField("checkbox " + i).valueAsString;
    // Concatenate check box value to string if not deselected
    if (v !== "Off") s+= v + "\r";
    // Set this field value
    event.value = s;

    Hi,
    This looks like code from an AcroForm.  A Designer form does not have a getField method, try something like;
    xfa.resolveNode("checkbox"+1).rawValue
    And at the end use;
    this.rawValue = s;
    Code in a calculate event does not seem to report any errors, try testing it in a click event
    Regards
    Bruce

  • Pixel perfect transformable vector shapes that keep their borders while scaling..?

    What is the best approach to creating a vector rectangle that could have a gradient fill and a solid border of, say, 3 pixels and this shape could be animated (seperately for W and H) while no anti-aliasing or warping of the border would occur?
    Is it best to start with a AI shape or a native AE shape?
    I have noticed that both AE and AI can have faded borders, there are semi transparent pixels on the edge of the border so it is not a clean 3 pixel solid. I have also noticed that its difficult to create an extact width and height even while taking the border into account.
    I can't calculate it to the pixel like I would in CSS. So is there any working method to create extact pixels for AE?
    Thanks

    As I re-read your qustion I thought you might be asking how to scale a shape layer with a stroke but keep the stroke the same size visually so that a shape layer with a stroke of 10 pixels would still have a stroke of ten pixels when scaled to 200%. If that is what you want then add this expression to the stroke with and scale the shape layer with the transform>scale property.
    sf = transform.scale[0] / 100;
    sv = value;
    sv / sf

  • Safari keeps closing even after restore/refresh

    Hi
    Iphone 3Gs latest iOS, after a couple of seconds safari closes to home screen, this also happens with maps, itunes and app store. Facebook and ebay apps still working as is my wifi connection. Ive tried restoring the phone twice, tried syncing several times and cleared cookies etc.
    Any suggestions?!

    Greetings,
    Did you Repair Disk Permissions before and after installing Safari 4? If not, do that now. Then try creating
    a new user account to see if the same random crashes happen there? If they do, the problem affects your
    whole system and not just your regular user account. If the crashing doesn't happen in that new user
    account, then try this:
    Quit Safari if it's running and open System Preferences>Network.
    In the DNS Server tab, make sure IPv6 is turned off, and enter these two DNS servers to replace the ones you currently have:
    208.67.222.222
    208.67.220.220
    click Apply Now and quit System Preferences.
    Next, do these things in order:
    1. Go to Home/Library/Cookies and delete the Cookies.plist file.
    2. Go to Home/Library/Caches/com.apple.Safari and delete the contents of that folder.
    3. Go to Home/Library/Caches/com.apple.Safari/Web Page Previews and delete the contents of that folder.
    4. If you don't want to use the Top Sites feature, open Terminal and paste in this command:
    defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2
    5. Go to Home/Library/Caches/Metadata/Safari and delete the contents of that folder.
    6. Go to Home/Library/Caches/Safari and delete the contents of that folder.
    7. Go to Home/Library/Safari and delete these files (if you have them):
    Downloads.plist
    History.plist
    Form Values
    LastSession.plist
    WebpageIcons.db
    Then restart Safari and see if the problem is still there.

  • Keeping element value after re-launch

    Hi,
    I restart my wf through an event (using SWE_EVENT_CREATE). There is an element that contains a string that is filled in by the user the first time, and I want to reuse it when the workflow starts again.
    However, it is initialized automatically when the wf is relaunched. How can I keep it so I don`t have to ask it again to the user?
    Thank you very much for your time,
    Ivson

    Hi Ivson,
    You are using a custom program to "retrigger" a workflow, right?
    That means that a new workitem will get created, with no knowledge of the previous workitem with the same key.
    You can try changing the custom program, to retrieve some of the info and paas that on in the event-->WF binding, or you can somehow create a custom table with all of the containerelements you want to use, in that case, in the custom program you retrieve all of that data and pass that on to a buffer/transparent table and as the first step of the workflow you retrieve that data, plus in every step you have to create conditions which checks if this is a new workflow, or if this has been retriggered.
    All in all quite some work, maybe it's better for the users to live with the inconvenience.
    What is the reason exactly for retriggering the workflow?
    I did this some time ago, but before retriggering the flows, I made sure that no user interaction took place and that no master data was altered, only then it was safe to retrigger them.
    Kind regards, Rob Dielemans

  • How can I get rid of a second App Store ID that keeps popping up after I enter mine?

    My son borrowed my iPad for a road trip. I deleted his ID in settings but it won't go away! Anybody?

    Settings > iTunes and App Store > Apple ID = Sign Out...
    Then Sign In using the preferred Apple ID.
    Note:
    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID
    Apple ID FAQs  >  http://support.apple.com/kb/HT5622

  • Email deleted that keep on downloading after being deleted

    I delete a large number of emails from my business email accounts, and I get them downloaded again. It is frustrating

    Oh, forgot too ask, are they in a folder called recovered items?
    Do these files exist anywhere else on your drive?
    Is some web page or tab open to downloads from either of those sites?
    Do you speak Japanese?
    https://twitter.com/yutashimo
    You could safely look at thise files in a Hex Editor...
    http://ridiculousfish.com/hexfiend/

  • How to retain value in LoV item in Tabular Form, after Page Refresh

    Hi,
    I have a tabular form, which contains 2 items(columns), of type "Select List - named LoV".
    Now, 2nd item(column) in tabular form, that LoV should get populated based on user's selection value in first item LoV.
    1. So how do I refer to the value, that user selected in first item's LoV? I will have to use this value as reference in LoV query of my 2nd item ( on this tabular form)
    2. Everytime I select value in first item LoV, page gets refreshed, as my requirement is to calculate 2nd item's LoV based on selected value in first item. So after this page refresh, first item LoV loses its value that was selected before the page refresh happened. So how do i retain this value in first item LoV? I have an unconditional process, that on every submit(refresh) of page, I set all my items with their corresponding values. But problem is what do i mention there to refer to this first item ( of type LoV) of tabular form?
    I looked in view source of my page, this item is referred as f03.
    So i used "apex_application.g_f03", to set this item to its value, in my uncoditional submit process. But it did not work. I tried to refer this item as "f03" in this unconditional submit process. But still it did not help, the selected item loses its value after page refresh(submit).
    Please help.
    Thanks and Regards,
    Ravi.

    Hi Rave,
    You will have to use Javascript and Ajax to change the values as ApEx submissions will lose your results unless they are saved into the database.
    Remember, that as you are using a tabular form there will be lots of items called f01, fo2, fo3 etc on the page (one per row).
    Regards
    Michael
    Edited by: MKii on Jun 4, 2009 10:13 AM

  • I have an old text message that keeps appearing in my messgaes after i have deleted it, how do i fix this?

    I recently upgraded to iOS 5 and now i keep having an old text message that keeps coming back after deleting it, i have tried resetting my settings and closing the messages app to start again, i have yet to try restoring my phone i just want to know if anyone can come up with some alternative, thanks!

    Hey I have been having the SAME issue. It is so annoyning. I have the 4S and iOS 5 and I restored it and everything and it is still there. I havent been able to find anything, I think Im just going to go to the Apple store and see if I can get a new one.

  • HT4859 does anyone have any idea how one can keep their data on iPad after leaving icloud as it appears that you loose all data when doing this...its killing me!!!

    does anyone have any idea how one can keep their data on iPad after leaving icloud as it appears that you loose all data when doing this...its killing me!!!

    rtilghman wrote:
    telling me to buy a new router is NOT a solution.
    And why not? Apple is selling these things like BigMacs. They can't make enough of them. You've been suffering since May because you refuse to get a decent router.
    Can you imagine if a company that makes a refrigerator told me that I needed to upgrade my electrical system to rectify a problem with their device? What kind of response IS that?!?!
    What if the problem with their device is that it requires a new-fangled "grounded" outlet and your circa 1890 house doesn't have grounded outlets. Would you refuse to purchase a $ 25 adapter on principle?

  • JSF keeps displaying old values after Validation Phase fails

    Hi all,
    I would like to ask some help in understanding a particular behaviour that JSF shows when Validation Phase fails.
    I'm using:
    - Tomcat 7.0.2
    - JSF 1.2_12
    - RichFaces 3.3.3
    Problem description.
    I wrote a form with 4 input fields: an inputText and 3 selectOneMenu. The inputText is required while the selectOneMenus don't require any validation.
    Attached to the first selectOneMenu (row 32), is an a4j:support tag so that, whenever the change event is fired, the list of items of the second
    and the third selectOneMenu (row 44 and 58) are correctly filled (note that the mandatory of the inputText is ignored thanks to the ajaxSingle attribute).
    In particular, after loading the two lists of items, the actionListener forces the value of the second and the third selectOneMenu to null.
    This mechanism seems to work fine until I submit the whole form without filling the input text: as expected, JSF validation fails but if I change the value of
    the first selectOneMenu again (causing a new submit), the page keeps displaying the values specified before JSF validation failed for the second and the third
    selectOneMenu (note that the actionListener is still called and the values of the second and the third selectOneMenu are still forced to null).
    Since I'm using a simple PhaseListener, I noticed the following: before JSF validation fails, every time I change the value of the first selectOneMenu, JSF life
    cycle always calls the get method for the second and the third selectOneMenu during the Render Response Phase. In this way, JSF is able to "see" that
    those values have been set to null during the Invoke Application Phase.
    After validation fails, JSF stops calling those getters when I change the value of the first selectOneMenu.
    I hope my explanation was clear enough, thanks a lot for your help.
    Regards,
    Nico
    Web Page
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich">
    <head>
      <title>Prove Rich</title>
    </head>
    <body>
      <h2>Prove Rich</h2>
      <f:view>
      <a4j:outputPanel ajaxRendered="true">
        <h:messages style="color:red" />
      </a4j:outputPanel>
      <h:form>
      <p>
         Input required: <h:inputText value="#{provaProbReplyBean.inputRequired}" required="true" />
      </p>
      <p>
           <h:outputText value="Scegli il canale:" />
           <h:selectOneMenu value="#{provaProbReplyBean.canale}">
            <f:selectItem itemLabel="--" itemValue="" />
            <f:selectItem itemLabel="Profamily" itemValue="Profamily" />
            <f:selectItem itemLabel="Captive" itemValue="Captive" />
            <a4j:support event="onchange" action="#{provaProbReplyBean.caricaProcBanche}"
                                  ajaxSingle="true" reRender="procedure, banche" />
         </h:selectOneMenu>
      </p>
      <p>
           <h:outputText value="Scegli la procedura:" />
           <h:selectOneMenu id="procedure" value="#{provaProbReplyBean.procedura}">
            <f:selectItem itemLabel="--" itemValue="" />
            <f:selectItems value="#{provaProbReplyBean.procedureList}" />
            <!-- immediately save the current value -->
            <a4j:support event="onchange" ajaxSingle="true" />
         </h:selectOneMenu>
      </p>
      <p>
           <h:outputText value="Scegli la banca:" />
           <h:selectOneMenu id="banche" value="#{provaProbReplyBean.banca}">
            <f:selectItem itemLabel="--" itemValue="" />
            <f:selectItems value="#{provaProbReplyBean.bancheList}" />
            <!-- immediately save the current value -->
            <a4j:support event="onchange" ajaxSingle="true" />
         </h:selectOneMenu>
      </p>
      <p><h:commandButton value="Submit" /></p>
      </h:form>
      </f:view>
    </body>
    </html>
    Bean
    public class ProvaProbReply {
         private String inputRequired;
         private String canale;
         private String procedura;
         private String banca;
         private Map<String, List<SelectItem>> canaliProc = new HashMap<String, List<SelectItem>>();
         private Map<String, List<SelectItem>> canaliBanche = new HashMap<String, List<SelectItem>>();
         private List<SelectItem> procedureList = new ArrayList<SelectItem>();
         private List<SelectItem> bancheList = new ArrayList<SelectItem>();
         public ProvaProbReply() {
              List<SelectItem> l = new ArrayList<SelectItem>();
              l.add(new SelectItem("Cessione del quinto"));
              l.add(new SelectItem("Credito al consumo"));
              l.add(new SelectItem("Mutui"));
              canaliProc.put("Profamily", l);
              l = new ArrayList<SelectItem>();
              l.add(new SelectItem("Credito al consumo"));
              canaliProc.put("Captive", l);
              l = new ArrayList<SelectItem>();
              canaliBanche.put("Profamily", l);
              l = new ArrayList<SelectItem>();
              l.add(new SelectItem("BDL"));
              l.add(new SelectItem("BM"));
              l.add(new SelectItem("BPM"));
              l.add(new SelectItem("CRA"));
              canaliBanche.put("Captive", l);
         public String getInputRequired() {
              return inputRequired;
         public void setInputRequired(String ir) {
              inputRequired = ir;
         public String getCanale() {
              return canale;
         public void setCanale(String c) {
              canale = c;
         public String getProcedura() {
              System.out.println("\ngetProcedura called\n");
              return procedura;
         public void setProcedura(String p) {
              procedura = p;
         public String getBanca() {
              System.out.println("\ngetBanca called\n");
              return banca;
         public void setBanca(String b) {
              banca = b;
         public List<SelectItem> getProcedureList() {
              return procedureList;
         public List<SelectItem> getBancheList() {
              return bancheList;
         public String caricaProcBanche() {
              System.out.println("\nListener called\n");
              procedureList.clear();
              bancheList.clear();
              if(canale != null && !canale.equals("")) {
                   procedureList.addAll(canaliProc.get(canale));
                   bancheList.addAll(canaliBanche.get(canale));
              System.out.println("BEFORE setting:\n");
              System.out.println("\nProcedura: "+procedura+"\n");
              System.out.println("Banca: "+banca+"\n");
              procedura = null;
              banca = null;
              System.out.println("\n\n\nAFTER setting:\n");
              System.out.println("\nProcedura: "+procedura+"\n");
              System.out.println("Banca: "+banca+"\n");
              return "";
    }Edited by: 869000 on 28-giu-2011 14.05

    I'm thinking this has to do with the fact that the UIComponents use the localValue after validation fails. This prevents the values from being overwritten when re-rendering the page, i.e. the inputs keep the value set by the user.
    The solution is to manipulate the components directly during the AJAX request when the first pull down is changed. Use the binding attribute to place them into your bean and clear the value directly. That way it will not matter that the expression is not evaluated.

Maybe you are looking for

  • Equipment with projects how to?

    Hi all! Here are some questions about equipment, I only want to get an image about it. Can you explain for me how equipment is use agains the project, on which object, WBS, networks, activities or all?  (I saw that I coud use it in work centers but t

  • How to get the Replacement Program iphone 5 in Peru

    Hi, I'm from Peru, I got an iphone 5 and the wake button isn't working, I put the seriel number and it´s eligible for the program, well my question is how can I get my iphone fix in Peru, we dont have a Apple Repair Center here, I hope you can help m

  • CRM Survey Data Extraction

    Hi,   I am going to extract CRM Survey data.The questionnaire is created in CRM using CRM_SURVEY_SUIT and the same is used in opportunity transaction. I  am using 0SVY_DATA_1 to extract the survey data.But the keyfigure values filled in the survey fo

  • TS1702 Who do I speak to regarding an App Store purchase issue ?

    Who do I speak to regarding an App Store purchase issue ?

  • Problem with dbcontrol

    os: windows server 2003 db: 10.2.0.4 dbcontrol configured automatically after db creation i get the following url for dbcontrol https://blah-blah-0815.saxony.germany.de:1158/em blah-blah-0815 is the maschine and saxony.germany.de is the domain but fo