Configuration Template Builder WL8.1 does not work

Hello,
     After spending nearly 2 days now trying to get a Configuration Template
built, I've concluded this simply does not work. Has anyone used the
Config Template builder to package a semi-complex application on top of WLI?
     I'm trying to have 2 of my applications, the JMS and JDBC resources,
and a WLI event generator packaged up for easy deployment to someone
else's server configuration. The problem with this is that there are
required resources for WLI, namely a database. The Pointbase database
included for WLI does not get included in the template automatically.
There are also some flat-out bugs:
If you choose to include a resource adapter "application", such as
jms-xa-adp.rar, the template builder does not bundle this in the
template and deploy it correctly. The template builder restricts you to
putting applications in the relative path starting at ./
For jms-xa-adp.rar, its original location is in $WL_HOME/server/lib, and
the template builder defaults to put it in ./lib of your template.
However, when you create a domain with the template, jms-xa-adp.rar does
not get placed in your ./lib directory. This causes you to then go and
manually edit your config.xml to point back at $WL_HOME/server/lib or to
manually copy jms-xa-adp.rar into your ./lib directory (which the
template mechanism should do for you).
Relative paths in the config.xml file require you to execute the config
builder from the directory of the domain you are making a template for.
The template builder should instead be smart enough to realize that
relative paths in the config.xml file are relative to the directory that
the config.xml is in, not the one you are running the template builder
from. You'll get an error when trying to create the template cause it
won't find the resources if you're not in that directory.
If anyone has successfully used this to package a WLI application in a
template, please share your experiences and how to do so. In the
meantime, I'm claiming there is no way to nicely package up a server
configuration for a WLI app in Weblogic, and this is a big shortcoming.
Weblogic needs a simple transferrable way of creating server
configurations (it tries to do this with the template, but that is
failing). With JBoss, for example, you simply copy your server directory
into another installation. This doesn't work with Weblogic unfortunately
because it puts hard-coded paths in the config.xml file.
Thanks

Russ,
     Thank you for the detailed responses. The only one I'm currently
struggling with still is the #5, with the scripts between the two. One
of the major benefits of using a J2EE App Server is supposed to be the
portability between servers. I find it disconcerting that BEA Weblogic
restricts me to the platform I created the domain on by creating
platform-specific startup/shutdown scripts for only the platform created
on. It's understandable that a script converter would be difficult, but
at least both the .sh/.cmd files should be created from the first time
you make a domain. If the user only wants one or the other, they can
delete the appropriate one. It's also understandable that the
users/deployers shouldn't have to manually convert a startup/shutdown
script to take the domain to a different box.
     JBoss clearly has BEA beat on ease of deployment here. Their model is
the concept I'm thinking of: you have some generic startup/shutdown
scripts that can load a platform-independent server configuration. You
truly can copy directories as-is between JBoss installations.
     I was hoping to package up a server domain for use on any of the
supported platforms, but since I don't have the time to manually convert
the startup/shutdown scripts, I'm going to have to tell people it's only
for Solaris now.
     Hopefully BEA can fix this in a future SP. There's no need for this
platform-dependency. Also, if the Windows version can generate both
scripts at creation time, then the Solaris should be able to do this as
well (or at least give you the option).
Thanks again for the replies
russ wrote:
Hi Steven,
I have several comments and questions about your last two posts. I will try to
address them in order.
1) "The Pointbase database included for WLI does not get included in the template
automatically."
     By default the template builder only includes the *.cmd and *.sh files in the
template from your domain directory. If you begin building with an existing
domain template all files that were in the template will get included. This was
done because there is no way for the builder to automatically determine all the
files that are required by your template/domain and we steered away from recursively
including all files from the directory so that unused files were not needlessly
included. We can extrapolate some files based on the application paths in the
config.xml, but the rest is left up to the template builder to be aware of what
is needed for their domain to run. So, if you need the Pointbase *.dbn and *.wal
files included in your template just select these files on the ?Add Files? panel
of the template builder and add them to the ?Domain Directory?.
2) ?If you choose to include a resource adapter "application", such as jms-xa-adp.rar,
the template builder does not bundle this in the template and deploy it correctly.?
     The template builder considers application files to be in two categories: Imported
or Internal. When you are at the ?Add Applications? panel of the builder you
will see a checklist of all the applications that are in the domain you selected.
On the right hand side there are two text fields. The top one displays the application
path as it is currently set in the config.xml of that domain. The bottom field
will be different depending on what category the application falls into. As you
click on each application in the list, you may notice that the bottom field may
change from an editable field titled ?Imported Application Path? to a non-editable
field titled ?Internal Application Path?. The difference between the two categories
is that an ?Imported? application?s files will be included in the template jar.
An ?Internal? application?s files will not be included in the template jar because
they are considered internal to the weblogic installation. The jms-xa-adp.rar
should fall into the internal category and should not get included in your template.
     From what you are describing it sounds like the builder attempted to import that
application when it should not have. In an attempt to recreate the problem you
are seeing I deployed that Connector Module through the WLS console and ended
up with an application path of ?C:\bea\weblogic81\server\lib? where ?C:\bea\weblogic81?
is my WL_HOME (a.k.a. USER_INSTALL_DIR). If I then attempt to build a template
from this domain, the builder recognizes this as an internal path and does not
include it inside my template. If the current application path you had looks
different from the one above, that may explain why the builder was attempting
to import it. What was the value of the ?Current Application Path? for that application
deployment?
3) ?Relative paths in the config.xml file require you to execute the config builder
from the directory of the domain you are making a template for.?
     The builder is ?smart? enough to determine relative paths. You should not have
to invoke it from the domain directory you are working with. There is a known
bug in the WebLogic Platform 8.1.1.0 release of the template builder that will
cause it to not find files with relative paths in your domain directory if the
application path in the config.xml is just a ?.?. If this is the case, you should
see a FileNotFoundException when you attempt to create the template. This will
be fixed in SP2 and you can work around this problem by changing those paths to
?./? instead. If this was not the case, what was the path the wizard choked
on?
4) ?Looking through the config file, it seems that it's all of the WLI components
that have absolute paths in the config file. In addition, BEA_WLS_DBMS_ADK has
an absolute path, not sure if that is WLI or WLS. ?
     BEA_WLS_DBMS_ADK is an integration application. If you created the original
domain using the configuration wizard most of the applications in an integration
enabled domain will reference paths inside of you installation directory or ?internal?
paths. For instance, I used the wizard to create a ?Basic WebLogic Integration
Domain?. The path for that application in this domain is: ?C:\bea\weblogic81/integration/adapters/dbms/lib/BEA_WLS_DBMS_ADK.ear?
where ?C:\bea\weblogic81? is my WL_HOME or USER_INSTALL_DIR. When I load this
domain into the builder it shows this application as ?internal? and the ?Internal
Application Path? is "$USER_INSTALL_DIR$/integration/adapters/dbms/lib/BEA_WLS_DBMS_ADK.ear".
This will be set as the path value of this application in the config.xml that
will be included in the template you build. When you later use the Configuration
Wizard on this template it will substitute the $USER_INSTALL_DIR$ to the value
of the installation directory of the machine you are creating it on.
     If you were to Change these to relative paths, as Mark previously suggested,
it will only work if you copy the domain directory to the same location relative
to your installation directory on the target machine. Also, if you copy the domain
in this manner you will more than likely run into problems with your start/stop
scripts and be forced to hand modify all the paths contained within. The configuration
wizard tries to alleviate these problems and make the configuration entirely portable.
This gives the user who creates the domain from your template the ability to
put it anywhere they want regardless of the paths in the config.xml.
5) ?However, there is another major problem with the Template Builder: it only
includes the startup/shutdown script for the platform you create the template
on. ???I built the template on Solaris with the UNIX scripts. However, I tried
to create a new config on Windows with this template, and the scripts were not
converted to .bat files!?
     As I stated previously, the builder will only include *.cmd and *.sh scripts
into your template by default. If you created the domain on a unix platform using
the configuration wizard it will not extract the *.cmd files since these aren?t
considered to be useful on unix. If you were then to attempt building a template
from this domain and take it onto a windows platform, it will obviously be missing
any windows scripts. Conversely, the wizard will extract *.sh scripts on windows
because they can still be useful if a user has an MKS or Cygwin type environment
installed. The config wizard and template builder do not have the ability to convert
scripts. The builder will only include existing scripts that are in your domain
directory and automatically determine any necessary string substitutions that
will be needed. Please note that since WebLogic is only supported on the NT/2K/XP
versions of windows you will find that the wizards use ?.cmd? files and not ?.bat?
files since these are more commonly associated with Win 95/98/ME.
     I will be happy to answer any more questions you may have and would also like
to take a look at your domain configuration to try and get a better understanding
of the problems you are encountering.
thanx,
russ

Similar Messages

  • Dynamic image in the template builder plug-in does not work

    Hi all,
    The documentation says:
    Direct Insertion
    Insert the jpg, gif, or png image directly in your template.
    +...This works obviously+
    URL Reference
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{'http://image location'}
    For example, enter: url:{'http://www.oracle.com/images/ora_log.gif'}
    +...This works too when I hardcode an url as url:{'http://www.google.com.tr/images/firefox/mobiledownload.png'}+
    Element Reference from XML File
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{IMAGE_LOCATION}
    where IMAGE_LOCATION is an element from your XML file that holds the full URL to the image.
    +...This, however, does not work.+
    I use Apex' report query tool and My query is like
    select 'http://www.google.com.tr/images/firefox/mobiledownload.png' IMAGE_LOCATION from ... (a single result set for my template)
    the xml data is generated with an IMAGE_LOCATION tag. I load it to word template plug-in. The Url successfully displays in the report if I make it a plain-simple field.
    But when it's in the image format->web->alt text as url:{IMAGE_LOCATION} no image displayed.
    I need to keep this design procedure simple so a simple word user could design a report via using just template builder plug-in. I don't wish to explore the xsl-fo area...yet.
    Could you tell me why I can't get this url:{IMAGE_LOCATION} to work?
    Regards
    PS: My BI version: 10.1.3.4.1
    Edited by: oeren on Jun 8, 2011 12:28 AM

    Oeren,
    I stumbled across this little tidbit buried in the BI Publisher forum: Dynamic Images in rtf
    Glad you are up and running!
    Joshua

  • HT5887 I am wondering if somebody else have problems with Airdrop, I just configured the option and it does not work. My friends can see me, but I can not see them.

    I am sad, I have days trying to use Airdrop, my friends can see me, but I can not see them. I  turned on my Wi-Fi, Bluetooth and I selected the option "available for ALL".... and nothing. I can receive photos from my friends... mean It work for them. I just restarted the phone to the basics configuration but it does not work, my phone still does not recognize my contacts.

    warranty will cover it. Did you try only by changing the power adapter or did you change both cable and power adapter?
    if you did the latter, see this page: https://www.apple.com/support/iphone/repair/battery-power/
    you'll be able to contact Apple Support from there.

  • Tecra M10-10z - 3G does not work after Win 7 installation

    Tecra M10-10z I have installed Windows 7 pro 64bit
    Everything is configured correctly, but connection 3G does not work: the message is " no network"
    with Windows XP is ok.
    I did not find firmware updates or similar.
    Is there someone who can help me?
    tks

    Hi
    In order to use the 3G you should firstly check if the 3G ericsson module was properly installed.
    In case there is an yellow exclamation mark visible in the device manager, the 3G driver should be reinstalled.
    I found on the Toshiba EU driver page:
    [Ericsson 3G Win 7 driver|http://www.toshiba.eu/innovation/download_driver_details.jsp?service=EU&selCategory =2&selFamily=5&selSeries=148&selProduct=813&selSho rtMod=null&language=13&selOS=30&selType=295&yearup load=&monthupload=&dayupload=&useDate=null&mode=al lMachines&search=&action=search&macId=&country=all &selectedLanguage=13&type=295&page=1&ID=71930&OSID =-1&driverLanguage=42]
    Furthermore ensure that the 3G RF Power Control Utility has been installed properly.
    The 3G RF Power Control Utility" activates your 3G on startup.
    This tool can be found here:
    [3G RF Power Control Utility for Win 7 64bit|http://www.toshiba.eu/innovation/download_driver_details.jsp?service=EU&selCategory =2&selFamily=5&selSeries=148&selProduct=813&selSho rtMod=null&language=13&selOS=30&selType=322&yearup load=&monthupload=&dayupload=&useDate=null&mode=al lMachines&search=&action=search&macId=&country=all &selectedLanguage=13&type=322&page=1&ID=73658&OSID =-1&driverLanguage=42]
    Hope the 3G network would functions after the reinstallation of both tools.

  • Dynamic image does not work in the template builder plug-in (Apex-BI Intgr)

    Hi all, I posted this problem in the BI Publisher topic but nobody responded maybe this is because mods thought this is an Apex-BI integration issue.
    If I'm in the wrong place, please do warn me.
    The documentation says:
    Direct Insertion
    Insert the jpg, gif, or png image directly in your template.
    ...This works obviously
    URL Reference
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{'http://image location'}
    For example, enter: url:{'http://www.oracle.com/images/ora_log.gif'}
    ...This works too when I hardcode an url as url:{'http://www.google.com.tr/images/firefox/mobiledownload.png'}
    Element Reference from XML File
    1. Insert a dummy image in your template.
    2. In Microsoft Word's Format Picture dialog box select the Web tab. Enter the following syntax in the Alternative text region to reference the image URL:
    url:{IMAGE_LOCATION}
    where IMAGE_LOCATION is an element from your XML file that holds the full URL to the image.
    ...This, however, does not work.
    I use Apex' report query tool and My query is like
    select 'http://www.google.com.tr/images/firefox/mobiledownload.png' IMAGE_LOCATION from ... (a single result set for my template)
    the xml data is generated with an IMAGE_LOCATION tag. I load it to word template plug-in. The Url successfully displays in the report if I make it a plain-simple field.
    But when it's in the image format->web->alt text as url:{IMAGE_LOCATION} no image displayed.
    I need to keep this design procedure simple so a simple word user could design a report via using just template builder plug-in. I don't wish to explore the xsl-fo area...yet.
    Could you tell me why I can't get this url:{IMAGE_LOCATION} to work?
    Regards
    PS: My BI version: 10.1.3.4.1

    Hi Oeren,
    your steps seem basically to be correct. I have a tutorial how to do this here (in german)
    http://www.oracle.com/webfolder/technetwork/de/community/apex/tipps/pdf-dyn-images/index.html
    when you see the URL corrently as long as you have it as a plain text field, the XML tag and the
    referencing seem to be OK.
    Here are two thought - the issue might be one of these ...
    How did you insert the dummy image into the word document - did you do it via "insert" or
    via "link to file". "Link to File" does not work - you must choose the simple "insert".
    Another one: Does your BI Server have a connection to the internet - is the proxy server correctly set ..?
    Does this help ..?
    Regards
    -Carsten
    Cloud Computing mit APEX umsetzen. Jetzt!
    http://tinyurl.com/apexcloudde
    SQL und PL/SQL: Tipps, Tricks & Best Practice
    http://sql-plsql-de.blogspot.com

  • OLE DB Connection Build does not work

    Hello All!
    I am in the process of creating an ASP.NET application that
    will initially have an Access database for test purposes on my
    laptop computer. Eventually the database will be MS SQL. When I
    select OLE DB Connection -> Build it does not work. I have
    already tried the "fix" in
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19515
    and it did not work.
    I have also tried MS Access 2000 template and it does not
    work. At this point there is no User ID or Password to this
    database. Here is what is in the web.config file:
    <configuration>
    <appSettings>
    <add key="MM_CONNECTION_HANDLER_ctv"
    value="default_oledb.htm" />
    <add key="MM_CONNECTION_STRING_ctv"
    value="Provider=Microsoft.Jet.OLEDB.4.0;Data
    ource=C:\Inetpub\wwwroot\CTV1_1\database\ctv.mdb;User
    ID=;Password=;" />
    <add key="MM_CONNECTION_DATABASETYPE_ctv" value="OleDb"
    />
    <add key="MM_CONNECTION_SCHEMA_ctv" value="" />
    <add key="MM_CONNECTION_CATALOG_ctv" value="" />
    </appSettings>
    </configuration>
    I have installed IIS on the laptop along with .NET framework
    2.0 - maybe there is an install issue?
    I am using DreamWeaver MX 2004 with MS XP SP2 if that gives
    any further clues.
    Thanks for any help you can give!
    Lisa
    [email protected]

    No errors are thrown.  File I/O does not work.  Can not read or write. 
    PrintPanel() no longer works.
    Outside of my app, File I/O and printing works with other apps.

  • Program does not work after build

    Hi,
    I have built a program today that builds fine (no errors or warnings) but it fails when running the exe.  I am using drivers for a spectrum analyzer (Rohde & Schwarz FSG) and when one of these drivers is called, it returns an error.  Other drivers are run before this particular vi.  Anyone have any idea how to troubleshoot this?  I'm going to try and build the vi on its own and see if it works.  In the mean time, if anyone has any suggestions, please let me know.
    UPDATE: I built the file on its own and it still does not work.  Again, when I run it in developer mode, it works fine.
    VISA Write in rsspecan_core_write.vi->rsspecan_core_attribute_wr​ite_int.vi:3->subrsspecan_core_attribute_express.v​i:2->rsspecan Configure Averaging Type.vi:Instance:Instance           1 41Saved   rsspecan Configure Averaging Type .vi:1->rsspecan Configure Averaging Type.vi
    Thanks.

    I've decided to post the vi since it is free to download.  If anyone has an FSG and wants to build this file and see if they can run it, please do so.
    Attachments:
    rsspecan Configure Averaging Type.vi ‏31 KB

  • MS office report function does not work after building the appication

    I use the MS office report function  with a custom excel template my application.
    It works properly in de developstate, but after building the application it does not work .
    I use office 2000  and Windows XP

    jmq wrote:
    I use the MS office report function  with a custom excel template my application.
    It works properly in de developstate, but after building the application it does not work .
    What error message if any did you get? It could be a couple things:
    1. Did you include the Report Toolkit's dynamic vis in the app's build process?
    Ref: Error 7 when Running an .EXE Using VIs from Report Generation Toolkit for MS Office
    2. How are you giving the path to you custom template, as a relative or an absolute path? The path will be different for the .exe. You have to strip twice.
    Ref: Why Can't My Executable Load My Included File When I Use Relative Path Encoding?
    =====================================================
    Fading out. " ... J. Arthur Rank on gong."

  • The Create List Item workflow action does not work in document library with document template

    My end goal is more complex but below is a basic example of the issue I’m having that just simply does not work.
    I'm trying to use a site workflow to create an item in a document library that has a document template applied to it but the file that gets created by the workflow is corrupt and cannot be opened.
    I created a document library and edited the document template by adding some text to the header and changing it to a Word docx file instead of a Word dotx file. I tested the document template by clicking the files tab in the ribbon and then clicking new
    document which opens the document template in Word and allows me to edit and save the document back to SharePoint. Then I created a SharePoint 2013 site workflow in SharePoint Designer that contains a single Create List Item action, and that action creates
    an item in the document library with the name field statically defined. I published the workflow and then manually start it on the site. The workflow completes successfully and when I navigate to the document library the document has been created by the workflow.
    When I click on the document to open it in the Word Web App it throws the error pictured below and if I open it in the Word client application it just opens a blank document and not the correct document template.
    I also tried using a SharePoint 2010 workflow with pretty much the same results. Opening the document in Word Web App gives the same error as above and opening the document in the Word client application gives the error pictured below.
    Come on Microsoft creating a Word Document in a SharePoint Document Library from a SharePoint Workflow should just work! Is this a bug or does anyone have any ideas on what is causing the this issue?

    I had the same problem with corrupted document - this worked for me:
    1. Create a 2010 Workflow which creates the list element in a document library
    (you may start this workflow from your 2013 workflow if applicable)
    2. In the Create New List Item properties - make sure to set ContentTypeId to your content type
    ("Id for indholdstype" is Danish for "Contenttype ID")
    3. Your Content Type template should be a ".docx" file - NOT a ".dotx" file...!
    (I have always created my templates for content types as .dotx files - seems Microsoft wants us to use ordinary .docx files as template files for content types)
    Hope this helps you!

  • ORDS Template with parameter does not work

    Hello everybody,
    I can not get working a RESTful Service using the ORDS_SERVICES -API (ORDS version 3.0.0.343.07.58), same Query without parameter (hardcoded product_id) works fine.
    declare
    l_module_id number;
    l_template_id number;
    l_handler_id  number;
    l_parameter_id number;
    begin
    ORDS_SERVICES.delete_module(p_name => 'test_parameter');
    l_module_id := ORDS_SERVICES.create_module(p_name => 'test_parameter',
                                p_uri_prefix => '/test_parameter',
                                p_items_per_page => 10,
                                p_status => 'PUBLISHED',
                                p_comments => null);
    l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                               p_uri_template => '/demo_product_info_10/',
                               p_priority => 0,
                               p_etag_type => 'HASH',
                               p_etag_query => null,
                               p_comments => null);
    l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                               p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
             p_source => 'select mimetype, product_image from demo_product_info where product_id = 2',
             p_format => 'DEFAULT',
             p_method => 'GET',
             p_items_per_page => null,
             p_mimes_allowed => null,
             p_comments => null);
    /* now same result but with parameter */
    l_template_id := ORDS_SERVICES.add_template(p_module_id => l_module_id,
                               p_uri_template => '/demo_product_info/{product_id}',
                               p_priority => 0,
                               p_etag_type => 'HASH',
                               p_etag_query => null,
                               p_comments => null);
    l_handler_id := ORDS_SERVICES.add_handler(p_template_id => l_template_id,
                               p_source_type => 'MEDIA', -- source_type IN ('COLLECTION_FEED', 'COLLECTION_ITEM', 'FEED', 'MEDIA', 'PLSQL', 'QUERY', 'QUERY_1_ROW')
             p_source => 'select mimetype, product_image from demo_product_info where product_id = :product_id',
             p_format => 'DEFAULT',
             p_method => 'GET',
             p_items_per_page => null,
             p_mimes_allowed => null,
             p_comments => null);
    l_parameter_id := ORDS_SERVICES.add_parameter(p_handler_id => l_handler_id,
                               p_name =>  'product_id',
             p_bind_variable_name => 'product_id',
             p_source_type => 'URI',
             p_param_type => 'INT',
             p_access_method => 'IN',
             p_comments => null);
    commit;
    end;
    The first template works fine:
    http://localhost:8080/ords/xxx/test_parameter/demo_product_info_10/
    shows a jpeg image of a wallet.
    The second template does not work:
    http://localhost:8080/ords/xxx/test_parameter/demo_product_info/10/
    fails with error:
    mapped request using: BasePathMapper [basePath=/xxx/] to: SCHEMA:apex|XXX
    Choosing: oracle.dbtools.http.dispatch.DispatchMetaData as current candidate with score: MetaDataScore [score=0, matchedMethod=  GET: {10299, false}
      common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
    , matchedPattern= /test_parameter/demo_product_info/{product_id}
    common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=null, pagination=null, requiresPrivilege=null, transport=null]
    methods:
      GET: {10299, false}
      common: CommonMetaData [accepts=[], cors=null, documentation=null, frameOptions=null, pageSize=10, pagination=NONE, requiresPrivilege=null, transport=null]
    stack trace:
    oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: INT
    at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
    at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
    at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
    at oracle.dbtools.http.filters.FilterChainImpl.doFilter(FilterChainImpl.java:51)
    at oracle.dbtools.http.cors.CORSFilter.doFilter(CORSFilter.java:35)
    at oracle.dbtools.http.filters.HttpFilter.doFilter(HttpFilter.java:44)
    I changed the add_parameter-call p_param_type => 'INT' to be  p_param_type => 'STRING'
    then error remains the same and strack trace says
    oracle.dbtools.http.errors.InternalServerException: java.lang.IllegalArgumentException: STRING
    at oracle.dbtools.http.errors.ErrorPageFilter.internalError(ErrorPageFilter.java:165)
    at oracle.dbtools.http.errors.ErrorPageFilter.doFilter(ErrorPageFilter.java:113)
    Could you please confirm and fix,
    kind regards,
    Tom

    This is a guess, but I suspect that ords_services.add_parameter() is not required at all.
    Also, your URL /demo_product_info/10/ should not have the trailing slash (according to your template URI).
    For more information, I suggest you look here:
    ords.3.0.0.343.07.58.zip\ords.war\scripts\migrate\core\ords_migrate.plb
    The migration package will show what is usually done for templates that already exist within APEX 4.2. I checked my templates and the ones with URI variables {in-curly-brackets} contain no records in apex_040200.wwv_flow_rt$parameters.
    -Kris

  • Adobe Builder 4.7 Serial Number does not work

    Hi,
    I followed the instructions to download and install the Adobe Builder 4.7 Beta @ http://www.adobe.com/cfusion/entitlement/index.cfm?e=labs_flashbuilder4-7.
    The Serial Number mentioned for the product (1424-4002-6183-5974-1150-0356) does not work : keep seeing the "The serial Number you entered is invalid" error message.
    Is there an updated serial number, or is the Beta program no longer working?

    Flash Builder 4.7 got released !!! 
    Please visit - http://www.adobe.com/products/flash-builder-family.html for further details.

  • Window 10 build 10041 does not work with Intel 82579V Gigabit Ethernet on ASUS motherboard

          
    I originally posted this question here:
    answers.microsoft.com/en-us/insider/forum/insider_wintp-insider_update/window-10-build-10041-does-not-work-with-intel/6729892f-83aa-4822-b20a-ea84f4fd06c7
    and was asked to post it on this forum...
    I updated a computer I have which is a quad core i7 that I built and includes an ASUS motherboard with Intel 82579V Gigabit Ethernet built in. Windows 10 preview 9926 worked fine with this network adapter. Window 10 build 10041 does not, and I have tried
    it twice so far. I even went as far as buying a Thunderbolt-Gigabit Ethernet Adapter (Broadcom, sold by Apple)... and while it installed the driver automatically, it did not work either. Each time you try to view the properties of either of them, it locks
    up or give an error. In fact, doing much of anything with the Intel adapter icon assures you of not being able to do a clean reboot... have to kill power.  I have finally gone back the previous version 9926, which has its issues but no where near as bad
    as not having any network connectivity!  Does anyone have this issue and a workaround? 
    Note, there are two images on the windows 10 preview forum that I posted this question on. I could not post the full link as I was getting a message here that links and graphics are not allowed.

    Thanks Roger, I posted the following yesterday in the other thread (thinking it was this thread - confusing after they moved it here)... It may be that the new driver fixes the issue that 10041 has with it, but I have not tried that yet. If I do I will update
    this... Thanks!
    I have more information about this, which basically exonerates any issue with the Intel 82579V Gigabit Ethernet hardware or software. I have 3 computers with Windows 10 preview so I have multiple angles to see issues from. With this I have found a culprit
    (but I suspect not just the only culprit) in this above mentioned problem...
    10041 build combined with installing (or attempting to install) CISCO VPN Windows 7 64bit 5.0.07.0440-k9 client causes the issue mentioned above. I confirmed this on a completely different machine with a totally different Ethernet adapter. First machine
    is an ASUS motherboard in a tower system I built, with the Intel 82579V Gigabit Ethernet hardware built in. Second machine is a Gateway Laptop from 2008 which has a Marvell Yukon 88E8057 PCI-E Gigabit adapter built in. Build 10041 will work fine with my 2008
    laptop, including the MS VPN client (which I have tested). However, if you attempt to install or even uninstall the Cisco client you will have to do a recovery to a restore point (as I have done twice) in order to get your network working again. Installing
    or attempting to install (because it never even does install properly and times out), CISCO VPN client will render your entire network unusable. Going back to a restore point saved me and I am still running 10041 but I can't use CISCO VPN client any longer.
    I could with build 9926, including on all 3 machines. I now have 9926 on two machines and 10041 on only the 2008 laptop. 
    Hopefully this above information helps someone resolve the issue. I will also mention, even though my network is working on the 2008 laptop, I still can't go into the Control Panel\Network and Internet\Network Connections and right mouse click on the Marvell
    Yukon 88E8057 PCI-E Gigabit adapter icon. I get an error when clicking on Properties menu popup : "An unexpected error has occurred". So something is still up with my network adapter driver or windows software, but it could be a side effect of all
    that has happened with the Cisco software install attempts under 10041.
    Another note: CISCO Anyconnect also has the issue.

  • Spry tool tip does not work in template or child pages within an editable region. Why not?

    Ok. so I am getting pretty frustrated. I take the time to learn how to use CSS and to create a template page for a Contractor Site (www.ContractorInsurance.net). The idea is to create a page that I can use for different classes of Contractors...right?
    Then I get all happy about being able to insert ToolTip onto pages to help the user. Great!
    LIfe to turn to Sorrow after nearly five hours of searching for a "eeking" answer.
    So what good does it do to have an Editable region to update if we cannot have the flexibility to insert a tool tip on child pages?  Ok so the fast solution is to what... Have a question mark image, insert another apDiv, name it toolTip_Not and provide it with a show=hide behavior?
    RRRRRrrr...
    This really sucks not being able to find a solution within a reasonable amount of time.

    I have tried thank you. However...it is still not working.
    www.ContractorInsurance.net/course_of_construction.php
    The error message is "Making this change would require code that is locked by a template translator"
        Re: Spry tool tip does not work in template or child pages within an editable region. Why not?
        created by altruistic gramps in Spry Framework for Ajax - View the full discussion
    If you have a look at the following simple document with a tooltipTooltip trigger goes here.
    Tooltip content goes here.
    you will notice that a couple of lines have been placed in the HEAD section of the document. When using DW templates, the HEAD section is usually not editable, hence the error mesaage. By default, your template should have an editable region in it just before the closing tag. It looks like this: <!-- TemplateBeginEditable name="head" > <! TemplateEndEditable --> Dreamweaver should be able to find that editable region and insert the
    <script> tag there automatically. Because you don't have an editable region like that in the <head>, open the master template, and paste the code above just before the closing </head>
    tag. Gramps
    Edited to remove personal data

  • Importing element definition from an  EDD into a template - does not work

    FM 10.0.1 German on Windows XP SP3.
    When importing the element definitions from an existing EDD into an existing template, FrameMaker converts the template into a  new EDD.
    So the element definitions which are correctly defined do not appear in the template.
    The highest level element is than ElementCatalog in the template and not the higherst lvel element defined in the EDD.
    In FM9 this was no issue.
    Any help is appreciated, I have a deadline and must do some changes in the EDD.
    Best Regards
    Thomas

    Lynne,
    EDD is english (Version FM7.0), Interface language is German.
    Maybe it´s a localization issue.
    I have attached a captivate demo pdf so you can see what happens and the
    defective EDD.
    Mit freundlichen Grüßen
    Best Regards
    Thomas Zeisig
    From:   Lynne Price <[email protected]>
    To:     "Th. Zeisig" <[email protected]>
    Date:   13.10.2011 14:12
    Subject:        Importing element definition from
    an  EDD into a template - does not work
    Re: Importing element definition from an EDD into a template - does not
    work
    created by Lynne Price in FrameMaker Structured - View the full discussion
    Thomas,
      No question the behavior you describe is a bug. However, I am unable to
    duplicate it. I created an EDD with two element definitions:
    Element (Container): doc
      Valid as the highest-level element.
      General rule:  (
      When I imported element definitions from this EDD into a new portrait
    document, FM reports that element a is referenced but not defined and that
    b is defined but not referenced. However, with all elements listed, the
    element catalog shows a, b, and doc. The metatemplate elements are not
    available.
      I wonder if this is a language-dependent problem. Is your EDD German or
    English? What about your user interface?
      Can you send me a short EDD that fails as you've described?
      Thanks,
          --Lynne
    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/3969067#3969067]
    To unsubscribe from this thread, please visit the message page at [
    http://forums.adobe.com/message/3969067#3969067]. In the Actions box on
    the right, click the Stop Email Notifications link.
    Start a new discussion in FrameMaker Structured by email or at Adobe
    Forums
    For more information about maintaining your forum email notifications
    please go to http://forums.adobe.com/message/2936746#2936746.

  • Save a published Access services database site as a template with contents does not work

    Hi
    I have a Access site on the SharePoint. I wanted the site to be duplicated to another subsite, I then did the usual - save site as a template with contents and made a copy of it, however it does not work. I have been getting the error as stated below
     error has occurred during report processing. (rsProcessingAborted)
    Query execution failed for dataset 'Default'. (rsErrorExecutingCommand)
    For more information about this error navigate to the report server on the local server machine, or enable remote errors
    However, it works if I make a local copy and publish it to the subsite? How does access services work on SharePoint and why the template option can't be chosen.

    Hi cally, check the following links for possible solutions:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/1e2b77ba-4cfa-4aa3-97e4-b7b39fbd46fd/error-with-ssrs-report-that-has-a-sharepoint-list-data-connection-ssrs-r2-and-sharepoint-2010?forum=sqlreportingservices
    http://blog.mikehacker.net/2012/05/16/sharepoint-2010-access-services-reporting-with-sql-2012/
    cameron rautmann

Maybe you are looking for

  • Photoshop CC and Illustrator CC crash on my MacBook Pro 15" Retina (2013)

    I have a Mac Pro 12-Core (Late 2013) and a MacBook Pro 15" Retina (Late 2013). While there is no problem with the Adobe Creative Cloud products on the Mac Pro, I can't work with Photoshop and Illustrator on the MacBook Pro, cause it always tells me "

  • How to transfer pics from PC to Ipad2 without deleting existing folders?

    Whenever I try to transfer pics from pc to Ipad2, existing folders are deleted (which mens I only have one folder, cuz everytime I try to transfer a new folder with pics, the previous is deleted)? I also tryed to trasfer all my folders with pics at o

  • How to refer MessageID in email receiver adapter

    Hi All, We are using module configuration in Receiver Mail adapter to send emails. Below is my configuration. (We are using SAP PI 7.11). Emails are being sent. However I am trying to include messageID in the email body however I could not. I have de

  • HOW TO INSTALL JAVA SCRIPT

    need java script and  i realize apple has there own version but how do i find it or install it or turn it on?  Just purchassed my mac mini from Apple?

  • Need RDB ODBC driver version 2.10.17

    I need this older release for Visual Foxpro 9.0 ODBC connections. This version is no longer available for download on your website. Or, alternatively, I need a way to transfer this working release from one PC to another. Version 3 works with some app