Does & in cle-providers.xml connectionstring work ?

I have following connectstring in the cle-providers.xml file:
<?xml version = '1.0' encoding = 'windows-1252'?>
<cle-providers>
<provider name="OpaServiceProvider" class="oracle.clex.persistence.bc4j.ApplicationModuleProvider">
<property name="persistencebase" value="oravision.opa.persistence.bc4j"/>
<property name="modulename" value="oravision.opa.persistence.bc4j.OpaModule"/>
<property name="connectionstring" value="jdbc:mysql://localhost:3306/opa?ultraDevHack=true&amp;user=root&amp;password=test"/>
<property name="user" value=""/>
<property name="password" value=""/>
<property name="host" value=""/>
<property name="sid" value=""/>
<property name="port" value=""/>
<property name="encryptiontype" value=""/>
<property name="drivertype" value=""/>
<property name="failover" value=""/>
<property name="scope" value="request"/>
<property name="managestate" value="false"/>
</provider>
</cle-providers>
Does the &amp; work ?
The connectstring URL should be:
jdbc:mysql://localhost:3306/opa?ultraDevHack=true&user=root&password=test
which works in the BC4J tester!

Ahhh. The forum isn't showing it as I meant.
This is my connectionstring property:
<property name="connectionstring" value="jdbc:mysql://localhost:3306/opa?ultraDevHack=true& amp; user=root& amp; password=test"/>
<property name="connectionstring" value="jdbc:mysql://localhost:3306/opa?ultraDevHack=true& a m p ; user=root& a m p ; password=test"/>
(without the spaces)
(without the spaces)

Similar Messages

  • Encrypt passwords in cle-providers.xml

    Hi,
    I posted this question on JHeadstart forum but they advised me to find help here.
    I have a JHeadstart application (say the shipped jhsdemo) use 9iAS R2 OC4J 9.0.3 and consider to use OEM for managing the application.
    How can I use encryption to protect the user passwords in cle-providers.xml. I know I must enter encryption value BASE-64, but how can I get the password to be encrypted and how is it decrypted again?
    Another question: why do I need to enter username+password once as part of the jdbc thin URL in "connectionstring" and once as separate arguments "user" and "password"? The same question for db host, sid and port.
    Thnx,
    Rinse Veltman
    My cle-providers.xml:
    <?xml version = '1.0'?>
    <cle-providers>
    <provider name="SomeServiceProvider" class="oracle.clex.persistence.bc4j.ApplicationModuleProvider">
    <property name="persistencebase" value="comp.app.persistence.bc4j"/>
    <property name="modulename" value="comp.app.persistence.bc4j.Bc4jModule"/>
    <property name="connectionstring" value="jdbc:oracle:thin:<user>/<pwd>@<host>:1521:<sid>"/>
    <property name="user" value="<user>"/>
    <property name="password" value="<pwd>"/>
    <property name="host" value="<host>"/>
    <property name="sid" value="<sid>"/>
    <property name="port" value="1521"/>
    <property name="encryptiontype" value=""/>
    <property name="drivertype" value=""/>
    <property name="failover" value=""/>
    <property name="scope" value="request"/>
    <property name="managestate" value="false"/>
    </provider>
    </cle-providers>

    Ahhh. The forum isn't showing it as I meant.
    This is my connectionstring property:
    <property name="connectionstring" value="jdbc:mysql://localhost:3306/opa?ultraDevHack=true& amp; user=root& amp; password=test"/>
    <property name="connectionstring" value="jdbc:mysql://localhost:3306/opa?ultraDevHack=true& a m p ; user=root& a m p ; password=test"/>
    (without the spaces)
    (without the spaces)

  • Reference a dataSource in cle-providers.xml

    How can I reference in cle-providers.xml a dataSource specified in data-sources.xml in my OC4J configuration. So that I can specify my datasources in a generic way
    outside my application?
    My cle-providers.xml :
    <?xml version = '1.0'?>
    <cle-providers>
    <provider name="IarEntryServiceProvider" class="oracle.clex.persistence.bc4j.ApplicationModuleProvider">
    <property name="persistencebase" value="asml.iar.persistence.bc4j"/>
    <property name="modulename" value="asml.iar.persistence.bc4j.IarBc4jModule"/>
    <property name="connectionstring" value="jdbc:oracle:thin:<user>/<pwd>@<host>:1521:<sid>"/>
    <property name="user" value="<user>"/>
    <property name="password" value="<pwd>"/>
    <property name="host" value="<host>"/>
    <property name="sid" value="<sid>"/>
    <property name="port" value="1521"/>
    <property name="encryptiontype" value=""/>
    <property name="drivertype" value=""/>
    <property name="failover" value=""/>
    <property name="scope" value="request"/>
    <property name="managestate" value="false"/>
    </provider>
    </cle-providers>
    My data-sources.xml:
    <?xml version="1.0" standalone='yes'?>
    <!DOCTYPE data-sources PUBLIC "Orion data-sources" " " target="_new">http://xmlns.oracle.com/ias/dtds/data-sources.dtd"> <data-sources>
    <data-source
    class="com.evermind.sql.DriverManagerDataSource"
    name="MyDataSource"
    location="jdbc/MyDataSource"
    connection-driver="oracle.jdbc.driver.OracleDriver"
    url="jdbc:oracle:thin:@<host>:5521:<sid>"
    username="<username>"
    password="<pwd>"
    inactivity-timeout="30"
    />
    </data-sources>
    I also posted this question on cleveland forum. In the JHeadstart documentation I miss a proper description of what
    my options are in cle-providers.xml. In the Jheadstart developer guide there are references to Cleveland docs but
    where can I find these; is it possible to ship these together with the JHeadstart documentation?
    Regards,
    Rinse Veltman
    CIBER Solution Partners

    Rinse,
    Do you want BC4J to use your connection defined in data-sources.xml, instead of its own connection pooling mechanism? Or do you want to use the connection straight in your own code?
    For configuring BC4J to use data-sources.xml, I copied this from the Jdev online help:
    For Local or web module deployment, you can use a JDBC URL or a JDBC data source. However, make sure that you rebuild the Middle Tier BC4J project to make the configuration available to the JSP client. You'll also need to edit the x:\<ORACLE_HOME>\j2ee\home\config\data-sources.xml file to include a matching <location> value that you are using in your BC4J project. By default, local or web module deployments use the JDBC URL connection.
    In combination with the MVC Framework cle-providers.xml, this means you should specify the data-osurces.xml <location> value as the value of the connectionstring attribute within the <provider> element. We have not tested this though...
    Note that although using data-sources.xml is more "standards-based", the connection pooling facility of BC4J is superior with its support for high-water marks. See jdev online help for more info on this. I also think that password encryption is not yet possible in data-sources.xml.
    I could not find the MVC Framework User Guide on OTN anymore. I will check where it is located and let you know.
    Steven Davelaar,
    JHeadstart Team.

  • Sidecar.xml not working with smoothScrolling

    Hi everybody!
    I am struggling with a big problem with the sidecar.xml file because it does not load the <smoothScrolling>always</smooothScolling> instruction.
    I have created a very simple "test" folio with only two articles each made of two pages either in horizontal and vertical, so I have the followinf structure:
    <FOLIO> (main folder)
    sidecar.xml
    <001> (first stack)
    001_v.indd (an indesign file with 1 page 768x1024)
    001_h.indd (an indesign file with 1 page 1024x768)
    <002> (second stack)
    002_v.indd (an indesign file with 2 pages 768x1024)
    002_h.indd (an indesign file with 2 pages 1024x768)
    I have created the sidecar using the utility of Johannes Henseler so I am sure it is correct and here it is (I have just removed the link section which was very long):
    <?xml version="1.0" encoding="UTF-8" standalone="true" ?>
    <sidecar>
              <!--
    sidecar.xml generator by Johannes Henseler
    http://projects.nordsueddesign.de/sidecarxml
    -->
              <!-- article #0 -->
              <entry>
                        <folderName>001</folderName>
                        <articleTitle>Test</articleTitle>
                        <author>Puzzle</author>
                        <kicker>Pilly</kicker>
                        <description>Cover</description>
                        <tags></tags>
                        <isAd>false</isAd>
                        <smoothScrolling>never</smoothScrolling>
                        <isFlattenedStack>false</isFlattenedStack>
              </entry>
              <!-- article #1 -->
              <entry>
                        <folderName>002</folderName>
                        <articleTitle>Test</articleTitle>
                        <author>Puzzle</author>
                        <kicker>Pilly</kicker>
                        <description>First Article</description>
                        <tags></tags>
                        <isAd>false</isAd>
                        <smoothScrolling>always</smoothScrolling>
                        <isFlattenedStack>false</isFlattenedStack>
              </entry>
    </sidecar>
    Well.. what it happens now is that I create a new folio with the Folio Builder Panel and then I import using the multiple article option. Everything seems ok (the two articles are imported and the description, article title, author, kicker are correct) but the "smoothScrolling" results to be deactivated! (in my Italian version I have the following text "Scorrimento uniforme: disattivato (allinea a pagina)" (that I translate as "never") instead I was expecting to have "Scorrimento uniforme: entrambe le direzioni" (that I translate as "always").
    And what is worse is that if I try to modify the property in Indesign using the Folio Builder Panel I get this error message:
    Errore di generazione contenuto.
    [Errore: Gli articoli con scorrimento uniforme devono contenere almeno una pagina singola. Aprite la finestra di dialogo Proprietà per modificare le opzioni di scorrimento uniforme.]
    I try to translate:
    Generating content error.
    Error: the articles with smoothScrolling must contains at least a single page. Open the dialogue window Property to modify the options for the smoothScrolling.
    Actually the Indesign source files 002_v.indd and 002_h.indd have already two pages so I do not understand what the error means. It just says to modify the property, but this means I can not have the smoothScrolling on "always" and I do not understand why!
    I just would like to have a "smoothScrolling" effect between two pages of various articles using the sidecar.xml file!
    Please someone can help me?

    Smooth scrolling and flattenig does not work in combination. I think there
    is no way to enable that.
    —Johannes
    (mobil gesendet)
    Am 01.03.2012 17:19 schrieb "Bob Levine" <[email protected]>:
       Re: Sidecar.xml not working with smoothScrolling  created by Bob Levine<http://forums.adobe.com/people/BobLevine>in
    Digital Publishing Suite - View the full discussion<http://forums.adobe.com/message/4239654#4239654>

  • "Source file does not conform to XML Schema!" error at Import Server

    Dear SDN,
    When I run Import Server the import job stopped with the error "Source file does not conform to XML Schema!" in Log file. I used MDM SP05 Patch01 and HF1.
    Both of 2 Import Server have same problems. Of course it works in Import Manager.
    What do I have to check?
    Regards,
    Eric

    Hi Eric
    Just confirm this...
    One needs to load XML schema file in MDM and can be done by specifying this file in Port .
    Refer this link.
    http://help.sap.com/saphelp_mdm550/helpdata/en/fa/69b20ae0ae4b158a3f6d025b3d3847/content.htm
    Just make sure that corresponding XSD file is specified in the port
    Regards

  • What does HTML have over PDFs when working with data?

    I'm doing some research for a client whose company is moving from PDFs to HTML for their in-house user interfaces.
    What does HTML have over PDFs when working with data?
    Thanks!
    Luke

    PDFs can indeed work with data and can be programmed with javascript. You can do some pretty interesting things with it. It is even possible to create interactive forms on the web using PDF, however it requires server-side support. As a general rule, though, PDFs are terrible as a web interface and it's far easier to work with HTML and PHP.
    HTML is lightweight and PDF isn't (in case that seems like a small thing, it's actually a big negative for PDFs). The success of your PDFs will depend on the versions of acrobat your users use, and getting data in and out of the PDFs will require learning far more about Acrobat's FDF format and XML implementation than you may want to know.

  • Does the ipod nano 7th gen work with Belkin Blue tooth In car hands free? Customer support said it did when I bought it, but the box doesn't say it does and I dont want to open it in case I have to return it.

    Does the ipod nano 7th gen work with Belkin Blue tooth In car hands free? Customer support said it did when I bought it, but the box doesn't say it does and I dont want to open it in case I have to return it.

    If the Belkin supports the A2DP (Stereo Bluetooth) profile then it will work.

  • Does Microsoft Entourage 2008 for mac work with the new Mac OS X v 10.7 Lion

    Does Microsoft Entourage 2008 for mac work with the new Mac OS X v 10.7 Lion?
    I am just about to install Lion just need to check to see if if my work e-mail will work

    Sarah,
    Check this link:
    http://roaringapps.com/app:2533
    It contains some issues that people have encountered with Lion and Office 2008. It appears it can work, but you may have to go through some of the steps a few of the posters there have listed.
    That website also contains a pretty large list of applications and if they will work with Lion.
    Hope this helps! (I am not affiliated in any way with the site linked).

  • Does Smartview 11.1.1.3 work on Windows 7?

    does Smartview 11.1.1.3 work on Windows 7? I think it is officially not supported.
    Anyone with luck using SV on windows 7 and office 2010?
    Office 2010 is very similar to Office 2007 (which is supported, I thijnk, by SV 11.1.1.3)

    Oh, I just found out that our PC clients are on Smartview 11.1.1.3.0 (build 190). How can I apply patch to upgrade to 11.1.1.3.01 for our server and for our PC? I need the latest patch as we are windows 7 and office 2007 users. Do I need to upgrade both SV client (for PC) and SV server?
    Edited by: Essbase Fan on Jun 15, 2010 10:00 PM

  • Why Does Live View In DW Not Work With BC Template?

    The live view using a BC template in DW CS6 shows "PAGE NOT FOUND" in the body section but the header and footer look fine. I should also point out that the index.htm page works fine, it's just the other pages that have this problem. What makes it weirder is that the site works fine in all other modes including when viewing in a normal browser, it's ONLY when in live view! I also noticed that if I delete the .htm extension in the url in the DW browser when in Live View it fixes the problem, but this requires me to do this everytime I want to switch to live view and surely is either a problem with how the BC template files are named or DW CS6 is buggy? Hopefully this is an easy one to answer??

    Hi Alex,
    Thanks for your reply, I have done a video demo at http://screencast.com/t/RsutrvoFn0xZ
    Date: Thu, 14 Feb 2013 05:49:55 -0800
    From: [email protected]
    To: [email protected]
    Subject: Why Does Live View In DW Not Work With BC Template?
        Re: Why Does Live View In DW Not Work With BC Template?
        created by Alex Pavelescu in Dreamweaver & Business Catalyst - View the full discussion
    Hi, Please provide the site url, and if you can, a video demo of the issue you're facing, using http://www.techsmith.com/jing.html, where you could also display the way you have your side setup ( Dreamweaver menu > Site > Site manager > http://screencast.com/t/GqqBk9MY4ck ) Kind Regards,Alex
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5072585#5072585
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5072585#5072585
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5072585#5072585. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver & Business Catalyst by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Why does my Adobe Reader DC stop working when I click scroll down options?

    I used to use PDF Suite 2014 Standard to view pdf files.
    However, tonight a message appeared when I attempted to open files saying ..."if the document does not load then the pdf viewer may not be able to display this type of document"
    I went to the website provided to download Adobe Acrobat Reader DC.
    Although I was able to load pdf documents and fill in forms, the program repeatedly would crash whenever I attempted to click on scroll down options on forms.
    Any help is appreciated
    ....and talk/write slowly for I am not super computer literate.
    Regards,
    Luisa

     Dear Aedesh, Thank you for your assistance.  I did all that you instructed below, regarding uninstalling, and using the Adobe Reader and Acrobat Cleaner Tool.  I restarted my computer, then installed Adobe Acrobat Reader DC (for Windows 7, English and version: Reader DC 2015). I continue to have the problems: (1) When I attempt to use a scroll down option within a pdf form, the program stops working. (2) If I send the pdf to my iPhone, and I open the pdf, I receive the message "Please wait...if the message is not eventually replaced by the proper contents of the document, your pdf viewer may not be able to display this type of document..." However, when I send pdf's created earlier than 4-28-15, I am able to open in my iPhone.I am able to open on my laptop the pdf's created after 4-28-15, but have the scroll option issue  (thank you in advance for your patience)Luisa 
     Luisa Montaini-Klovdahl, Ph.D.Licensed Psychologist &
    Captain, US Army Reserves Medical Service Corps4153 Park Blvd
    Palo Alto, CA 94306
    Telephone: 650.384.6559
    Facsimile: 650.384.6547 This e-mail may contain confidential patient information. If you have received this transmission in error, please delete and contact the sender.   
         From: aadeshs76610910 <[email protected]>
    To: Luisa Montaini-Klovdahl <[email protected]>
    Sent: Thursday, April 30, 2015 9:55 AM
    Subject:  Why does my Adobe Reader DC stop working when I click scroll down options?
    Why does my Adobe Reader DC stop working when I click scroll down options?
    created by aadeshs76610910 in Acrobat Reader - View the full discussionHi Luisa,  Please follow the steps below :- 1) Uninstall Adobe Acrobat Reader DC. 2) Run the cleaning tool Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs3) Restart the computer.4) Install Adobe Acrobat Reader DC using this link Adobe Acrobat Reader DC Install for all versions Let me know if the issue persist.  Regards,Aadesh If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7499212#7499212 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7499212#7499212 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following" 
    Start a new discussion in Acrobat Reader by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • [svn] 2756: -make the flex-sdk-description.xml process work like the trunk.

    Revision: 2756
    Author: [email protected]
    Date: 2008-08-06 08:53:11 -0700 (Wed, 06 Aug 2008)
    Log Message:
    -make the flex-sdk-description.xml process work like the trunk. don't copy the file, create one by echoing the values needed to it.
    -update build.properties, make the release value equal the actual release as in this case 3.1
    bug:https://bugs.adobe.com/jira/browse/SDK-16367
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16367
    Modified Paths:
    flex/sdk/branches/3.1.0/build.properties
    flex/sdk/branches/3.1.0/build.xml
    Removed Paths:
    flex/sdk/branches/3.1.0/collateral/en_US/flex-sdk-description.xml

    Revision: 2756
    Author: [email protected]
    Date: 2008-08-06 08:53:11 -0700 (Wed, 06 Aug 2008)
    Log Message:
    -make the flex-sdk-description.xml process work like the trunk. don't copy the file, create one by echoing the values needed to it.
    -update build.properties, make the release value equal the actual release as in this case 3.1
    bug:https://bugs.adobe.com/jira/browse/SDK-16367
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16367
    Modified Paths:
    flex/sdk/branches/3.1.0/build.properties
    flex/sdk/branches/3.1.0/build.xml
    Removed Paths:
    flex/sdk/branches/3.1.0/collateral/en_US/flex-sdk-description.xml

  • Does the 10.0.2 update work?

    Does the 10.0.2 update work?
    I tried the update to 10.0.2 when it was released but the update failed to work.
    Adobe Application Manager gave the following dialogue:
    "Some updates failed to install. Update is not applicable".
    Apple's Get Info for the application says version 1.0.1 and the Adobe about box says version 10.0.1.19
    I ran "updates" from the After Effects help menu again this morning but the response is "no updates available"
    I have the retail copy of CS5 and used the retail version of the update.
    Pip

    Someone's going to say it, so it may as well be me...
    This is a user-to-user group, not an official Adobe technical support outlet.  It is my understanding that Adobe people such as Todd contribute as part of an unofficial help policy, and we all appreciate the input.
    So sorry if you think these very useful fora are shoddy and didn't meet your expectations!

  • Does Instrument I/O Assistant only work in the activated version of LabView 8.0 and not in evaluation version?

    I'm using the LabVIEW 8.0 evaluation CD and every time I try using the Instrument I/O Assistant I get this error message "Measurement and Automation Explorer or the Instrument I/O Assistant is not installed correctly. Please install these from the LabVIEW Driver CD." So I tried installing both from the Device Driver CD and still it didn't work. I also tried uninstalling all NI softwares and components and reinstalled everything from the LabVIEW evaluation CD and Device Driver CD and still the same result.
    I was wondering maybe the Instrument I/O Assistant will only work after I activate LabVIEW. Is this the reason why I can't use it or does Instrument I/O Assistant also work even if I'm only using the evaluation version? Please help!

    Glynster -
    Yes, Instrument I/O Assistant does work with the evaluation version of LabVIEW 8.0.  However, you need to install Instrument I/O Assistant from a version of the National Instruments Device Driver CD that shipped with LabVIEW 8.0 (or later). 
    NOTE: The link provided for Instrument I/O Assistant 1.0.1 DOES NOT work with LabVIEW 8.0. It is only for LabVIEW 7.x.
    You will need to obtain a Driver CD to get Instrument I/O Assistant to work with LabVIEW 8.0
    -Tommy

  • How does RFC adapter with EO/EOIO work? Kindly help!

    Hi Experts,
            How does a sender or receiver RFC adapter works when QOS is EO or EOIO (Async)? In other words, for EOIO, are the messages are queued? How does this queueing work? Does it use FIFO logic? where do we specify the max limit of messages that can be queued?
    Also what is the significance of 'Initial connection' and 'maximum connections' in communication channel? I have given the default value 1 for both. What should be the ideal value and why?
    In my Async RFC - XI scenario sometimes XI is able to receive the messages but sometimes it doesnot even though the sender system is UP and running.
    I cannot see any messages in SXMB_MONI even though the sender has sent the messade.
    Why RFC adapter is behaving like this? What could be the issue?
    Kindly help!

    EOIO: How does this queueing work? Does it use FIFO logic?
    >> yes it uses FIFO logic in EOIO.
    Also what is the significance of 'Initial connection' and 'maximum connections' in communication channel? I have given the default value 1 for both. What should be the ideal value and why?
    >>>noof rfc connections we are using for connecting to XI to RFC minmum is 1 maximum is 50 bydefault. you increase this value by changing the default setting.
    How does RFC adapter with EO/EOIO work? Kindly help!
    Posted: Mar 21, 2007 4:15 AM 
    Hi Experts,
    How does a sender or receiver RFC adapter works when QOS is EO or EOIO (Async)? In other words, for EOIO, are the messages are queued? How does this queueing work? Does it use FIFO logic? where do we specify the max limit of messages that can be queued?
    Also what is the significance of 'Initial connection' and 'maximum connections' in communication channel? I have given the default value 1 for both. What should be the ideal value and why?
    Why RFC adapter is behaving like this? What could be the issue?
    >>check ur sender RFC adapter. chekc whether data is sent from RFC . see logs in R/3.

Maybe you are looking for