files of custom in the enterprise project properties

Hello

I created an enterprise application that contains 3 projects:

-EAR project
-EJB project
-Web project

And I added a properties file in:

-EAR project/EarContent/APP-INF/afile.properties

The content of this file is:
Host = < path to host >
Port = 389


And I have a .jar file that uses this property file located in:

-EAR project/EarContent/APP-INF/lib/afile.jar

Then I add the .jar file, through projects of the EAR-> right click-> properties-> deployment Assembly--> Add--> Archives of the workspace
It then appears under the EAR porject - deployment - Bundled libraries - library descriptor directory

When you run the application, the JAR file is running as it should, but it cannot find the properties file.

In the .jar file, I have a java file which locates the property file and the elements like this:


private static final String BROKER_PROPERTY_NAME = "afile;

brokerResources = PropertyResourceBundle.getBundle (BROKER_PROPERTY_NAME);

Host of the string = brokerResources.getString ("host");
port of int = Integer.parseInt (brokerResources.getString ("port"));


Anyone know where to put the property file to get this to work?

Best regards, reZer

The best thing to do would be to put your properties file in APP-INF/classes directory. In contrast to the APP - INF directory itself, the APP-INF/classes directory is on the application class loader.

-Konstantin

Tags: Java

Similar Questions

  • CHW files are required in the merged projects?

    I feel a little frustration here and I hope that you can help out me. I have two main projects, a very large and the other more. Each master project has subprojects merged with them. I pledge my CHM regularly and generates files associated with Subversion for the 'master to build' can add to the various product test (and ultimately the production relies). Is one of the types of files that I was including the. CHW file type. It is my understanding that it is a file type required for the final project to display all of the keywords all merged projects index.

    I have one of the developers who said that this type of file was never included in any of the memories of my predecessor before and it don't think it's necessary. I thought of compiling a project of merge and delete the. File CHW to see what is happening, but there must be an easier way.

    Can someone clarify this for me? I really don't understand that CHW files are required so that all key words all merged projects to display in the final main project. Here are my sources:

    http://www.helpware.NET/HTMLHelp/how_to_merge.htm

    http://FILExt.com/file-extension/CHW

    Thank you.

    My understanding is that the CHW file is created only when a merged CHM is opened. If a user opens a merged CHM, CHW file is created, because it contains the merged index. So it is not necessary to be placed in a source control database, or be supplied with the application.

    You could test this by installing your CHM merged on another PC, then open it. You should see a CHW file that is created in the same directory.

  • Can I change the file whfdhtml.htm inside the HR project WebHelp?

    We have a Macintosh display problem with our search pane. After researching it, we found it is because the file whfdhtml.htm contains an if statement that defines the frameset to 85% for Macs.

    When I change it to 100%, it displays correctly.

    Question: Can I make this a permanent change in the RoboHelp project somehow? I looked but could not find a place to do. Perhaps an excerpt or something?

    When I generate WebHelp, the file is replaced. Republish us all when we generate final versions for various reasons. We do not want to modify manually every time we publish.

    Comm Tech v2, Chrisi skin with search using full text, 8 HR.

    Screenshot of value, I need to change is attached.

    frame.png

    Thank you

    Rita Norris

    Technical writer

    Hello

    You can overwrite the files of source of RoboHelp. RoboHelp uses these files to create the output. Always backup the original files well.

    Whfdhtml.htm is located in the Directory \RoboHTML\WebHelp5Ext\template_defaultskin \RoboHELP\WebHelp5Ext\template_defaultskin and .

    You must replace the source files on each computer that you use to generate your page layout.

    Welcome,

    Willam

  • XSD file in Customer Service Rest EJB project

    Hello

    I've created a function that reads a blob of data and presenting it as image byte [] as a response to return

        @GET
        @Path("/photostream/")
        @Produces("image/png")
        public Response getPhotoStream(@QueryParam("recid") String recid) {
    
            byte[] imageData = SessionBean.getPhoto(recid);
            System.out.println(imageData.toString());
            // uncomment line below to send non-streamed
            //return Response.ok(imageData).build();
    
            // uncomment line below to send streamed
            return Response.ok(new ByteArrayInputStream(imageData)).build();
        }
    
    
    

    Now, I have to add this feature to my data control ' control of data from Web services (SOAP / REST)' and I have to create an xsd for her, but I don't know how I'm going to set the type of 'Response' in my xsd.

    I use Jdev 12 c.

    Thank you

    UPDATE:

    This is how I my xsd, be referenced in my ms:

    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xmime="http://www.w3.org/2005/05/xmlmime" xmlns="http://www.example.org"
                targetNamespace="http://www.example.org" elementFormDefault="qualified">
        <xsd:element name="photo">
            <xsd:complexType>
                <xsd:sequence>
                    <xsd:element name="thememo" type="xsd:base64Binary" xmime:expectedContentTypes="image/png"/>
                </xsd:sequence>
            </xsd:complexType>
        </xsd:element>
    </xsd:schema>
    
    

    When I reference in my DC of all right, but if I run the function on the client side I always get

    <oracle.adf.model> <RestDCUtils> <logServiceInvocationFailed> <Internal Server Error> 
    oracle.jbo.JboException: JBO-57001: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
    <HTML>
    <HEAD>
    <TITLE>Error 500--Internal Server Error</TITLE>
    </HEAD>
    <BODY bgcolor="white">
    <FONT FACE=Helvetica><BR CLEAR=all>
    <TABLE border=0 cellspacing=5><TR><TD><BR CLEAR=all>
    <FONT FACE="Helvetica" COLOR="black" SIZE="3"><H2>Error 500--Internal Server Error</H2>
    </FONT></TD></TR>
    </TABLE>
    <TABLE border=0 width=100% cellpadding=10><TR><TD VALIGN=top WIDTH=100% BGCOLOR=white><FONT FACE="Courier New"><pre>javax.persistence.NoResultException: getSingleResult&#40;&#41; did not retrieve any entities.
      at org.eclipse.persistence.internal.jpa.QueryImpl.throwNoResultException(QueryImpl.java:972)
      at org.eclipse.persistence.internal.jpa.QueryImpl.getSingleResult(QueryImpl.java:522)
      at org.eclipse.persistence.internal.jpa.EJBQueryImpl.getSingleResult(EJBQueryImpl.java:400)
      at model.sessionbean.SessionBeanBean.getPhoto(SessionBeanBean.java:186)
      at model.sessionbean.SessionBean_rdm5u8_SessionBeanLocalImpl.__WL_invoke(Unknown Source)
      at weblogic.ejb.container.internal.SessionLocalMethodInvoker.invoke(SessionLocalMethodInvoker.java:33)
      at model.sessionbean.SessionBean_rdm5u8_SessionBeanLocalImpl.getPhoto(Unknown Source)
      at restservice.services.MemosService.getPhotoStream(MemosService.java:64)
      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
      at java.lang.reflect.Method.invoke(Method.java:606)
      at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)
      at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$ResponseOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:205)
      at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)
      at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:302)
      at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
      at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)
      at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)
      at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)
      at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1542)
      at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1473)
      at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1419)
      at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1409)
      at com.sun.jersey.spi.container.servlet.WebComponent.service(WebComponent.java:409)
      at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:540)
      at com.sun.jersey.spi.container.servlet.ServletContainer.service(ServletContainer.java:715)
      at weblogic.jaxrs.server.portable.servlet.ServletContainer.service(ServletContainer.java:219)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:844)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.j2ee.ws.server.jaxrs.TenantServletFilter.doFilter(TenantServletFilter.java:84)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at org.jboss.weld.servlet.ConversationPropagationFilter.doFilter(ConversationPropagationFilter.java:62)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:220)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3436)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3402)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:255)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    </pre></FONT></TD></TR>
    </TABLE>
    
    </BODY>
    </HTML>
    
    
      at oracle.adf.model.rest.RestDCUtils.getResponse(RestDCUtils.java:173)
      at oracle.adfinternal.model.adapter.ChildOperation.makeServerCall(ChildOperation.java:821)
      at oracle.adfinternal.model.adapter.XMLChildOperation.invokeOperationInternal(ChildOperation.java:1266)
      at oracle.adfinternal.model.adapter.ChildOperation.invokeOperation(ChildOperation.java:476)
      at oracle.adf.model.adapter.rest.RestURLDataControl.invokeOperation(RestURLDataControl.java:119)
      at oracle.adf.model.bean.DCBeanDataControl.invokeMethod(DCBeanDataControl.java:482)
      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:267)
      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1704)
      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:2218)
      at oracle.adf.model.bean.DCBeanDataControl.invokeOperation(DCBeanDataControl.java:565)
      at oracle.adf.model.adapter.AdapterDCService.invokeOperation(AdapterDCService.java:316)
      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:785)
      at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.invokeMethodAction(JUMethodIteratorDef.java:170)
      at oracle.jbo.uicli.binding.JUMethodIteratorDef$JUMethodIteratorBinding.initSourceRSI(JUMethodIteratorDef.java:659)
      at oracle.adf.model.binding.DCIteratorBinding.callInitSourceRSI(DCIteratorBinding.java:1779)
      at oracle.adf.model.binding.DCIteratorBinding.internalGetRowSetIterator(DCIteratorBinding.java:1753)
      at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4725)
      at oracle.adf.model.binding.DCExecutableBinding.refreshIfNeeded(DCExecutableBinding.java:346)
      at oracle.adf.model.binding.DCIteratorBinding.getRowSetIterator(DCIteratorBinding.java:1709)
      at oracle.jbo.uicli.binding.MyIteratorBinding.initSourceRSI(JUAccessorIteratorDef.java:785)
      at oracle.adf.model.binding.DCIteratorBinding.callInitSourceRSI(DCIteratorBinding.java:1779)
      at oracle.jbo.uicli.binding.MyIteratorBinding.executeQuery(JUAccessorIteratorDef.java:739)
      at oracle.adf.model.bean.DCBeanDataControl.executeIteratorBindingIfNeeded(DCBeanDataControl.java:1188)
      at oracle.adf.model.binding.DCIteratorBinding.executeQueryIfNeeded(DCIteratorBinding.java:2304)
      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3292)
      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2921)
      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:113)
      at oracle.adf.controller.faces.lifecycle.FacesPageLifecycle.prepareModel(FacesPageLifecycle.java:421)
      at oracle.adf.controller.v2.lifecycle.Lifecycle$2.execute(Lifecycle.java:149)
      at oracle.adfinternal.controller.lifecycle.LifecycleImpl.executePhase(LifecycleImpl.java:197)
      at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.startPageLifecycle(ADFPhaseListener.java:204)
      at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener$1.after(ADFPhaseListener.java:370)
      at oracle.adfinternal.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:89)
      at oracle.adfinternal.controller.faces.lifecycle.ADFLifecyclePhaseListener.afterPhase(ADFLifecyclePhaseListener.java:53)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:489)
      at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:225)
      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:593)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:280)
      at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:254)
      at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:136)
      at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:346)
      at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:25)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:192)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:105)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
      at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:502)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:327)
      at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:229)
      at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:202)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:137)
      at java.security.AccessController.doPrivileged(Native Method)
      at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
      at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:460)
      at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:120)
      at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:217)
      at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:81)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:220)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
      at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:79)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3436)
      at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3402)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.provider.WlsSubjectHandle.run(WlsSubjectHandle.java:57)
      at weblogic.servlet.internal.WebAppServletContext.doSecuredExecute(WebAppServletContext.java:2285)
      at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2201)
      at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
      at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1572)
      at weblogic.servlet.provider.ContainerSupportProviderImpl$WlsRequestExecutor.run(ContainerSupportProviderImpl.java:255)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:311)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:263)
    <oracle.adf.model> <RestDCUtils> <logServiceInvocationFailed> <Internal Server Error> 
    oracle.jbo.JboException: JBO-57001: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
    
    

    What can be wrong? What is the XSD?

    I was able to remedy.

    My function now looks like this

    @GET
    @Path("/photoObject/")
    @Produces("application/xml")
    public TheMemo getPhotoObject(@QueryParam("recid") String recid) {
      System.out.println("############# getPhotoStream recid " + recid);
      TheMemo thememo = new TheMemo();
      if (SessionBean.getPhoto(recid) != null) {
      byte[] imageData = SessionBean.getPhoto(recid);
    
      if (imageData == null)
      imageData = SessionBean.getPhoto("44062-101-0000047751");
      thememo.setThememoByte(imageData);
    
      return thememo;
      } else {
      return getPhotoObject("44062-101-0000047751");
      }
    }
    

    I also had to create another class of java which has a subject that I can send the image data

    @XmlRootElement
    public class TheMemo {
    
        private String encoded = "";
        private byte[] imageArray = new byte[0];
    
        public void setThememoByte(byte[] thememo) {
            this.encoded = new sun.misc.BASE64Encoder().encode(thememo);
            this.imageArray = thememo;
            System.out.println(encoded);
        }
    
        public void setTheMemo(String set){
            this.encoded = set;
        }
    
        @XmlElement(name = "photoEncoded")
        public String getThememo(){
            return encoded;
        }
        @XmlElement(name = "imageArray")
        public byte[] getImageArray() {
            return imageArray;
        }
    }
    

    With respect to the xsd on the client side, looks like this:

    
    
        
            
                
                    
                    
                
            
        
    
    

    Thank you for your help

  • Missing files in the pod project manager

    Yesterday I installed RH8 HTML on my new Win 7 computer.  I then copied all my files associated with a specific project over my old Win XP machine.  When I use Windows Explorer to look at a list of all .htm files, I copied, they are all there.  However, when I open the project in RH8 on my new computer and display a list of the .htm files that are in a particular folder in the project manager pod, some of the .htm files are missing.  Curiously, if I open the table of contents for the project and click a topic that refers to one of the 'missing' files, RH8 opens the file and I can modify it in the usual way.  To me, that indicates that the file is really where it is supposed to be and RH8 can find it.  However, the file name is absent the pod project manager.  In addition, when I want to insert a hyperlink, the file name is missing from the list of .htm files, which I can link.  It is a problem, obviously.

    I should note that HR on my old computer is version 8.0.1.204 and HR on my new computer is 8.0.0.203.  Hard to believe that would be the issue, but thought I should mention it.  In addition, files that are not have similar names to files that are not.  For example, reportCheckDataMailmerge is absent, but the reportCheckDataMailmergeSee is not.

    I would be grateful for all the suggested fixes.

    Hello

    Try clicking on the view menu. You should see the option there. First of all, make sure that the pod project manager has the focus.

    See you soon... Rick

    Useful and practical links

    Wish to RoboHelp form/Bug report form

    Begin to learn RoboHelp HTML 7, 8 or 9 in the day!

    Adobe Certified RoboHelp HTML Training

    SorcerStone blog

    RoboHelp EBooks

  • Custom in the ALX files properties

    Hello

    in fact I deploy my application OTA. I added some special parameters in the JAD file to configure the application before it is downloaded to the device. Using the CodeModuleGroupManager I can then read properties and use them in my application.

    Now, I have received the request to deploy my application using Blackberry Enterprise Manager. The administrator has informed me, he uses an ALX file to install the application on the device. Now, my problem is that the additional settings to configure my application are no longer there (it is not possible to install the jad with alx files). Is it possible to add custom in the alx file properties? Or y at - it another way to do with BES?

    Thanks for your help,

    Lars

    Take a look at BES Admin Manual. On the side of the unit, you can query the TI custom policy settings using the ITPolicy class.

  • How to access custom in the .vm file properties

    Hello

    I have created custom property for the screen using file-> project properties.

    This property applies to one of my screen.

    If I want to access the value of the custom property in .vm.

    How to access this value. I tried to use screen.getTest (), but it returns nothing for me.

    For custom controls properties, you can use:

    #set ($value = "")
    #set ($value = $control.getProperties () .get ("PropertyName"))

    So I think for the screen, it should be something like:

    #set ($value = $screen.getProperties () .get ("PropertyName"))

  • AutoVue Office: syntax to specify a file of .gui custom in the .properties files

    Hello.

    My company must specify a menu custom for some users.

    We do not use the client desktop application built-in but Autovue

    It is possible to specify a custom file 'users.gui' in a property like 'autovue.properties' file, in order to distribute tho files on already installed customers.

    If I ' am on the wrong means to tell me.

    Thanks in advance

    Hello

    When you use AutoVue Desktop Deployment, you can specify the GUI file customized in the autovue.properties file by using this option:

    param - GUIFILE = mynewguifile.gui

    It should be added to autovue.cmdline.

    Also the new GUI file should be in your folder "\bin\Profiles".

    Thank you

    Daniel

  • Sorting files by information from the file "Properties".

    Hello

    I am trying to find a way to easily copy the highest rated songs from my MP3 player to my PC.

    I have a sansa view player but the player stopped to transfer information "sides" when syncronising with all media organisrers - WMP, Winamp, media monkey etc. I tried all.  The annoying fault with the phone is not repairable.

    I tried to use IDE tag viewers, alternative of Solution Explorer, using Linux - a lot of things, including an extention to explore that adds additional Collins to the columns in the Solution Explorer.  However, when connected to the device and view the files, no information on the sides of the files transferred or is visible - except via a single method: open the records of players in MTP mode in windows Explorer then:

    Click with the right button--> properties--> details.

    In the list of the news is a section called "user rating".  This ranking is a shown as a number '1' on a 1 star and '99' for a 5 star.  However, this information is not available as a column in Explorer, so it cannot be used for sorting the files (more high appreciation over the lowest inside is what Im will achieve).

    This notation from 1 to 99 info soes does not seem to be watched on in any other file browser media organizer. For mp3s saved on the hard drive, all fields are visible, including side but etc, and it's the problem, on the other hand when the file is copied to the PC, it seems to lose this information. If copied files do not have this ' information of the details available and copied the files do not appear to contain this information in their view in Notepad, so I can't even search for files with the string of text 99' in them.» (tearing hair).  MSC mode is also available on the device, but it does not help.

    Does anyone have any ideas how I could solve this problem?  Maybe how I could use this in some way give detailed information to sort the files?  Maybe change the registry Explorer? Another extension for Explorer?

    I just watched something do custom "column in the registry managers."  I don't really understand it to be honest, but it would be a possible solution? Im not a programmer, so this might be beyond my skills, but could write a shell extension is a solution?

    XP pro sp3.

    Thanks in advance for any help.

    Dale.

    Hello, califauna

    Unfortunately, this is not possible by default in Windows XP, I'm aware of all programs or extensions that will do what you ask.

    David
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Compiled CHM file does not reflect the name of the new project

    I have read many responses of experts to positions and have found them extremely useful is. However, I have not seen one that solves my problem.

    I have the HTML HR RH8 Version. I renamed a project through 1) file - rename project and 2) Single Source Layouts - main Layout - Properties - output folder and file name.

    Two problems are: 1) the name of the project file still reflects the old name of project and 2) the CHM file still reflects the old name of the project.

    Therefore, the output help the user displays a still the former name of the project in the title bar.

    Generated files like the RoboHelpHTML project file have been changed for the new name of the project, just like RENAME the PROJECTS using says it should. However, the CHM file does not reflect the new name of the project as it says it should.

    (1) can I change the name of the folder created when I compiled the help by exact name file?

    (2) can I change the FILE name in the window SELECT OUTPUT FOLDER AND FILE name?

    (3) I can / should I rename the names of table of contents and Index of the old project name for the new name of the project? (Help says changing the project name does not change these file names and he didn't.)

    None of these measures will correct the problem? I appreciate any help you can give.

    Welcome to our community

    Try file > project settings.

    And if that fails, try the pod project configuration, windows and change the caption of the window.

    See you soon... Rick

    Useful and practical links

    Wish to RoboHelp form/Bug report form

    Begin to learn RoboHelp HTML 7, 8 or 9 in the day!

    Adobe Certified RoboHelp HTML Training

    SorcerStone blog

    RoboHelp EBooks

  • I can't transfer photos from iPhone to MacBook Air. When I opened the Photos on a Mac, there is no tab 'import' alongside the actions, projects, Albums. iTunes is up to date. File menu does not appear iPhone

    I can't transfer photos from iPhone to MacBook Air. When I opened the Photos on a Mac, there is no tab 'import' alongside the actions, projects, Albums. iTunes is up to date. File menu does not appear iPhone

    The "import" tab appears only when the iPhone is connected to the Mac via a USB port.

    ITunes detects your iPhone when it's connected?

    If iTunes does not recognize your iPhone, iPad or iPod - Apple Support

  • where are the audio files stored during recording as a project?

    Where are the audio files stored during recording as a project. The project opens fine on my computer, but when I move to another computer I have missing audio files.

    They are stored in their own folder in the project folder:

    So if you want to move it to another computer, you must copy the project folder, not only of the project folder.

  • where do you find the project properties in iMovie 10.1?

    where do you find properties of the project in iMovie 10.1 so I can automatically add transition at random between clips

    Project properties are under 'Settings' on the right side of the editing window. Not sure what you mean by "transitions randomly adding" Transitions are part of the themes. After you click settings, and then click theme button and will open a window with the available themes. Choose the theme you want and it will include transitions provided with this theme.

  • Entering a project LV file in VSS, all files in the project are omitted. Only the shell project and settings are vs. No idea why?

    Entering a project LV file in VSS, all files in the project are omitted. Only the shell project and settings are vs. No idea why?

    Chuck72352,

    Hello! It's my understanding you need to add the files separately to Source Code control with the .lvproj file.

    This is a lot of information on Source Code in LabVIEW control practices.

  • Reading a file preferably grouped in the project

    Hello

    I'm looking for help in how I would be able to read the contents of a file preferably I gathered in my project. I managed to read/play a media file that is packaged, but somehow there is a problem with the content of a text file that has delivered. It could be the method that I use. Here is some info on the project:

    JDE: 4.7.0.41

    Structure of the project:

    prefreader (name of the project)

    data (folder where the preferences file is stored - pref_config.txt)

    IMG (folder where is stored the png)

    Media (folder where the media file is stored)

    PrefReader.java

    AppScreen.java

    code snippet:

    try {}
    FileConnection fconn = (FileConnection) Connector.open ("file:///data/pref_config.txt");
    If no exception is thrown, then the URI is valid, but the file may or may not exist.
    If (! fconn.exists ()) {}
    Add (new LabelField ("config file not found"));
    fconn. Create();  create the file if it doesn't exist
    }
    else {}
    Add (new LabelField ("config file found"));
    tell java.io.DataInputStream = fconn.openDataInputStream ();
    con_tuple = dis.readUTF ();
    Add (new LabelField ("Tuple Data =="+ con_tuple "));
    } / / else
    fconn. Close();
    }
    catch (IOException ioe) {}
    Add (new LabelField ("exception:" + ioe));
    }

    Most new LabelField are simple debugging purposes.

    I use the FileConnection class. However, I do not know how to reference a file in the project compared to a file on an SD card or the root directory! I tried several combinations, and nothing works. I get a net.rim.device.api.io.file.FileIOException: file system error.

    Kind regards

    Sean.

    You cannot use FileCOnnection to read a file that has been registered in your COD file.

    See the following article:

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800620/How_To _...

Maybe you are looking for

  • POWER SUPPLY HP XW 4300

    Hi people Would appreciate any help with this issue.  I have a HP XW4300 workstation.  I had just lit and connecting a USB device to the back, when I noticed that the power supply fan was not running.  I turned off the PC immediately. I know, by my e

  • Is it possible to use internet to recover from an Ethernet connection

    Attempt to use the recovery of the Internet on an iMac of mid-2010. HE said it will take a while then the guests for a WiFi connection. I have a direct Ethernet connection, but I never have no opportunity to use it.

  • How to choose a database schema to use for a file of sequence?

    I have several database schemas on my TestStand system, and when I select a movie file that I need to position the schema for the results entered into the database correctly.I use a SequenceFileCallback for DatabaseOptions in my file of sequence and

  • XP sp2 update

    I have download xpsp2 and proceed to install itbut when I do close is the screen and displays a message saying that I need to connect my laptop to the power supply. It is already pluged in and work does any body know out a way around this

  • my hotmail account has been hacked = they changed my email account now I can't retrieve my e-mail address, what can I do

    my hotmail account has been hacked, they changed my e-mail address and now I can't access my account!  have tried to solve this problem all day on the phone with microsoft and I don't get anywhere, matter that has any suggestions