NPE in ADTOutputStream.addApplicationDescriptor() line 330 when migrating from AIR 2.6 to AIR 3.5

I have a working maven pom which builds my AIR app using AIR 2.6 and I am trying to migrate it to use the new AIR 3.5 SDK.  According to the official release notes here : http://helpx.adobe.com/en/flash-player/release-note/fp_115_air_35_release_notes.html I need to firstly need to point to the new 3.5 schema in my air-app.xml file as follows: <application xmlns="http://ns.adobe.com/air/application/3.5"> 
I also change my swfVersion and targetPlayer attributes as follows:
<swfVersion>18</swfVersion>
<targetPlayer>11.5</targetPlayer>
I also changed the system Path environment variable on my machine to point the to the bin directory of the new AIR 3.5 sdk, so that when I type adl on the command line it reports back:
Adobe (R) AIR (R) Developer Tool (ADT)
Version 3.5.0.1060
So when flexmojos launches ADL, it is launching the correct version.
However I don't change my flex version which is set to <flex.version>4.5.1.21328</flex.version>, and my flexmojos version which is 4.2-beta.
When I then try and build my project I get the following error:
[ERROR] Failed to execute goal org.sonatype.flexmojos:flexmojos-maven-plugin:4.2-beta:sign-air (default-sign-air) on pro
ject indigo-air: Error invoking AIR api: NullPointerException -> [Help 1]
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.sonatype.flexmojos:flexmojos-maven-pl
ugin:4.2-beta:sign-air (default-sign-air) on project indigo-air: Error invoking AIR api
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:217)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBu ilder.java:84)
        at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBu ilder.java:59)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBuild(LifecycleStarter .java:183)
        at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:161)
        at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319)
        at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
        at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
        at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
        at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:290)
        at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:230)
        at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:409)
        at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:352)
Caused by: org.apache.maven.plugin.MojoExecutionException: Error invoking AIR api
        at org.sonatype.flexmojos.plugin.air.SignAirMojo.doPackage(SignAirMojo.java:337)
        at org.sonatype.flexmojos.plugin.air.SignAirMojo.execute_aroundBody0(SignAirMojo.java:348)
        at org.sonatype.flexmojos.plugin.air.SignAirMojo.execute_aroundBody1$advice(SignAirMojo.java :24)
        at org.sonatype.flexmojos.plugin.air.SignAirMojo.execute_aroundBody2(SignAirMojo.java:348)
        at org.sonatype.flexmojos.plugin.air.SignAirMojo.execute_aroundBody3$advice(SignAirMojo.java :17)
        at org.sonatype.flexmojos.plugin.air.SignAirMojo.execute(SignAirMojo.java:1)
        at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.j ava:101)
        at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:209)
        ... 19 more
Caused by: java.lang.NullPointerException
        at com.adobe.air.ADTOutputStream.addApplicationDescriptor(ADTOutputStream.java:330)
        at com.adobe.air.AIROutputStream.addApplicationDescriptor(AIROutputStream.java:63)
        at com.adobe.air.ApplicationPackager.addSpecialFiles(ApplicationPackager.java:242)
        at com.adobe.air.AIRPackager.addSpecialFiles(AIRPackager.java:172)
        at com.adobe.air.ApplicationPackager.createPackage(ApplicationPackager.java:63)
        at org.sonatype.flexmojos.plugin.air.packager.FlexmojosAIRPackager.createPackage(FlexmojosAI RPackager.java:42)
        at org.sonatype.flexmojos.plugin.air.SignAirMojo.doPackage(SignAirMojo.java:310)
        ... 26 more
If I try adding explicitly adding the AIR dependencies as follows:
         <dependency>
            <groupId>${flex.groupId}.framework</groupId>
            <artifactId>airframework</artifactId>
            <version>${flex.version}</version>
            <type>pom</type>
        </dependency>
        <dependency>
            <groupId>${flex.groupId}.compiler</groupId>
            <artifactId>adt</artifactId>
            <version>${flex.version}</version>
            <scope>compile</scope>
        </dependency>
this has no effect and I still get the NPE error.
Here's the relevant fragment from my pom.xml which configures the flexmojos plugin to build the AIR app:
<plugin>
     <groupId>${flexmojos.groupId}</groupId>
    <artifactId>flexmojos-maven-plugin</artifactId>
    <version>${flexmojos.version}</version>
    <extensions>true</extensions>
    <configuration>
     <testTimeout>100000</testTimeout>
     <fonts>
      <managers>
       <manager>flash.fonts.JREFontManager</manager>
       <manager>flash.fonts.AFEFontManager</manager>
       <manager>flash.fonts.CFFFontManager</manager>
      </managers>
     </fonts>
     <sourceFile>IndigoAir.mxml</sourceFile>
     <flexBuilderCompatibility>true</flexBuilderCompatibility>
     <keystore>${basedir}/src/sign.p12</keystore>
     <storepass>flexmojos</storepass>
     <descriptorTemplate>${basedir}/src/IndigoAir-app.xml</descriptorTemplate>
     <ignoreVersionIssues>false</ignoreVersionIssues>
     <coverage>true</coverage>
     <coverageProvider>cobertura</coverageProvider>
     <coverageReportFormat>
      <format>xml</format>
      <format>html</format>
     </coverageReportFormat>
     <useNetwork>true</useNetwork>
     <themes>
      <theme>${project.build.directory}/themes/spark.swc</theme>
     </themes>
     <includeTypes>swc,css</includeTypes>
     <overWriteIfNewer>true</overWriteIfNewer>
     <targetJdk>1.6</targetJdk>
     <timestampURL>none</timestampURL>
     <optimize>true</optimize>
     <framework>spark</framework>
     <dumpConfigAttach>true</dumpConfigAttach>
     <keepGeneratedActionscript>false</keepGeneratedActionscript>
     <keepAs3Metadatas append="true">
      <keepAs3Metadata>Mock</keepAs3Metadata>
      <keepAs3Metadata>BeforeClass</keepAs3Metadata>
      <keepAs3Metadata>AfterClass</keepAs3Metadata>
      <keepAs3Metadata>Before</keepAs3Metadata>
      <keepAs3Metadata>After</keepAs3Metadata>
      <keepAs3Metadata>Rule</keepAs3Metadata>
      <keepAs3Metadata>Suite</keepAs3Metadata>
      <keepAs3Metadata>RunWith</keepAs3Metadata>
      <keepAs3Metadata>Ignore</keepAs3Metadata>
      <keepAs3Metadata>Test</keepAs3Metadata>
      <keepAs3Metadata>DataPoint</keepAs3Metadata>
      <keepAs3Metadata>DataPoints</keepAs3Metadata>
      <keepAs3Metadata>Parameters</keepAs3Metadata>
      <keepAs3Metadata>Theory</keepAs3Metadata>
      <keepAs3Metadata>ArrayElementType</keepAs3Metadata>
      <keepAs3Metadata>Log</keepAs3Metadata>
      <keepAs3Metadata>Transient</keepAs3Metadata>
      <keepAs3Metadata>Inject</keepAs3Metadata>
      <keepAs3Metadata>EventHandler</keepAs3Metadata>
      <keepAs3Metadata>ManagedEvent</keepAs3Metadata>
      <keepAs3Metadata>Dispatcher</keepAs3Metadata>
      <keepAs3Metadata>PostConstruct</keepAs3Metadata>
      <keepAs3Metadata>Mediate</keepAs3Metadata>
      <keepAs3Metadata>Autowire</keepAs3Metadata>
      <keepAs3Metadata>PreDestroy</keepAs3Metadata>
      <keepAs3Metadata>ViewAdded</keepAs3Metadata>
      <keepAs3Metadata>ViewRemoved</keepAs3Metadata>
      <keepAs3Metadata>ViewNavigator</keepAs3Metadata>
     </keepAs3Metadatas>
    </configuration>
   </plugin>
Can anyone tell me what I'm doing wrong?  What is happening at line 330 in ADTOutputStream.addApplicationDescriptor()? This code isn't open sourced so the error message is plain unhelpful! If I use the same AIR sdk but back out the changes for 3.5, then it builds fine with the 2.6 schema. Thanks in advance!

Hi,
I'm kind of replying to my own post here. I have been doing some further development with iOS on AIR 2.6 and I think that unfortunately the new GPU rendering IS actually just a lot slower than it was on the Packager for iPhone.
I know that a lot of people say that Air 2.6 has made their app run 2x faster and a lot of people say the opposite - that moving to 2.6 has made it run 2x slower- I think the difference there is probably that if you had your code properly optimized for GPU under PFI (which took a lot of work) then you will notice a big slowdown.
For example, under PFI, on the iPad at 1024x768 I could have at least 50 large moving sprites on the screen at once running at full 60fps - I dont think that Air 2.6 could even manage that at 30fps (I have taken to lowering my fps to 30 in Air 2.6).
Saying that Air 2.6 does make it a lot easier to port, especially if you are just using bitmaps as dont really have to do anything (unless they scale/rotate), it's more likely to "just work". Also, PFI had a lot of little bugs in it, like certain blending modes only working half the time, and sometimes the framerate would just bomb if you used too much memory.
So I guess bottom line is that Air 2.6 feels a lot more stable and is easier to use, however if you are just purely using the GPU it will be less than half the speed of the old PFI, which is a massive shame.
However I could be missing something here?

Similar Messages

  • HT4796 When migrating from a PC to my Mac user on the Mac.

    When migrating from a PC to my Mac, the files get created under a new user on the Mac. How do I move the files to my user log on?

    Check out the following KB Articles: 
    http://support.apple.com/kb/PH11393
    OS X Mountain Lion: Transfer your information from a PC
    http://support.apple.com/kb/HT1408
    How to transfer data from a PC to a Mac

  • JMS issues when migration from weblogic 9.2 to 10.3.5

    We are facing some issues when migration from weblogic 9.2 to 10.3.5
    In  weblogic 9.2 :_
    BMP Entity EJBs used in our project are read-only in nature using entity cache, below is the configuration details
    <!DOCTYPE weblogic-ejb-jar PUBLIC "-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN" "http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd">
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>
    Company
    </ejb-name>
    <entity-descriptor>
    <pool>
    <max-beans-in-free-pool>300</max-beans-in-free-pool>
    <initial-beans-in-free-pool>150</initial-beans-in-free-pool>
    </pool>
    <entity-cache>
    <max-beans-in-cache>3500</max-beans-in-cache>
    <idle-timeout-seconds>100000</idle-timeout-seconds>
    <read-timeout-seconds>0</read-timeout-seconds>
    <concurrency-strategy>ReadOnly</concurrency-strategy>
    </entity-cache>
    Entity beans will get refreshed using the JMS messges. with in the MDB descriptor files(weblogic-ejb-jar.xml) we are using the provider URL directly and XA enabled connection factory is set to false.
    migration to Weblogic 10.3.5_
    With the same configurations MDB are not not getting deployed in weblogic 10 with some exception, so we removed the provider URL from weblogic-ejb-jar.xml and changed the JMS configuration to use foreign JMS and XA enable connection factory is set to true. Now when ever the JMS message is triggered Entity bean is not getting refreshed with the updated values. i.e values are stale.
    Can some one look into this and provide your inputs to resolve this issue.

    I think the Entity bean refresh problem appears to be unrelated to MDBs. The MDB is only responsible for getting the message to your application (which in turn interacts with Entity beans). You might want to try posting your question to an EJB newsgroup.
    Tom

  • HT4413 When migrating from time machine to my new hard drive, only some files and applications and setting are transferred, not all of them. In my latest back up I have them all. How can I fix that?

    When migrating from time machine to a new hard drive, not all is transferd, only partial documents, applications , settings etc. How can I migrate the latest back-up with all the content.

    sohs wrote:
    When migrating from time machine to a new hard drive, not all is transferd, only partial documents, applications , settings etc. How can I migrate the latest back-up with all the content.
    If you want to use Time Machine to recover the contents of one of its a backups to a new drive, follow the instructions in Mac OS X 10.6: Recovering your entire system. Note that you must select the "Restore System From Backup" option from the Utilities menu of the Installer disc to do this.
    Also note that if you are transferring files to a hard drive to be used with a different computer, you should use Migration Assistant instead. This intentionally will not copy everything because some settings, applications, etc. are not compatible computer-to-computer. Migration Assistant will copy everything that is.

  • HT201250 When migrating from time machine to my new hard drive, it migrates the first back-up I made several years ago. How can I migrate the latest back-up ?

    When migrating from time machine to my new hard drive, it migrates the first back-up I made several years ago. How can I migrate the latest back-up ? I need time machine to migrate the latest back-up. Should I delete the older back-ups ?

    As noondaywitch says, it should use the latest backup.
    Where are your backups (external HD, Time Capsule, etc.)?
    It sounds like there are two separate sets, and you're not connected to the right set.

  • When migrating from Bo6.5 to Bo4.0 what are the issues we will face?

    Hi all,
    When migrating from Bo6.5 to Bo4.0 what are the issues may come?
    Thanks,
    Hari.

    Hi,
    first of all you cant direnctly migrate from BO 6.5 to BI4. You have to migrate prior from BO 6.5 to XI 3.1 and afterwards to BI4.
    This is a huge step cause BO 6.5 is a very legace version. You will face a lot of issues with the Security. You have to totally re- design it. You will also face issues with BCA Jobs. Also here you have to do a complete re- design. If you only use Full Client Reports you have to convert them to WebI in XI 3.1 prior to migrating them to BI4 cause with BI4 the support of DeskI has been stopped.
    Maybe you consider to consult the SAP Consulting devision. This kind of Migration will be challenging.
    Regards
    -Seb.

  • Having trouble migrating from macbook Pro to macbook Air?

    Apple has kind of messed up with migration from older laptops to Macbook Air. With 140 GB to transfer onto my new Macbook Air, I took a big gulp when my new Air told me casually that it would take about 36 hours to migrate my stuff from my Pro to the new Air over the wireless network. OK, so I have a slow network, sue me. Apple's technical help was no help, and that's getting pretty common. The solution? A data transfer USB cable (PCMACLINK2   USB to USB Data Transfer Cable for Windows and Mac, Startech). A simple USB-USB connection and data transfer rates of around 480 MBS. I think we are good to go. BTW, why didn't Apple release a Firewire/Thunderbolt dongle? Making a new set of dongles for every new Mac seems to be de rigeur these days, so why not add one more? Oh, and Apple doesn't seem to carry a data transfer cable. FAIL!

    Hello,
    I've  been pondering getting a Macbook Air but I want to find out if I can copy over Endnote X4 and Office from my Macbook Pro (Snow Leopard) to a new Macbook Air (Lion). 
    Is it just a matter of drag and drop or using Migrate Assistant or is there anything to worry about between different Macbooks, different versions of OS or some restriction on copying Apps?
    Also, assuming a migration is possible, can I just use my Timemachine external drive or should I buy a cable instead?
    Thanks,
    Jason. 

  • -error in XML document- when migrating from BPEL 10.1.3.3 to 10.1.3.4

    Hi,
    I've just been handed as set of BPEL processes which were developed in 10.1.3.3 and I'm working on migrating them to 10.1.3.4.
    Migration of most processes was straight forward, however, there is one process (SendMessage) that accepts an XML document as its input. The message payload is successfully sent in the older version, however, in version 10.1.3.4, I keep on getting the following error.
    Server was unable to read request. ---> There is an error in XML document (195, 99). ---> Input string was not in a correct format.
    The line number is the end line number of the xml document message.
    I've checked both versions and in 10.1.3.3 the ValidateXML option is set to false, whereas in 10.1.3.4 its 'none', which is equivalent to false.
    Are there any other settings in 10.1.3.4 that could be causing this error? Has anyone else come across this issue when migrating upgwards from 10.1.3.3?
    I would greatly appreciate any suggestions.
    Kind regards,
    Shiraz

    I had recently done the same migration. One of the issues I had faced was while specifying the nillable elements I used to get an error if the namespace definition was in the header. The error was occuring while sending the message to AQ.
    I do not know if this will help. Also it would be useful if you could provide details of where the process is failing is it failing at the receive activty or later. What does the process do....
    Best of luck with the problem.

  • Application has problems when migrated from 10g to 11g

    Hi there,
    I am hoping someone can shed some light on a problem I have in moving an application from Oracle 10g to Oracle 11g. The app works fine on 10g (uses Apache webserver with PL/SQL module, and APEX 3.1.2.00.2), but on 11g using the embedded web server and APEX 3.2.0.00.27, it doesnt. Most of the app works fine, but there are a couple of pages that provide the ability to add child rows to a parent/child relationship, where the parameter passing mechanism from one page to the next appears to suffer from some sort of corruption. I have traced this using the "session" and "debug" buttons on the developer interface, which show that the values of the parameters get changed inexplicably, when branching from one page to the next - even when the page is actually branching to itself.
    I am using the "Set these items, "With these values" fields in the branch, and have verified that the correct values are being associated with the correct items in the application builder. But while this does work correctly under 10g, with 11g, the wrong values end up being passed. Just prior to the branch the set of parameters have the correct values, but immediately after the branch, one of the values is NULL, another has the value of a different item, and a third has a totally random value - I have no idea were it comes from!
    I migrated the application from 10g to 11g using the APEX application developer's Export/Import options. There have been no other changes. Should this have worked? If so, any ideas what might have gone wrong?
    Thanks,
    Sid.

    Well, I managed to solve this, but not in a way that makes much sense.
    In desperation (I had tried almost everything else!) I changed the value of "Cached" in the page settings from "No" to "Yes", and ran the app, but the page didnt render correctly (in either Firefox or IE7) - in fact all that displayed was the developers toolbar at the bottom of the page. I changed the value of "Cached" back to "Y", ran the app again, and hey presto - everything worked fine! I actually did this a second time with a fresh import of the app from 10g, just to be sure I wasnt seeing things. I wasnt!
    There was just one further issue - everything worked fine apart from this section of code in a page process:-
    ELSIF (:p9_filter_type = 5) THEN
    IF (:p9_x_gene_list IS NOT NULL) THEN
    :p9_filter := :p9_x_gene_list;
    END IF;
    :p9_entity_types := 'GENE';
    END IF;
    In 11g the value of :p9_entity_types was not being set to 'GENE' when :p9_filter_type was 5. This was (and still is) working in 10g. I changed the code as follows:-
    ELSIF (:p9_filter_type = 5) THEN
    :p9_entity_types := 'GENE';
    IF (:p9_x_gene_list IS NOT NULL) THEN
    :p9_filter := :p9_x_gene_list;
    END IF;
    END IF;
    ... and now it works fine in 11g as well.
    Only wish I knew why!

  • Attaching a PLL automatically when migrating from 6i to 9i

    Hi,
    is it possible to attach a self-written pll-library automatically during the process of migration (6i->9i) when using the migration assistant ?
    How can I achieve this ?
    Where do I have to put entries in the migration assistant, converter.properties, search_replace.properties ?
    (I have in mind the example of the attachment of the reports-pll rp2rro.pll containing the workarounds of run_report.)
    Especially when migrating a great number of Forms to 9i it could be useful to execute an automatic attachment of self-written PLLs instead of attaching it manually.
    Has anybody an idea ?
    Best Regards,
    Michael Wolters

    Hi,
    actually you would upgrade the application sources from Forms 6i to Forms9i and then run teh Forms Migration Assistant for the clean up /this at least is my understanding after asking one of our Designer Product Managers).
    Frank

  • HT4889 Am I wrong or does Migration Assistant not work in Mountain Lion (10.8.2) when migrating from a PowerPC running Tiger (10.4.11)? Apple really needs to get on the ball or face losing people buying their new desktop products.

    The title alone speaks to my frustration about this issue.
    Used the process that was recommended by Apple to migrate from my "Lampshade" iMac (PPC running 10.4.11) to the new iMac (Intel running 10.8.2) and I got bupkiss...
    Just a spinning wheel (not beachball) and no drive recognized using Migration Assistant for both nor when using Target Mode on the iMac running 10.4.11 and Migration Assistant on the iMac running 10.8.2. Which is ironic, or more accurately oxymoronic, since the iMac in Target Mode (10.4.11) is recognized on the desktop of the iMac running 10.8.2 but not in the Migration Assistant. And before you can misdiagnose..it is not the Thunderbolt connection since I have the Apple recommended Thunderbolt to Firewire adapter and also used the Firewire 400 to 800 cable to expedite the transfer.
    On a personal note...
    I'm not bashing Apple for this...they are "head and shoulders" above the competition in what they do but I've been burned a few times so I feel I can share a small bit of loyal customer advice...I understand your iOS and mobile products hold huge sway in company focus and market-share but I find it a tad unwise to slack on the desktop applications. I don't recall any app for the iPhone/iPad family being made on the iPhone/iPad...only from desktop applications if I recall correctly. And how can I clearly "Move my Mac even further ahead"  as your marketing states when I can't even migrate my files from my old Mac to my new one in a simple fashion as per your instructions?
    I thank anyone in advance with an answer or even a workaround for this issue and please have a great day.

    http://support.apple.com/kb/ht4889
    Migration from Mac OS X v10.4 Tiger to OS X Lion
    Migration from Mac OS X v10.4 computers to OS X Lion over your Wi-Fi or a wired network is not supported. However, if both Macs are equipped with a FireWire port, you can use Target Disk Mode to transfer your data:
    Verify that both Macs are equipped with a FireWire port. Note that different model Macs may have different FireWire connectors, which will require an appropriate cable, such as FireWire 400 to FireWire 800.
    On the Mac you want to transfer data from, Restart, and immediately hold the T key.
    Wait for the FireWire logo to appear on the screen.  If it does not, restart and try again.
    Connect both Macs via the FireWire cable.
    On the Mac you want to transfer data to, Open the Migration Assistant application.
    Select the option "From another Mac, PC, Time Machine backup, or other disk" and click Continue.
    Select the option "From a Time Machine backup or other disk" and click Continue.
    Select your other Mac's volume, such as "Macintosh HD", from the list, and click Cont
    EDIT: Actually I realize you did follow these directions and if your drive is seen on the new Mac it should work. You're entitled to free Apple support with the new purchase, I'd give them a call.

  • Problem when migrate from WLI2.1 to WLI7

    I met this problem when migrating my program from WLI2.1 to WLI7.
    It report the following exception in WLI7:
    <2002-10-21 &#19979;&#21320;05&#26102;05&#20998;15&#31186;> <Error> <HTTP> <101019>
    <[ServletContext(id=5904188,name=dkh
    ,context-path=/dkh)] Servlet failed with IOException
    java.rmi.AccessException: Security Violation: User: 'admin' has insufficient permission
    to
    access EJB: type=<ejb>, application=WebLogic Integration, module=WLI-BPM Server,
    ejb=WLPI
    Principal, method=getRolesForUser, methodInterface=Remote, signature={java.lang.String,jav
    a.lang.String,boolean}.
    But it's fine in WLI2.1? Who can tell me why and how to solve it?
    Thanks

    ####<13 oct. 2004 17 h 05 CEST> <Info> <JMS> <ucwwe2> ><ucwls81> <WrapperSimpleAppMain> <<WLS Kernel>> <> <BEA->040114> <JMSServer "JMSServer", Finished scan of file >store "persistence" in directory "c:\bin\bea\jmsstore".                     >Found 2 025 records totalling 21 205 248 bytes.>
              >####<13 oct. 2004 17 h 05 CEST> <Info> <JMS> <ucwwe2> ><ucwls81> <WrapperSimpleAppMain> <<WLS Kernel>> <> <BEA->?040056> <JMSServer "JMSServer". Deleting 2025 messages(s) with no matching destination.>
              My JMS experience on WLS 8.1 ain't great, purley from these error messages it looks like the destination of these messages is the problem. Can you double check the destination exists and is configured correctly.
              Hoos
              www.orbism.com

  • Regenerate proxies when migrated from PI 7.0 to PI 7.1?

    Hi
    We have generated proxies in PI7.0 and we migrated from PI7.0 to PI7.1.Do we need to regenerate proxies in the application system when we migrate from PI7.0 to PI7.1?
    Thanks & Regards
    Pavan

    Hi Pavan,
    In 7.1 methods are different. But they should work until unless you have some dynamic classes. Please check michals blog for this:
    /people/michal.krawczyk2/blog/2009/06/20/pixi-abap-proxies-say-goodbye-to-executeasynchronous-method
    Regards,
    ---Satish

  • Problems with german umlauts when Migration from MS Access to Oracle

    When I make a Migration from MS Access 97 to Oracle 8.1.5, I have Problem with the germans characters (umlauts). The Oracle is using the rigth character Set for german characters. What can I do? Is it e problem from the MS Access ODBC Driver or the Oracle ODBC Driver?

    Is your character set for Oracle set up to UTF8??

  • Losing out custom metadata info of few documents of a document librarby when migrated from MOSS 2007 to Sharepoint 2010

    We have recently migrated from moss2007 to sharepoint 2010.We have a document library containing large no. of documents in it  & for those documents there are some custom metadata columns apart from OOB library columns . We have user content DB attach
    migration and after that we can see blank value under the custom columns for some records. However interesting point is we can see this metadata is showing for few documents.
    Please suggest.

    Hi,
    What is your Office edition? When we create a managed metadata column in a Document Library, it will prompt that ‘Earlier versions of client programs might not support this type of column’. You should use Office 2010 to edit and create a document then save
    to document library .
    For detailed information ,please refer to this article:
    http://rules.ssw.com.au/SoftwareDevelopment/RulesToBetterSharePoint/Pages/2010-Managed-Metadata-with-Office-2007.aspx
    Beside, here are similar posts, you can use as a reference:
    https://social.technet.microsoft.com/forums/sharepoint/en-US/1b115343-20e5-4962-af97-793194f07637/metadata-missing-when-revising-document
    https://social.technet.microsoft.com/Forums/office/en-US/a65f9828-6e2f-4eb7-bde6-bd0600e3b1a2/migrating-documents-from-moss-2007-to-sharepoint-2010?forum=sharepointadminprevious
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • Just installed Final Cut Express 4 but doesn't open

    Hey I'm a dummy but....Just installed Final Cut Express 4 but doesn't open tells me I don't have the AGP graphics card,my ATI Radeon X1600?Do some imac 1.83 Intel Core Duo come with out it?I'm freek'n stuck!!Any help would be Greatly appreciated!!

  • Problem in sending attachment mail

    hi all i am using function module "SO_NEW_DOCUMENT_ATT_SEND_API1" i am facing problem in sending attachment .....if width of my text line is more than 255. pls guide me how to proceed further

  • Crashing when opening images...

    from our server. Okay, so here's the deal...I recently got this 2 GHz Intel Core Duo Mac...I am on OS X 10.4.4. Everything has been hunky-dory for the most part and then last week I started having these crashing episodes. I will be working in Quark 6

  • Apple keyboard not working properly

    I have had owned this wireless keyboard for over a year now. It has been working fine up into like 3 days ago when all of a sudden certain keys where not working properly. I disconnected the keyboard and tried pairing but it is not allowing for the p

  • Where can I download Flash that ISNT on an Adobe server?

    Where can I download Flash from that "isn't" on an Adobe server? I can't donwload the installer from Adobe because I keep getting "Connection timed out". I have; - disabled everything that could interfer with a connection to anything, ie popups etc -