i want to call a java class from the worklight adapter

后端 未结 2 524
滥情空心
滥情空心 2020-12-12 07:38

i have followed this document module 5.5 in this url \"http://www.ibm.com/developerworks/mobile/worklight/getting-started.html#authentication\" or ftp://public.dhe.ibm.com

2条回答
  •  [愿得一人]
    2020-12-12 08:15

    I just figured this out. It's funny how everyone went silent on this issue for two months. For me it wasn't obvious at all because it works in some projects and simply doesn't in others. The same is true for machines. It'll work one place, but not another (if you're not aware of what's going on).

    Check your .project file and make sure it has the right buildCommand tags in it.

    
            org.eclipse.jdt.core.javabuilder
            
            
        
        
            org.eclipse.wst.jsdt.core.javascriptValidator
            
            
        
        
            org.eclipse.wst.common.project.facet.core.builder
            
            
        
        
            com.worklight.studio.plugin.WorklightProjectBuilder
            
            
        
        
            org.eclipse.wst.validation.validationbuilder
            
            
        
    

    Read more at: ECMA TypeError calling Java class from Worklight adapter

提交回复
热议问题