Promote Properties from Orchestration without dependency on Property Schema

I have a property schema deployed in a common application, all properties are of MessageContextPropertyBase Type. I want to promote properties in orchestration outgoing message, which generally is done by adding a reference to property schema assembly
and assigning the values to promoted property and then initialize a correlation on the property while sending the message. This approach create a dependency on property schema assembly. I don't want to have this dependency. Is there any other way to promote
properties from orchestration except correlation initialization.

The Promoted Property in BizTalk is a method of naming and share names between BizTalk artifacts. Say we receive a message and want to route it by looking to some node in this message or some context value of this message. We don't want to use an XPath,
we just want to use a name of some message property (which further can be mapped to XPath internally or some context value, which is an implementation detail). So now we have a name. The next step is to limit my names in some namespace.
The solution in BizTalk was the names implemented as the XML Schema root nodes together with XML Namespaces. The possible solutions could be use of DB or some generic service to store and manage the shared names, but in BizTalk we have the names which are
effectively the nodes of property schema. To manage those shared names we can use the standard BizTalk tooling for XML Schemas, which is nice. Now we can use the same name for different message properties in several messages, which gives us a nice correlation
method.
But again, the main idea of Promoted Property in BizTalk is a method of naming and share names between BizTalk artifacts. Sorry for this description. Just want to know we are on the same page.
Back to your question. It is not clear what is your issue.
Is it the weird way to promote property for new messages in orchestration?
IMHO, this is a real issue but a small one. 
Is it the application dependency created by shared schema? This issue is a big one, IMHO. It harms development and deployment productivity, but makes deployment more secure and reliable. Reliability won in this
battle. If we compare the deployment process of the .NET applications with BizTalk applications, the .NET app deployment is simpler and less reliable, the BTS app deployment is more complex and more reliable. Now developers should pay a high attention to the
deployment aspects of the BTS application up-front. 
Leonid Ganeline [BizTalk MVP] <a href="http://social.technet.microsoft.com/wiki/contents/articles/20258.biztalk-integration-development-architecture.aspx">BizTalk Development Architecture</a>

Similar Messages

  • How to get promoted properties from Request to Response in two way send port scenario.

    I have a requirement to access the promotes properties in response pipeline, these promoted properties are promoted in Orchestration and they are available in Send pipeline, but not available in Receive pipeline. Please help us if we have any solution for
    this issue.
    Thanks
    Ramachandra

    Hi Ramachandra,
    Obviously from above responses you would have got the point that this can’t be done out-of-box and you need to do custom. Also when you say “Get the message
    from DB along with context properties.”, you do agree with this point.
    One of the possible custom solutions is (Obviously in bespoken process, you can achieve it in many ways),
    When send the message out to a solicit-response port, store those promoted properties in db along with the “correlation key” which you can get from the context of the request message like
    “Correlation Token”  and “SPID”. So when the response comes back, you can either in the “inbound map” or in the receive pipeline (using custom component) populate/constructs the message by populating data from db, where will retrieve the
    “Correlation Token”  and “SPID” values of the response message (it will have the same correlation value as in the request message), so you can use the value of correlation sets to get the values from db.
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Get the message attribute values in Orchestration without using property promotion

    I have the following schema :
    Now I want to get the values of FName,LName in orchestration without using any property promotion ?
    Prakash

    There are also multiple ways of creating the Xpath:
    - Full path with namespaces - Rahul Madaan showed this one
    - Full path without namespaces:
    FName = xpath(InputMessage, "string(/*[local-name()='Root']/*[local-name()='IntField'])");
    I think this method is handy if you have multiple schemas with similar structure  but the namespace
    changes. This is also easier to read and less prone to errors if there are any changes.
    If you for example wanted the node #3, then it would be
    FName = xpath(InputMessage, "string(/*[local-name()='Root']/*[local-name()='IntField'][3]/*[local-name()='IntSubField'])");
    - Jump directly to the field/node you need (this one works for at least xml elements):
     xpath(InputMessage, "string(//*[local-name()='IntField'])");
    I find this useful when picking up key-values from the message, that can be available only once.
    All the examples above are for elements. Since you are picking up value from an attribute, the actual structure
    is
    varFName = xpath(InputMessage,"string(/*[local-name()='StudentDetails']/*[local-name()='Student']/@*[local-name()='FName'])");
    And to learn the rest of the possibilities of Xpath, like count, different types, more detailed selections
    of the correct Node (Like example, I want only the one where FNAME = 'MyFName')  You can try something like: http://social.technet.microsoft.com/wiki/contents/articles/6944.biztalk-orchestrations-xpath-survival-guide.aspx
    Also get DanSharp XmlViewer. It will help you quite a bit when fine tuning the xpaths.

  • Promoted properties availability

    HI,
    In my project there are 3 messagetypes
    Lets call them X, Y and Z
    On schema Y, there are a 2 elements(AuthID and AuthCode) marked for promotion property.
    we have a pure messaging solution.
    On the Receive side, the Map converts a message X into Y.
    On the Send Port, there is a map as well as a custom pipeline.
    The Send map converts Y to Z. The Send pipeline looks for the 2
    promoted properties (AuthID and AuthCode) and does some processing.
    This works, so my understanding is on the Send Side , even though the map transofrms
    message Y to Z, the promoted elements of Y are still available in the context for the pipeline to process.
    Now,we developed  a prototype orchestration that does the mapping form Y to Z(instead of the send port).
    The orchestration receives a message of type Y and transforms to type Z. THen the orchestration sends the message out via a send port. This send port does not have any maps(since the map is already done in the orchestration). However, this has the send pipleine.
    and the pipleine is looking for the 2 elements promoted from type Y(AuthID and AuthCode). It can't seem to find these elements in the context.
    so there is a difference between how the context properties are propagated on mapping  within a orchestration and in a pure messaging solution?
    Has anyone faced this issue? Is there any way i can propagate the 2 elements into the context in the orchestration when the message is sent out to the send port so the pipeline does not fail?
    Please assist
    Regards,

    Hi,
    Just to explain you why it's working in case of Outbound map in send port-
    Whenever outbound map transforms message from Y to Z, it also copies all the properties of message Y to Z because these properties needs to be present for Adapter execution.
    To verify this try to fetch context properties like ReceivePortName, ReceivedFileName etc. you will notice they all will have same values of that of Message Y. But if you try to fetch the message value in eventlog you will see it will have message Z's content/body.
    But in orchestration properties are not copied by default you will have to explicitly copy them using below code.
    msgZ(*)= msg(*)
    Or you can use MessageContextPropertyBase as in below sample. Later you will have to promote them by initializing correlation on these properties.
    https://masteringbiztalkserver.wordpress.com/2011/03/08/difference-between-messagecontextpropertybase-and-messagedatapropertybase/
    Let me know if you have any question.
    Thanks,
    Prashant
    Please mark this post accordingly if it answers your query or is helpful.

  • How to load a properties from path that is relative to the classpath

    Hello;
    I need to load a set of properties from a propertie file from inside and EJB. I need to do so that I don't set the full absoulte path of the property file. In brief I don't want to be dependent on the file system struture instead I want to read the property file relatively to the package path name.
    Here is my code:
    package packagename.com;
    import packagename.com.*;
    import java.util.*;
    import java.io.*;
    public class PropDemo {
    public static void main(String[] args) {
    public static final String PROP_FILE_NAME
    = "configuration.properties";
    File inputFile = new File(PROP_FILE_NAME);
    Properties prop = new Properties();
    try {
    FileInputStream fis = new FileInputStream(inputFile);
    prop.load(fis);
    } catch (Exception e) {
    Any body have an idea how to so.
    Regards
    mal

    I realize that you are trying to be a pain in the arseNot really. I know that I spent about a day figuring it out and that was after skirting around the issue for a about a year.
    with that reply, but we can look here:
    public void load(InputStream inStream) throws
    IOExceptionReads a property list (key and element pairs) from the
    input stream. The stream is assumed to be using the
    ISO 8859-1 character encoding.
    The original post suggests the author already knows how to load from a file. So this doesn't help at all.
    And possibly GASP cross reference this entry in
    Class:
    public InputStream getResourceAsStream(String name)Finds a resource with a given name. This method
    returns null if no resource with this name is found.
    The rules for searching resources associated with a
    given class are implemented by the defining class
    loader of the class.
    Now you may equivocate that the docs don't
    specifically state that the classpath is where
    resources are searched for, but I would maintain that
    any Java developer worth anything should know this.Really? So where, in the above entry, does it explain the impact of the "/" character at the beginning of the string?
    I know how classes are searched for. I know the impact of the class path. How that impacts a 'resource' is less clear. Particularily since the "/" character has nothing to do with loading classes.
    >
    This should be Java 101. Advanced Topics should be
    something that affect people who have programmed Java
    for years. (This is usually something that first year
    programmers work out). If this is representitive of
    the kinds of questions that qualify as "Advanced" then
    this forum will become basically useless.So an opposing opinion...this is an advanced topic. Nothing in the java docs makes it clear. And it is even less clear the context of a container.

  • Cannot Promote Properties

    Hello,
    I am having some issues with InfoPath.  I am new to this, but from the explanation it should be straight forward.  Here is what I want to do.  I am creating a workflow that will send an email out to an external user with an attachment from
    a document library.  The only problem I have is getting the recipient email address from the SharePoint user.  
    What I am trying to do is use an initiation form to collect the name and the email address of the recipient.  Here is my problem.  When i edit the initiation form and add those fields, I cannot promote them.  The option for Promoted Properties
    is simply not there.  When i go to file - info - more options, it is not listed under the categories.  Now, when I create an info path form by opening info path on my system, and then creating a new form the option exists.  However, I cannot
    use this newly created form in my workflow.  There is no option to add a custom for to a workflow.  Or at least I cannot find one.  
    Is there any way to get user input from a form and use that input in a workflow?  Is there any way I can do this without having to rely on promoted properties?

    when you say you cannot edit. what is happening
    is that option disabled(it can be due to permission) or database is locked from central admin quota and lock.
    Check if SQL server is giving any error message\disk space issue
    If you getting some error message. please share error details with us

  • NullPointerException while accessing .Properties from JAR

    Hi,
    I have created a JAR file which contains the .class as well as .properties in my application. Similarly when generating the JAR i have included the respective JAR's as well as the Main class of the app. in the Manifest.MF file.
    Below is the code i am using to load the properties from the LoggerConstants.
    if (properties == null) {
                   try {
                        properties = new Properties();
                        properties.load(Thread.currentThread().getContextClassLoader()
                                  .getResourceAsStream (LoggerConstants.LOGGER_PROPERTIES_PATH));
                        PropertyConfigurator.configure(properties);
                   } catch (IOException ioe) {
                        throw new LoggerException("unable to load file="
                                  + LOGGER_PROPERTIES_PATH, ioe);
    When i access the JAR in other app. by putting that in the build path, i am getting the following exception:-
    Exception in thread "main" java.lang.NullPointerException
         at java.util.Properties$LineReader.readLine(Properties.java:418)
    It seems that it is not able to pick the .properties which is there in the JAR file? But it is able identify the .class file?
    I tried by copying the same in the ANT Class path in eclipse, but still the problem persists. What i need to make sure that the .properties will be identified by the other app (App. 2)? Please shed some light into this.
    Thanks,
    Rithu

    Thanks Guys, the logger.properties will be under the classpath in the eclipse which will be under " src/com/example/logger.properties" directory. To brief , i am going to give this logger app. by compressing it in the JAR and will send to another machine , they need to use this JAR in their application and make use of the LogLevels i have created. The same will be done for other app. as well. So a Single Logger comp. which is build independently will be used by other standalone app. which needs to log the information.
    1) So, when i give the "LoggerComponent" JAR to other application. they should not modify any code (or create any classes) to use the .class or the .properties of the JAR?
    2) .class may not be a problem, but with .properties which may be a problem, hence are you saying that we need to load the logger.properties again in the referenced app. explictly, like wise do it for other app. which is going to use it? Because from my side i will give the Logger Comp. JAR to the other machines, just they need to use it as it is, without any modification in their code.
    3) Moreover when i create a JAR whether i need to package log4j.jar as well as other dependent JAR for the logger app.? So that the other reference app. dont have their own log4j.jar in their system to make use of it? Whether that makes sense or we should package a JAR with other JAR's(dependent JAR of the app.)?
    4) Ok. say if i am going to access the properties in my JAR in the reference app., like:-
    String sConfigFile = "src/com/example/logger.properties";
    InputStream in = LoggerTest.class.getClassLoader().getResourceAsStream(sConfigFile);
    if (in == null) {
         //File not found! (Manage the problem)
    Properties props = new java.util.Properties();
    props.load(in);
    LogManager logManager = new LogManager(); // Main class in the LoggerApplication JAR used in the reference app.
    logManager.logMessage("Test log msg");
    I will load properties and invoke the main class in JAR like above? Please clarify these queries. Thanks for the support
    Thanks,
    rithu

  • Can we get the data from list without using any change event...

    It is possible to get the current data from list without passing events?...
    Thanks in advance,
    senthil.

    Can you get what you want by accessing the selectedItem/selectedItems and selectedIndex/selectedIndices properties?

  • Pass entire list of XY graph properties from Main vi to Subvi XY Graph

    Hello Everyone,
    I have an XY graph in my main vi that allows users to review data.  They have control over how they want to display the data on this graph(scale,color,line style, etc).  I have a subvi that excepts and array of XY graph plots (multi-plot) and prints the graph as the user has set it up.  As of right now I am passing only certain properties from the main XY graph to the subvi XY graph using property nodes.  Using this method only the important items are being passed (scale, flipped, xy scale name label) mainly because I have been to lazy to sit down and make a cluster containing all the property values.  I have to beleive that there is a way for me to pass a reference from the main XY graph to the subvi XY graph that will set all the properties in the Subvi graph to the same settings that the Main XY graph has.
    Thank you in advance,
    Steve

    Passing a reference to the subvi seems to be half of the solution that I am looking for.  This allows me full access to all propertys of the main graph.  The problem is that once I am inside the subvi I still have to select what properties I want to pass to the subvi graph. (see attached image).  My goal is to pass the reference to the subvi and then have every property of the main graph be assinged to every property of the subvi graph.  This way no matter what the user changes on the main graph (line style, width, color, scales, precision, etc) the subvi graph will reflect this.  With the method displayed in the image I have to manually select the properties that I think will most likely be edited.  And if I miss one the user will not get an exact match of the main graph.  I am hoping there is a way to do this, if not then I will just have to sit down and pass all the property values from the reference to the subvi graph but this seems like the hard way of doing it. 
    Attachments:
    Refnum.JPG ‏19 KB

  • How do I delete songs from Itunes without losing them in my IPOD?

    How do I delete songs from Itunes without losing them in my IPOD? I don't want 11gb of music stored on my computer when I already have it in my Ipod. Anyone have some info?

    You can Transfer music manually, then delete the files from the PC without having it sync to the iPod.
    HOWEVER.....
    Deleting songs off of iTunes or your computer is a very bad idea unless you have created one or more backup files of all your songs.
    Using the iPod as the sole repository of any of your songs is a very risky practice. When (not ‘if’) you need to restore the iPod, return the iPod for service, or it's song files are somehow lost or damaged, you will be re-ripping all your CDs back into iTunes and re-purchasing all your iTMS songs. Restoring the iPod is a common ‘fix’ to many small issues that arise.
    If you cannot store your songs on a PC or within iTunes, then you will need to have some storage medium in use (an external hard drive, DVDs or CDs). You should also consider a secondary backup medium for additional safety. Whether you keep your music in iTunes or on an external source – Multiple copies of your music files are a must!
    The iPod is really designed to be playback device - not a primary storage device (although it can be used as such), and certainly not as the only storage medium for all your music.
    Always backup your PC files: both music and data. Backup as frequently as possible. The usual ‘metric’ is to determine just how much work (hours, days, weeks) or money spent you are willing to repeat by extending out your time between backups. Your choice, your potential headache &/or loss.
    Many data-savvy folks have more than one backup and create incremental backups every time they add to or change their Library. Depending on the work I am doing, I may perform several backups during the same day. As they are incremental, and placed on my Backup ExHD – it is a very quick operation to perform several times a day, when needed.
    If you are heavily invested in your Library data (Playlists, Play Counts, Ratings, Last Played, Date Added, etc.), then:
    it is critical that you also make multiple backups of your ‘iTunes Library.itl’ file.
    iTMS REMINDER: While you can always take the time to re-rip the CDs you own to restore your iTunes music, if you lose your iTMS purchased music and have no backups, you will have to re-purchase them. Few exceptions are made to this rule – at least none that I am aware of.
    Here is a post on developing a backup strategy:
    http://discussions.apple.com/click.jspa?searchID=-1&messageID=1498152

  • Cannot set Flash button properties from sprite behaviour

    I'm puzzled...
    I'd like to set Flash button properties from behaviors on the
    sprite
    itself (unselect all buttons with a sendAllSprites, for
    example) but
    only this sample script works :
    on mouseEnter me
    sprite(spriteNum).selected = true
    end
    those ones won't:
    on mouseEnter me
    me.selected = true
    end
    on mouseEnter me
    selected = true
    end
    It must but obvious but I can't get it to work...
    Thanks.
    PJ

    The selected property is a property of the sprite. You need
    to
    reference the sprite specifically when you access it.
    When you are using
    me.selected=true
    the 'me' is referring to the current instance of the
    behaviour that is
    running. It is not referring to the sprite itself. Therefore,
    you need
    to use
    sprite(me.spriteNum).selected=true
    so that you correctly reference the sprite.
    You can use the syntax
    me.property=true
    only if the property in question is a property in that
    *script*.

  • How can i access properties from APP server through JNLP with ot using JAR

    Hello
    i want to retrive a Properties file from WL-7 app installed location like :bea/home/externalized.properties
    now i want to use this properties file throgh out the application. if any property is changed in "externalized.properties" that could be reflect dynamically in my code.
    So my requirement is :
    The current implementaion is using the JNLP down load the required code which contains the properties in .jar files, i have around 500 properties which are embedded in differnet .jar files with differnt property name. So i want to make all 500 properties to get out side from the jar files. and keep that consolidated properties in a single location and access it dynamically after deployed my ear file in wl7 app server.
    my application is implemented in SWING and EJB now i want to create an ear file which can be deployed any instance or cluster of WL7 app server.
    My Q:
    1. How can i access properties file through JNLP? (not a single property, want to access all properties in externalized.properties)
    2. is thare any known issue with SUN to load properties file through JNLP?
    your help is highly appreciated.
    -Siva

    Hey Thanks for your response,
    My question is Still not answered,
    see infact i have different type of environments to launch my application.
    infact my weblogic is deployed at remote location whihch is installed in linux,
    code is exist in our local system.
    At the time of code build for my local system i'm not able to get the properties from remote WL server,
    so at the time of code compilation and making the EAR file i'm not having this externalized properties file in newly generated EAR file.
    so once i copied my EAR in to WL7 cluster and i'm running the application using startAdminserver.sh, in this script file i'm defining the
    java -DexternalizedProperty=$WL_HOME/externalizedProperty.properties so now i'm able to get this properties to 'externalizedProperty"
    But when i download my application required jars, at this time i does not having the property file in my downloaded JAR files.
    So i want to access the remote properties file in suh sistuation.
    now i'm runnig the application at my local side to launch and Server side as well.
    So i have 2 runtimes 1 is my local and another is my server. In this case using "-DexternalizedProperty" i'm able to get this in server side,
    once control is come to local system it is not able to find this "-DexternalizedProperty" [externalizedProperty].
    Hope now u get my scenario..
    Thanks,

  • Post-processing f4v from FMLE without re-encoding?

    I've been looking for  a way to post process (simple cut & splice) f4v file from FMLE without re-encoding the file. There are some tools that can make this happen, but its output only works with Flash Player/VLC/etc., but cannot be played on the iPhone.
    Is there a tool that can make this happen? Or using tools like Adobe Premier that requires re-encoding is the only way to go?

    Just so I'm clear on this, you want to be able to play the files in, for example, iPhone but don't want to re-encode?
    If that's it, you probably have to re-encode. Depending on the player you want to play it in though.
    iPhone doesn't play the flash container formats but it might (I don't have an iPhone so I can't test this but...) be possible to flatten the file with the f4vpp tool and then simply change the file extension to .mp4. Do tell me if that works.
    "There are some tools that can make this happen..."  What tools are you using for this?
    F4VPP: http://www.adobe.com/products/flashmediaserver/tool_downloads/

  • Getting database properties from current container

    Hi guys
    I'm a trainee java developer and I'm struggling... I've done countless google's & I'm not getting anywhere...
    I won't mind if the response to this post is RTFM, but at least could you point me in the right direction :)
    My manager told me to replace all our ejb finders to rather use Hibernate (www.hibernate.org).
    I got that working very cool, but the way I setup Hibernate's SessionFactory is through an xml file:
    Example:
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE hibernate-configuration (View Source for full doctype...)>
    - <hibernate-configuration>
    - <!-- a SessionFactory instance listed as /jndi/name
    -->
    - <session-factory name="java:comp/env/hibernate/SessionFactory">
    - <!-- properties
    -->
    <property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
    <property name="connection.url">jdbc:hsqldb:hsql://localhost:1703</property>
    <property name="connection.username">sa</property>
    <property name="connection.password" />
    <property name="dialect">net.sf.hibernate.dialect.HSQLDialect</property>
    - <!-- mapping files
    -->
    <mapping resource="za/co/strate/safe/reports/CountPartyUnmatchedOrdersVO.hbm.xml" />
    </session-factory>
    </hibernate-configuration>
    Now my manager want's me to rather get these database connection properties from the current ejb container (not hard-coded in any file)...
    We have client's running JBoss & IBM WebSphere...
    Any pointers would be greatly appreciated!
    Thanks!
    Anthony

    Now my manager want's me to rather get these database connection properties from the current ejb container (not hard-coded in any file)...
    Tell you'r manager that he is a stupid asshole who has no clue about what he is talking.
    Because what he wants is not possible

  • Exception while loading properties from an xml file

    Hi all,
    I've got a problem while loading properties from an XML file:
    java.lang.ClassCastException: org.apache.xerces.dom.DeferredCommentImpl cannot be cast to org.w3c.dom.Element
    ERROR - Cannot load properties from the specified file <./conf/login.prop> java.lang.ClassCastException: org.apache.xerces.dom.DeferredCommentImpl cannot be cast to org.w3c.dom.Element
         at java.util.XMLUtils.importProperties(XMLUtils.java:97)
         at java.util.XMLUtils.load(XMLUtils.java:69)
         at java.util.Properties.loadFromXML(Properties.java:852)
         at g2.utility.HRPMProperties.<init>(HRPMProperties.java:78)
         at g2.utility.HRPMProperties.getInstance(HRPMProperties.java:94)
         at g2.gui.workers.ApplicationSwingWorker.<init>(ApplicationSwingWorker.java:36)
         at g2.main.Main.main(Main.java:37)but this code worked before, and I've got the xerces and xercesImpl packages in the classpath, anyone can give me an hint on how to fix the problem?

    Here there's the code that instantiates the HRPMProperties object loading the property file:
    public class HRPMProperties extends Properties {
         * A reference to myself.
        protected static HRPMProperties mySelf = null;
         * The property file to which load the configuration.
        protected static String propertyFile = "./conf/login.prop";
          * A set of static strings used as keys in the properties file.
         public final static String DATABASE_URL = "database_url";
         public final static String DATABASE_USERNAME = "database_username";
         public final static String DATABASE_PASSWORD = "database_password";
         public final static String REAL_USERNAME = "real_username";
         public final static String REAL_PASSWORD = "real_password";
         public final static String PHANTOM_LOGIN = "login_thru_phantom_user";
         public final static String AUTOCONNECT = "autoconnect";
         public final static String TRANSLATION_FILE = "translation_file";
         * Builds up an empty properties map.
        protected HRPMProperties(){
         super();
         this.reload();
         * Builds up the property map from the specified input file. <B> The file must be in XML format</B>.
         * In case of exception and/or problems reading from the specified file, an empty property map is returned.
         * @param fileName the path and the name of the file with the XML representation of the properties.
        protected HRPMProperties(String fileName){
         super();
         try{
             this.loadFromXML(new FileInputStream(fileName));        
         }catch(Exception e){
             Logger.error("Cannot load properties from the specified file <"+fileName+"> " + e);
             e.printStackTrace();
         * Provides an instance of the property class loaded from the default configuration file.
         * @return the property instance
        public static final HRPMProperties getInstance(){
         if( HRPMProperties.mySelf != null )
             return HRPMProperties.mySelf;
         else{
             HRPMProperties.mySelf = new HRPMProperties(HRPMProperties.propertyFile);
             return HRPMProperties.mySelf;
    }The constructor is the one triggering the exception, so there's a problem loading the XML property file.

Maybe you are looking for

  • Selecting all "similar" text - is it possible?

    I have a feeling this isn't possible but i thought best go ahead and ask anyway... I have converted a document from Quark (gasp!) to InDesign. All has gone well except the leading is a bit too close. The character styles haven't been correctly brough

  • The weather widget doesn't appear in the notification center for ios7

    I can't find the basic weather widget which was part of the earlier iOS in the notification center. Has it been removed or do I need to change some settings?

  • IPhoto quits unexpectedly while editing photos

    I'm running iPhoto 9.4.2, using a Macbook Pro and Mountain Lion. I've tried repeatedly to repair my library, installed iPhoto Library Manager, and even reinstalled all of my pictures, and yet I can't edit more than about 10 photos before the program

  • Integer and fractional part of the number

    Hello everybody, I want to divide the floating point number to 2 integer words, first will receive the interger part of number, and the second will receive the fractional part of the number. For example: I have number 751.98 in DBL, then I create two

  • Landscape orientation = portrait orientation?

    I'd like my landscape and portrait orientations to look the exact same. I want the user to simply switch to landscape mode if she or he wants the book to be bigger. This is proving harder then it should be. Any help is well appreciated.