[BUG REPORT] com.adobe.rtc.messaging.MessageItem: Doesn't cleanup in createValueObject()

I'm not sure if you have a publicly available bug tracker. If you do, let me know where it is and I'll post this there.
If you register a class using MessageItem.registerBodyClass() and then call createValueObject(), readValueObject(). MessageItem.body is not the appropriate class.
WhatShouldHappen:
The readValueObject should the MessageItem.body with an object be of the registered class type.
Why it happens:
When MessageItem.createValueObject() creates the ByteArray, it doesn't rewind it when it's done, so when it's time to call MessageItem.readValueObject(), there are no more bytes to be read.
Why we care:
I'm using SessionManagerBase as a loopback server for my unit tests (not in the documentation, but it's in the code). They fail because of this.
How do we fix it?:
The simple solution is changing this:
     if (registeredClasses[flash.utils.getQualifiedClassName(body)]) {
          var bA:ByteArray = new ByteArray();
          bA.writeObject(body);
          writeObj.body = bA;
     } else {
          writeObj.body = body;
to this:
     if (registeredClasses[flash.utils.getQualifiedClassName(body)]) {
          var bA:ByteArray = new ByteArray();
          bA.writeObject(body);
          bA.position = 0;          <--- I added this.
          writeObj.body = bA;
     } else {
          writeObj.body = body;
thanks,
-sandy

I should have noted that this bug only seems to occur if you're using SessionManagerBase as a loopback.

Similar Messages

  • Bug in com.adobe.flexbuilder.project.internal.FlexProject?

    I believe that I found a bug in
    com.adobe.flexbuilder.project.internal.FlexProject.
    I'm using a URL for my flex application that has no web
    context (i.e.
    http://localhost:8080/). When I
    try to launch the application from FlexBuilder 2, a dialog box pops
    up with the generic error message: "An internal error occurred
    during: Launching".
    The stack trace is as follows:
    java.lang.StringIndexOutOfBoundsException: String index out
    of range: 0
    at java.lang.String.charAt(Unknown Source)
    at
    com.adobe.flexbuilder.project.internal.FlexProject.trimSeparators(Unknown
    Source)
    at
    com.adobe.flexbuilder.project.internal.FlexProject.getDefaultLaunchURL(Unknown
    Source)
    at
    com.adobe.flexbuilder.debug.launching.FlexLaunchConfiguration.getDefaultLaunchURL(FlexLau nchConfiguration.java:157)
    at
    com.adobe.flexbuilder.debug.launching.FlexLaunchConfiguration.getLaunchURL(FlexLaunchConf iguration.java:136)
    at
    com.adobe.flexbuilder.debug.launching.AbstractFlexLaunchDelegate.preLaunchCheck(AbstractF lexLaunchDelegate.java:420)
    at
    org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:607)
    at
    org.eclipse.debug.internal.core.LaunchConfiguration.launch(LaunchConfiguration.java:565)
    at
    org.eclipse.debug.internal.ui.DebugUIPlugin.buildAndLaunch(DebugUIPlugin.java:754)
    at
    org.eclipse.debug.internal.ui.DebugUIPlugin$6.run(DebugUIPlugin.java:944)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
    Also, if I try to edit an existing launch configuration, a
    dialog box appears with the generic error message: "Problems
    occurred when invoking code from plug-in: org.eclipse.jface"
    The stack trace is as follows:
    java.lang.StringIndexOutOfBoundsException: String index out
    of range: 0
    at java.lang.String.charAt(Unknown Source)
    at
    com.adobe.flexbuilder.project.internal.FlexProject.trimSeparators(Unknown
    Source)
    at
    com.adobe.flexbuilder.project.internal.FlexProject.getDefaultLaunchURL(Unknown
    Source)
    at
    com.adobe.flexbuilder.debug.ui.launching.FlexLaunchTab.updateURLs(FlexLaunchTab.java:192)
    at
    com.adobe.flexbuilder.debug.ui.launching.FlexLaunchTab.abstractHandleProjectChanged(FlexL aunchTab.java:208)
    at
    com.adobe.flexbuilder.debug.ui.launching.AbstractFlexLaunchTab.handleProjectChanged(Abstr actFlexLaunchTab.java:546)
    at
    com.adobe.flexbuilder.debug.ui.launching.AbstractFlexMainTab.handleProjectChanged(Abstrac tFlexMainTab.java:124)
    at
    com.adobe.flexbuilder.debug.ui.launching.AbstractFlexMainTab$1.modifyText(AbstractFlexMai nTab.java:97)
    at
    org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:196)
    at
    org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:952)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:933)
    at
    org.eclipse.swt.widgets.Text.wmCommandChild(Text.java:2143)
    at
    org.eclipse.swt.widgets.Control.WM_COMMAND(Control.java:3375)
    at
    org.eclipse.swt.widgets.Control.windowProc(Control.java:3249)
    at
    org.eclipse.swt.widgets.Display.windowProc(Display.java:4025)
    at org.eclipse.swt.internal.win32.OS.CallWindowProcW(Native
    Method)
    at
    org.eclipse.swt.internal.win32.OS.CallWindowProc(OS.java:1851)
    at
    org.eclipse.swt.widgets.Text.callWindowProc(Text.java:131)
    at
    org.eclipse.swt.widgets.Control.windowProc(Control.java:3334)
    at org.eclipse.swt.widgets.Text.windowProc(Text.java:1841)
    at
    org.eclipse.swt.widgets.Display.windowProc(Display.java:4025)
    at org.eclipse.swt.internal.win32.OS.SetWindowTextW(Native
    Method)
    at
    org.eclipse.swt.internal.win32.OS.SetWindowText(OS.java:2650)
    at org.eclipse.swt.widgets.Text.setText(Text.java:1657)
    at
    com.adobe.flexbuilder.debug.ui.launching.AbstractFlexMainTab.initializeFrom(AbstractFlexM ainTab.java:167)
    at
    org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup.initializeFrom(AbstractLaunchCon figurationTabGroup.java:86)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.disp layInstanceTabs(LaunchConfigurationTabGroupViewer.java:655)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer$6.ru n(LaunchConfigurationTabGroupViewer.java:548)
    at
    org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.inpu tChanged(LaunchConfigurationTabGroupViewer.java:565)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationTabGroupViewer.setI nput(LaunchConfigurationTabGroupViewer.java:529)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.handleLaunc hConfigurationSelectionChanged(LaunchConfigurationsDialog.java:928)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog$4.selection Changed(LaunchConfigurationsDialog.java:547)
    at
    org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:839)
    at
    org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.runtime.Platform.run(Platform.java:843)
    at
    org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44)
    at
    org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149)
    at
    org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java :837)
    at
    org.eclipse.jface.viewers.StructuredViewer.setSelection(StructuredViewer.java:1578)
    at
    org.eclipse.jface.viewers.Viewer.setSelection(Viewer.java:384)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.handleLaunc hConfigurationSelectionChanged(LaunchConfigurationsDialog.java:922)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog$4.selection Changed(LaunchConfigurationsDialog.java:547)
    at
    org.eclipse.jface.viewers.StructuredViewer$3.run(StructuredViewer.java:839)
    at
    org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
    at org.eclipse.core.runtime.Platform.run(Platform.java:843)
    at
    org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44)
    at
    org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:149)
    at
    org.eclipse.jface.viewers.StructuredViewer.firePostSelectionChanged(StructuredViewer.java :837)
    at
    org.eclipse.jface.viewers.StructuredViewer.handlePostSelect(StructuredViewer.java:1143)
    at
    org.eclipse.jface.viewers.StructuredViewer$5.widgetSelected(StructuredViewer.java:1163)
    at
    org.eclipse.jface.util.OpenStrategy.firePostSelectionEvent(OpenStrategy.java:236)
    at
    org.eclipse.jface.util.OpenStrategy.access$4(OpenStrategy.java:230)
    at
    org.eclipse.jface.util.OpenStrategy$3.run(OpenStrategy.java:404)
    at
    org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
    at
    org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
    at
    org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3325)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2971)
    at
    org.eclipse.jface.window.Window.runEventLoop(Window.java:820)
    at org.eclipse.jface.window.Window.open(Window.java:796)
    at
    org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open(Launch ConfigurationsDialog.java:1086)
    at
    org.eclipse.debug.ui.DebugUITools$1.run(DebugUITools.java:383)
    at
    org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
    at
    org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java: 387)
    at
    org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java: 329)
    at
    org.eclipse.debug.ui.actions.LaunchAction.runWithEvent(LaunchAction.java:79)
    at
    org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:539)
    at
    org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
    at
    org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :400)
    at
    org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:928)
    at
    org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3348)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2968)
    at
    org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1930)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1894)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:422)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at
    org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:95)
    at
    org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:78)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:92)
    at
    org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:68)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:177)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
    Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
    Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at
    org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
    at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
    at org.eclipse.core.launcher.Main.run(Main.java:977)
    at org.eclipse.core.launcher.Main.main(Main.java:952)
    I believe that the trimSeparators method needs to be more
    robust:
    private String trimSeparators(IPath ipath) {
    ipath = ipath.removeTrailingSeparator();
    String s = ipath.toString();
    if (s.charAt(0) == '/')
    s = s.substring(1);
    return s;
    I believe that there should be a check to see if the string
    variable is null or empty before calling the charAt() method on it.

    I forgot to mention that the exception described above
    occurred in the FlexBuilder plug-in for Eclipse. Unfortunately, the
    same exception is also thrown in the stand-alone version of
    FlexBuilder:
    java.lang.StringIndexOutOfBoundsException: String index out
    of range: 0
    at java.lang.String.charAt(Unknown Source)
    at
    com.adobe.flexbuilder.project.internal.FlexProject.trimSeparators(Unknown
    Source)
    at
    com.adobe.flexbuilder.project.internal.FlexProject.getDefaultLaunchURL(Unknown
    Source)
    at
    com.adobe.flexbuilder.debug.launching.FlexLaunchConfigurationWorkingCopy.populateDefaultL aunchConfiguration(FlexLaunchConfigurationWorkingCopy.java:111)
    at
    com.adobe.flexbuilder.debug.ui.launching.FlexLaunchShortcut.createConfigurationWorkingCop y(FlexLaunchShortcut.java:309)
    at
    com.adobe.flexbuilder.standalone.actions.LaunchApplicationAction.<init>(LaunchApplication Action.java:53)
    at
    com.adobe.flexbuilder.standalone.actions.AbstractLaunchAction.run(AbstractLaunchAction.ja va:108)
    at
    org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:246)
    at
    org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:223)
    at
    org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:538)
    at
    org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
    at
    org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :400)
    at
    org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843)
    at
    org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3125)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2758)
    at
    org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)
    at
    com.adobe.flexbuilder.standalone.FlexBuilderApplication.run(FlexBuilderApplication.java:1 03)
    at
    org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
    Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
    Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at
    org.eclipse.core.launcher.Main.invokeFramework(Main.java:334)
    at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
    at org.eclipse.core.launcher.Main.run(Main.java:973)
    at org.eclipse.core.launcher.Main.main(Main.java:948)

  • [Bug Report!]Adobe Reader can not display 3D file normally!

    I have a 3D pdf file,which is produced by Asymptote,and some labels in the 3D model, can not be displayed normally in the Adobe Reader,even the latest version 9.4.I got this file by
    $asy -file pdf -render=4 file.asy
    while all of them can be displayed in the OpenGL mode.
    $asy -V file.asy
    I hope you can give me a message about the reason and tip about how to solve the problem.
    thank you very much!
    code:
    size(400);
    import solids;
    import graph3;
    import three;
    import math;
    defaultpen(1pt+fontsize(7pt));
    currentprojection=perspective(1,1,-1,up=-Z);
    draw(unitsphere,palegray);//鐢荤悆
    //浠ヤ笅閮ㄥ垎鐢绘敮鏌?draw(shift(1,0,0)*xscale3(0.06)*yscale3(0.06)*zscale3(1.2)*unitcylinder,palegray);
    draw(shift(1,0,0)*xscale3(0.06)*yscale3(0.06)*zscale3(0.1)*unitsphere,blue);
    label("1",(1.07,0,0.5),yellow);
    draw(shift(-1,0,0)*xscale3(0.06)*yscale3(0.06)*zscale3(1.2)*unitcylinder,palegray);
    draw(shift(-1,0,0)*xscale3(0.06)*yscale3(0.06)*zscale3(0.1)*unitsphere,blue);
    label("5",(-1.07,0,0.5),yellow);
    draw(shift(0,1,0)*xscale3(0.06)*yscale3(0.06)*zscale3(1.2)*unitcylinder,palegray);
    draw(shift(0,1,0)*xscale3(0.06)*yscale3(0.06)*zscale3(0.1)*unitsphere,blue);
    label("7",(0,1.07,0.5),yellow);
    draw(shift(0,-1,0)*xscale3(0.06)*yscale3(0.06)*zscale3(1.2)*unitcylinder,palegray);
    draw(shift(0,-1,0)*xscale3(0.06)*yscale3(0.06)*zscale3(0.1)*unitsphere,blue);
    label("3",(0,-1.07,0.5),yellow);
    draw(shift(0.707,0.707,0)*xscale3(0.06)*yscale3(0.06)*zscale3(1.2)*unitcylinder,palegray);
    draw(shift(0.707,0.707,0)*xscale3(0.06)*yscale3(0.06)*zscale3(0.1)*unitsphere,blue);
    label("8",(0.75,0.75,0.5),yellow);
    draw(shift(-0.707,0.707,0)*xscale3(0.06)*yscale3(0.06)*zscale3(1.2)*unitcylinder,palegray);
    draw(shift(-0.707,0.707,0)*xscale3(0.06)*yscale3(0.06)*zscale3(0.1)*unitsphere,blue);
    label("6",(-0.75,0.75,0.5),yellow);
    draw(shift(0.707,-0.707,0)*xscale3(0.06)*yscale3(0.06)*zscale3(1.2)*unitcylinder,palegray);
    draw(shift(0.707,-0.707,0)*xscale3(0.06)*yscale3(0.06)*zscale3(0.1)*unitsphere,blue);
    label("2",(0.75,-0.75,0.5),yellow);
    draw(shift(-0.707,-0.707,0)*xscale3(0.06)*yscale3(0.06)*zscale3(1.2)*unitcylinder,palegray);
    draw(shift(-0.707,-0.707,0)*xscale3(0.06)*yscale3(0.06)*zscale3(0.1)*unitsphere,blue);
    label("4",(-0.75,-0.75,0.5),yellow);
    draw(shift(0,0,-1.05)*xscale3(0.16)*yscale3(0.16)*zscale3(0.2)*unitcylinder,palegray);//涓婁汉瀛?draw(shift(0,0,-1.1)*xscale3(0.2)*yscale3(0.2)*zscale3(0.05)*unitcylinder,palegray);//涓婁汉瀛?draw(shift(0,0,0.85)*xscale3(0.16)*yscale3(0.16)*zscale3(0.2)*unitcylinder,palegray);//涓嬩汉瀛?draw(shift(0,0,1.05)*xscale3(0.2)*yscale3(0.2)*zscale3(0.05)*unitcylinder,palegray);//涓婁汉瀛?draw(shift(0,0,1.0)*xscale3(0.16)*yscale3(0.16)*zscale3(0.2)*unithemisphere,palegray);//涓嬩汉瀛?draw(shift(0,0,-1.05)*xscale3(0.16)*yscale3(0.16)*zscale3(0.2)*unitsphere,palegray);//涓嬩汉瀛?
    path p=(1,0)..(0,1)..(-1,0)..(0,-1)..cycle;
    path3 p3=path3(p);
    surface sf=surface(patch(p3));
    draw(shift(0,0,-1.05)*xscale3(0.2)*yscale3(0.2)*surface(sf),palegray);
    draw(shift(0,0,-1.1)*xscale3(0.2)*yscale3(0.2)*surface(sf),palegray);
    draw(shift(0,0,1.05)*xscale3(0.2)*yscale3(0.2)*surface(sf),palegray);
    draw(shift(0,0,1.1)*xscale3(0.2)*yscale3(0.2)*surface(sf),palegray);
    //浠ヤ笅缁樺埗鐜剨缂?draw(circle((0,0,sin(pi/8)),cos(pi/8)),gray);
    draw(circle((0,0,sin(-pi/8)),cos(-pi/8)),gray);
    draw(circle((0,0,sin(pi/4)),cos(pi/4)),gray);
    draw(circle((0,0,sin(-pi/4)),cos(-pi/4)),gray);
    draw(circle((0,0,sin(3pi/8)),cos(3pi/8)),gray);
    draw(circle((0,0,sin(-3pi/8)),cos(-3pi/8)),gray);
    xaxis3("$x$",-1.5,1.5);
    yaxis3("$y$",-1.5,1.5);
    zaxis3("$z$",-1.5,1.5);
    surface Surf(triple center, triple A, triple B, triple C,triple D,int nu=3, int nv=nu) {
    path3 p1=arc(center,A,B);
    path3 p2=arc(center,B,C);
    path3 p3=arc(center,C,D);
    path3 p4=arc(center,D,A);
    triple surf(pair t) {
    real u=t.x;
    real v=t.y;
    path3 cr=arc(center,relpoint(p1,u),relpoint(reverse(p3),u));
    return relpoint(cr,v);
    return surface(surf,(0,0),(1,1),nu,nv,Spline);
    real r=1+0.005;
    triple A=r*unit((1,0,0.1));
    triple B=r*unit((1,0,-0.1));
    triple C=r*unit((-1,0,-0.1));
    triple D=r*unit((-0.995,0.1,0.1));
    //draw(Surf(O,A,B,C,D,4,4),yellow);
    //draw(arc(O,A,B)^^arc(O,B,C)^^arc(O,C,D)^^arc(O,D,A),red+thick());
    //浠ヤ笅缁樺埗閮ㄥ垎鐞冨3鏉?real r=1+0.001;
    for(int i=0;i<16;++i){
    triple Di_1=r*unit((sin(pi/16+i*pi/8)*cos(pi/8),cos(pi/16+i*pi/8)*cos(pi/8),sin(pi/8)));
    triple Di_2=r*unit((sin(pi/16+i*pi/8)*cos(-pi/8),cos(pi/16+i*pi/8)*cos(pi/8),sin(-pi/8)));
    draw(arc(O,Di_1,Di_2),gray);
    for(int j=0;j<8;++j){
    triple Fj_1=r*unit((sin(j*pi/4)*cos(pi/4),cos(j*pi/4)*cos(pi/4),sin(pi/4)));
    triple Fj_2=r*unit((sin(j*pi/4)*cos(3pi/8),cos(j*pi/4)*cos(3pi/8),sin(3pi/8)));
    draw(arc(O,Fj_1,Fj_2),gray);
    triple Bj_1=r*unit((sin(j*pi/4)*cos(pi/4),cos(j*pi/4)*cos(pi/4),sin(-pi/4)));
    triple Bj_2=r*unit((sin(j*pi/4)*cos(3pi/8),cos(j*pi/4)*cos(3pi/8),sin(-3pi/8)));
    draw(arc(O,Bj_1,Bj_2),gray);
    triple Ej_1=r*unit((sin(pi/8+j*pi/4)*cos(pi/4),cos(pi/8+j*pi/4)*cos(pi/4),sin(pi/4)));
    triple Ej_2=r*unit((sin(pi/8+j*pi/4)*cos(pi/8),cos(pi/8+j*pi/4)*cos(pi/8),sin(pi/8)));
    draw(arc(O,Ej_1,Ej_2),gray);
    triple Cj_1=r*unit((sin(pi/8+j*pi/4)*cos(pi/4),cos(pi/8+j*pi/4)*cos(pi/4),sin(-pi/4)));
    triple Cj_2=r*unit((sin(pi/8+j*pi/4)*cos(pi/8),cos(pi/8+j*pi/4)*cos(pi/8),sin(-pi/8)));
    draw(arc(O,Cj_1,Cj_2),gray);
    triple A_1=r*unit((sin(3pi/8)*cos(3pi/8),cos(3pi/8)*cos(3pi/8),sin(3pi/8)));
    triple A_2=r*unit((sin(9pi/8)*cos(3pi/8),cos(9pi/8)*cos(3pi/8),sin(3pi/8)));
    draw(arc(O,A_1,A_2),gray);
    triple G_1=r*unit((sin(pi/8)*cos(-3pi/8),cos(pi/8)*cos(-3pi/8),sin(-3pi/8)));
    triple G_2=r*unit((sin(11pi/8)*cos(-3pi/8),cos(11pi/8)*cos(-3pi/8),sin(-3pi/8)));
    draw(arc(O,G_1,G_2),gray);
    //浠ヤ笅閲囩敤鏃嬭浆鐨勬柟娉曠粯鍒惰摑鑹叉爣绀哄甫(閮ㄥ垎)
    revolution belt=revolution(arc(O,1+0.006,83,0,97,0),Z,0,360);
    draw(surface(belt),blue);
    dot("1",r*(cos(pi/8)*cos(3pi/8),-sin(pi/8)*cos(3pi/8),sin(3pi/8)),red+0.1cm);//y鍊艰姝h礋鍙樻崲锛寈y鍧愭爣瑕佹竻妤氥€?dot("2",r*(cos(9pi/8)*cos(3pi/8),-sin(9pi/8)*cos(3pi/8),sin(3pi/8)),red+0.1cm);
    dot("3",r*(cos(pi/2)*cos(5pi/16),-sin(pi/2)*cos(5pi/16),sin(5pi/16)),red+0.1cm);
    dot("4",r*(cos(pi/32)*cos(pi/4),-sin(pi/32)*cos(pi/4),sin(pi/4)),red+0.1cm);
    dot("5",r*(cos(3pi/32)*cos(pi/4),-sin(3pi/32)*cos(pi/4),sin(pi/4)),red+0.1cm);
    dot("6",r*(cos(13pi/32)*cos(pi/4),-sin(13pi/32)*cos(pi/4),sin(pi/4)),red+0.1cm);
    dot("7",r*(cos(15pi/32)*cos(pi/4),-sin(15pi/32)*cos(pi/4),sin(pi/4)),red+0.1cm);
    dot("8",r*(cos(17pi/32)*cos(pi/4),-sin(17pi/32)*cos(pi/4),sin(pi/4)),red+0.1cm);
    dot("9",r*(cos(19pi/32)*cos(pi/4),-sin(19pi/32)*cos(pi/4),sin(pi/4)),red+0.1cm);
    dot("10",r*(cos(22pi/32)*cos(pi/4),-sin(22pi/32)*cos(pi/4),sin(pi/4)),red+0.1cm);
    dot("11",r*(cos(29pi/32)*cos(pi/4),-sin(29pi/32)*cos(pi/4),sin(pi/4)),red+0.1cm);
    dot("12",r*(cos(19pi/16)*cos(pi/12),-sin(19pi/16)*cos(pi/12),sin(pi/12)),red+0.1cm);
    dot("13",r*(cos(25pi/16)*cos(pi/12),-sin(25pi/16)*cos(pi/12),sin(pi/12)),red+0.1cm);
    dot("14",r*(cos(13pi/32)*cos(pi/8),-sin(13pi/32)*cos(pi/8),-sin(pi/8)),red+0.1cm);
    dot("15",r*(cos(-19pi/32)*cos(pi/8),-sin(-19pi/32)*cos(pi/8),-sin(pi/8)),red+0.1cm);
    dot("16",r*(cos(-11pi/32)*cos(pi/8),-sin(-11pi/32)*cos(pi/8),-sin(pi/8)),red+0.1cm);
    dot("17",r*(cos(25pi/32)*cos(pi/4),-sin(25pi/32)*cos(pi/4),-sin(pi/4)),red+0.1cm);
    dot("18",r*(cos(69pi/64)*cos(pi/4),-sin(69pi/64)*cos(pi/4),-sin(pi/4)),red+0.1cm);
    dot("19",r*(cos(71pi/64)*cos(pi/4),-sin(71pi/64)*cos(pi/4),-sin(pi/4)),red+0.1cm);
    dot("20",r*(cos(73pi/64)*cos(pi/4),-sin(73pi/64)*cos(pi/4),-sin(pi/4)),red+0.1cm);
    dot("21",r*(cos(97pi/64)*cos(pi/4),-sin(97pi/64)*cos(pi/4),-sin(pi/4)),red+0.1cm);
    dot("22",r*(cos(105pi/64)*cos(pi/4),-sin(105pi/64)*cos(pi/4),-sin(pi/4)),red+0.1cm);
    dot("23",r*(cos(107pi/64)*cos(pi/4),-sin(107pi/64)*cos(pi/4),-sin(pi/4)),red+0.1cm);
    dot("24",r*(cos(109pi/64)*cos(pi/4),-sin(109pi/64)*cos(pi/4),-sin(pi/4)),red+0.1cm);
    dot("25",r*(cos(11pi/32),0,-sin(11pi/32)),red+0.1cm);
    dot("26",r*(cos(10pi/32),0,-sin(10pi/32)),red+0.1cm);
    dot("27",r*(cos(pi)*cos(10pi/32),-sin(pi)*cos(10pi/32),-sin(10pi/32)),red+0.1cm);
    dot("28",1.05*(G_1+3*G_2)/4,red+0.1cm);
    dot("29",r*(cos(3pi/4)*cos(-pi/8),-sin(3pi/4)*cos(-pi/8),-sin(3pi/4)),red+0.1cm);

    Please note that this is a user-to-user forum, and therefore not the right place to file a bug report.
    Try it here instead: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • I did a bug report to Adobe, how i can track it?

    I reported an issue as a bug days ago at Feature Request/Bug Report Form. However i haven't got any response from Adobe yet, and looks like there is no place (such as post history) that i can check the status.
    I have no idea it is a bug or not, how i can get a reply?
    Thanks.

    The Feature Request/Bug form is just that, a report form.
    If you file a case with Customer Support, you get a tracking number, and you might be called back for more information.
    (Don't expect too much of it. Last serious bug I reported was shrugged off as "operator error", and subsequently closed, gainst my will.)

  • Bug Report an Adobe senden

    Da ich nach dem letzten Photoshop-Update eine für mich wichtige PSD-Datei nicht mehr öffnen kann und immer die Fehlermeldung »Der Vorgang konnte nicht ausgeführt werden, weil ein Programmfehler aufgetreten ist.« bekomme, wollte ich Adobe mal einen Bugreport inkl. der Datei zukommen lassen. Aber entweder ich bin zu blind und finde nur keine Möglichkeit dafür oder es gibt keine.
    Weiß zufällig jemand eine Stelle, an die man sich da wenden kann? Der Fehler liegt definitiv an Photoshop, da ich über die Dropbox auch frühere Versionen der Datei wiederhergestellt habe und sich auch diese nicht öffnen lassen. Vorher war das alles kein Problem.
    Wäre schön, wenn hier jemand helfen könnte.

    Wenn Du einen Bug Report abgibst braucht Adobe folgende Infos:
    Programm
    Programm-Version
    Build-Nummer des Installierten Programms
    Operating System
    Programmsprache
    OS Sprache
    Schwere des Bugs (Datenverlust/Crash, Schwerer Benutzungsfehler, leichter Fehler, optischer Fehler oder Verbesserungsvorschlag)
    Verwendete Hardware einschließlich Periferie
    Schrittweise Beschreibung was gemacht wurde
    Was geschah oder nicht gescha (der eigentliche Bug)
    Was man erwartet hätte, was geschehen sollte
    Eventuell ein Workaround, der Hilft zum Ziel zu kommen
    All das auf Englisch.
    Sonst kannst Du das mir schicken, ich kann es auch weiterleiten.

  • Bug report : Navigator display wrong messages in package body

    Just run some code , you can see the Navigator display wrong messages in the package body,but the package work fine in sqlplus / toad or other tools.
    create or replace package SIMPLE AS
    Procedure simple_proc ;
    END;
    create or replace package body SIMPLE AS
    Procedure simple_proc
    IS
    v_tname varchar2(100);
    begin
    SELECT PERCENTILE_disc(0.5) WITHIN GROUP (ORDER BY tabtype DESC)
              INTO v_tname
              FROM tab;
    END simple_proc;
    END;
    Then open the package body in the Navigator (Connection Pane==> Connection Name ==> Packages ==> Simple Body ) , and show the error message:
    Unexpected token
    Missing Expression
    But if I just create the procedure out of the package , it work fine.
    CREATE OR REPLACE
    Procedure simple_proc
    IS
    v_tname varchar2(100);
    begin
    SELECT PERCENTILE_disc(0.5) WITHIN GROUP (ORDER BY tabtype DESC)
              INTO v_tname
              FROM tab;
    END simple_proc;
    /

    This has already been discussed a number of times (see http://forums.oracle.com/forums/search.jspa?objID=f260&q=Unexpected+token).
    As I understand it, it is related to the parser that SQL Developer is using to display the package decomposition in the navigator not coping with the full PL/SQL and SQL syntax (largely analytical functions from memory).

  • How come Adobe Premiere Elements 8 doesn't offer an upgrade price?

    I just called Adobe and they said Pre 8 is a standalone program but is offered at $79.99 after a twenty dollar rebate. It would have loved to have been able to purchase it as an upgrade and be priced accordingly. Oh well…..

    My local Best Buy had PRE8 in combo with PE8 for $75 in last Sunday's circular.  I think you had to submit the rebate for that price, though I'm not certain.
    Glenn

  • Cocomo bug reporting

    hey guys
    i realise this stuff is in beta so i'm not surprised that as i work through it i come across little bugs. i would like a way of sharing these with you without having to come and post them on the forum in a bitchy way. is there a place i can put them? or should i email them to you directly? if you wanna send me anything privately you can DM me on Twitter, my username is richtextformat.

    cool. well heres something that happened earlier today:
    roster null property bug on UserManager.removeUser
    1. programmatically create ConnectSession and AdobeHSAuthenticator
    2. auth and login
    3. programmatically create SimpleChat & Roster
    4. call ConnectSession.userManager.removeUser(someUser)
    5. this error occurs:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
        at com.adobe.rtc.pods::Roster/onSynchronizationChange()[/Users/myrealname/Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/pods/Roster.as:623]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at com.adobe.rtc.sharedManagers::UserManager/onSynchronizationChange()[/Users/myrealname/Doc uments/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/sharedManagers/UserManager.as:825]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at com.adobe.rtc.sharedModel::CollectionNode/http://www.adobe.com/2006/connect/cocomo/messaging/internal::setIsSynchronized()[/Users/my realname/Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/sharedModel/CollectionNode.as:665]
        at com.adobe.rtc.messaging.manager::MessageManager/onDisconnect()[/Users/myrealname/Document s/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/messaging/manager/MessageManager.as:763]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at com.adobe.rtc.session.managers::SessionManagerBase/http://www.adobe.com/2006/connect/cocomo/session/internal::disconnect()[/Users/myrealname/ Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/session/managers/SessionManagerBase.as:111]
        at com.adobe.rtc.session.managers::SessionManagerFMS/onFmsConnectorDisconnect()[/Users/myrea lname/Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/session/managers/SessionManagerFMS.as:252]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at com.adobe.rtc.session.sessionClasses::FMSConnector/disconnect()[/Users/myrealname/Documen ts/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/session/sessionClasses/FMSConnector.as:391]
        at com.adobe.rtc.session.managers::SessionManagerFMS/http://www.adobe.com/2006/connect/cocomo/session/internal::logout()[/Users/myrealname/Docu ments/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/session/managers/SessionManagerFMS.as:316]
        at com.adobe.rtc.session.managers::SessionManagerAdobeHostedServices/http://www.adobe.com/2006/connect/cocomo/session/internal::logout()[/Users/myrealname/Docu ments/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/session/managers/SessionManagerAdobeHostedServices.as: 138]
        at com.adobe.rtc.session::ConnectSession/logout()[/Users/myrealname/Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/session/ConnectSession.as:421]
        at com.adobe.rtc.session::ConnectSession/onUserBooted()[/Users/myrealname/Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/session/ConnectSession.as:457]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at com.adobe.rtc.sharedManagers::UserManager/onItemRetract()[/Users/myrealname/Documents/Fle x Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/sharedManagers/UserManager.as:949]
        at flash.events::EventDispatcher/dispatchEventFunction()
        at flash.events::EventDispatcher/dispatchEvent()
        at com.adobe.rtc.sharedModel::CollectionNode/http://www.adobe.com/2006/connect/cocomo/messaging/internal::receiveItemRetraction()[/User s/myrealname/Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/sharedModel/CollectionNode.as:755]
        at com.adobe.rtc.messaging.manager::MessageManager/http://www.adobe.com/2006/connect/cocomo/messaging/internal::receiveItemRetraction()[/User s/myrealname/Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/messaging/manager/MessageManager.as:679]
        at com.adobe.rtc.session.managers::SessionManagerBase/receiveItemRetraction()[/Users/myrealn amemyrealnamemyrealname/Documents/Flex Builder 3/CocomoSDK_0.92/src/com/adobe/rtc/session/managers/SessionManagerBase.as:341]

  • BUG report - Inconsistent IR settings in Builder

    Apex 4.0.2
    Most of the reports used in the App Builder have been converted to use Interactive reports which is great. But I find that the IR settings are not consistent across all the reports. I had reported this during the tryapexnow.com beta phase. Now that we can use the new apex_application_install API to load up the Builder apps into our own workpace so we can review how they are built, the Region Utilities > Update Interactive Report Settings page shows this. Or just run the query
    select
    page_id, name, allow_save_rpt_public, show_finder_drop_down, show_display_row_count, show_search_bar, show_search_textbox, show_actions_menu, show_select_columns, show_rows_per_page, show_filter, show_sort, show_control_break, show_highlight, show_computation, show_aggregate, show_chart, show_notify, show_group_by, show_calendar, show_flashback, show_reset, show_download, show_help
    from apex_040000.wwv_flow_worksheets
    where flow_id=4000My main annoyance is the "Save Report Public" checkbox. The IR saved report list shouldn't be cluttered with all the report settings saved by all the workspace developers.

    Please submit an official bug report to Adobe at:
    http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Alexander.
    Canon EOS 400D (aka. XTi) • 20" iMac Intel • 12" PowerBook G4 • OS X 10.4 • LR 1 • PSE 4

  • Bug report submitted re Input Mode affected by ACR 4.2 Mac - very annoying

    Just submitted a bug report to Adobe. ACR 4.2, Photoshop 10, Tiger 10.4.10, PowerPC.
    Most users in the US and the UK may not even run across this situation.
    If you use a non US standard keyboard layout as your Input mode, causing ACR 4.2 to launch, either from Bridge, Photoshop, or the Finder, this switches the selected keyboard to the US standard. If you click the Cancel button in ACR, the keyboard reverts back to your custom keyboard layout; but if you click Open, the US standard keyboard remains set even after quitting Photoshop, ACR and Bridge.
    It took me a while to figure out what was causing me to loose my preferred keyboard layout. It didn't dawn on me ACR 4.2 was doing it. Observing a few screen shots led me to discover the cause.
    It's most annoying.

    The choices in Bridge > Preferences > Advanced > International > Keyboard are limited, and they do not allow for choosing custom keyboard layouts.
    I need the custom keyboard layouts for a variety of reasons, such as being able to type in seven languages with my most used one without switching, two Russian layouts to allow for two non-standard ways of encoding Russian fonts, etc.

  • Adding insult to injury.  Adobe's Wishlist / Bug reporting doesn't work.

    I sure hope Adobe is reading these forums, because I haven't been able to submit a single bug / feature request through the proper channel, and I've given up trying.  It's one thing to make is all BETA testers without warning us.  It's just fanning the flames of fury when Adobe Staff tell us to submit a bug.  It's at least implied that Adobe will not be reading / hearing the messages on this forum.  And I can't even submit a bug report because that form is broken! 
    I've spent around 24 hours so far BETA testing their software for them, so I hope they are reading these forums with gratitude for our free services.
    Unfortunately, I must get back to work, now.  No more time for BETA testing today.

    I haven't been able to submit a single bug / feature request through the proper channel,
    Since it is not mentioned in this thread:
    Copy/pasting is often the culprit when bug report/feature requests fail. The was a problem some time back when we were copy/pasting suggested text from a forum post. While it appeared there was a character limit (and there probably is), I suspected that invisible "junk" (html code or Word stuff) was being pasted. I have better luck pasting from a pure text editor. I have best luck typing it, and copying from the bug/feature form to keep a copy.
    Another thread today complained they could not post a link in a bug report. I have had no difficulty posting a link to a forum thread.
    There are of course times where web submissions fail for no good (apparent) reason. I find that very frustrating; don't get me started on Adobe forums and Jive. But as far as I know, the bug/feature system is not part of that.

  • Did you know that Google toolbar doesn't work properly in FF rc1? I have filed a bug report to Google about this

    The Google toolbar doesn't recognize a left mouse click when selecting a 'suggestion'. It's OK using the keyboard, however. I have filed a bug report with Google, but as this is an important extension thought you should know.

    See also:  http://forums.adobe.com/message/4662367#4662367
    -Noel

  • Bug report: Mail sends messages with empty bodies

    Over the last year, I have experienced a particularly irritating bug in Mail.app at least a dozen times. I finally have a good idea as to what causes it.
    The problem involves long email messages (often with attachments) that end up being sent with blank bodies (and no attachments). Even the copy in the "Sent" folder ends up blank, and several minutes or hours of work vanishes into thin air, not to be seen ever again.
    I finally realized that this bug only occurs when sending mail through our work SMTP server while outside the work firewall, and only as a result of a certain sequence of events. Here is what happens:
    When we connect to our work SMTP server from outside the local network and without going through the VPN, the SMTP server requires password authentication. If the current SMTP selection in Mail.app is the one that does not require authentication, the SMTP server rejects the message. At that point, Mail.app opens the email I am trying to send and brings up a modal dialog that says "Cannot send message using the server xxx.xxx -- The server response was: xxx@xxx relaying prohibited. You should authenticate first." The dialog also presents a drop-down list of SMTP server choices. I choose the password-authenticated version of the server and then click on "Use Selected Server" to send the message.
    This works almost all the time, but on occasion it ends up sending a blank message! If I have a long email, particularly with attachments such as PDFs that are rendered in the body of the message, it takes a few seconds for the mail message to be rendered underneath the modal dialog box. Since I am used to this STMP rejection behavior, sometimes I am too fast to choose another STMP server from the list and click on "Use Selected Server" before the mail message is rendered on screen! The result, invariably, is a blank email message that gets sent.
    I guess what is happening is that when the STMP server rejects the message and hands it back to Mail.app, the message gets copied into a buffer in order to be displayed on screen. Selecting another server and resending it immediately (before the message is copied into the buffer completely) causes the message body to get trashed.
    I hope that this description is adequate for Apple QA folks to replicate and isolate the problem (and hopefully fix it). One solution (although not the most elegant one) would be to disable the "Use Selected Server" action until the message is copied into the buffer and rendered on screen.

    This could be related to another bug reported here recently:
    E-mail looses all images if mail server doesn't accept outgoing email...
    You cannot count on Apple looking into this or even noticing it if you report it here, so I suggest you the same I suggested in the other thread, i.e. report it in one of the following places:
    http://www.apple.com/macosx/feedback/
    http://developer.apple.com/bugreporter/

  • Bug report: Russian Translation Messages

    There are several incorrectly translated messages. Better translation is below. English original is back-translated, so could be not exact in all cases. Russian text should be replaced.
    Mail - Setup - View/Actions (Почта - настройки - отображение и действия) - "удалить подтверждение сообщения" (remove message confirmation) should be "подтверждение удаления сообщения" (confirm message removal)
    Blackberry World Setup / General(Общие настройки) - 'Cохранить на карту памяти' (save once to SD card) should be 'Cохранять на карту памяти' (usually save to SD card)
    Blackberry World Payment methods - 'Методы оплаты' should be 'Способы оплаты'
    Clipboard Select / Select all should be 'Выделить' / 'Выделить все' (as select/highlight), not 'Выбрать' / 'Выбрать все' (as 'choose') phone-wide
    SMS is translated as 'Текстовые сообщения' (Text Messages) in Russian. Untranslated 'SMS' or at least 'Сообщения' (messages) is much more common for Russia.
    A message after doing a software update check is not correct: 'В настоящее время установлена самая последняя версия ПО' (Latest software version is currently installed) - should be 'В настоящее время установлена последняя доступная версия ПО' (Latest available software version is currently installed)
    "Ожидание подключения для передачи данных" message (Waiting for data connection) during set-up doesn't fit the screen, should be wrapped or cut.
    "Новый часовой пояс <...> время отправлено" (New timezone... time sent) notification during the initial set-up should be 'время установлено' (time set).
    Cheers,
    Alex

    This could be related to another bug reported here recently:
    E-mail looses all images if mail server doesn't accept outgoing email...
    You cannot count on Apple looking into this or even noticing it if you report it here, so I suggest you the same I suggested in the other thread, i.e. report it in one of the following places:
    http://www.apple.com/macosx/feedback/
    http://developer.apple.com/bugreporter/

  • Adobe bug report system broken

    I've been having issues with Flash Pro CS6 that are getting progressively worse. I filed a few bug reports using their Bug Report form here: https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform 
    I just noticed today that I had some delivery failure notifications for those bug reports in my spam box.
    Delivery has failed to these recipients or distribution lists:
    [email protected]
    The recipient's e-mail address was not found in the recipient's e-mail system. Microsoft Exchange will not try to redeliver this message for you. Please check the e-mail address and try resending this message, or provide the following diagnostic text to your system administrator.
    The form submits to a nonexistent email address. This is basically Adobe giving everyone the finger. Great.

    Suhas,
    It is not fixed. It is not even changed:
    Delivery has failed to these recipients or distribution lists:
    [email protected]
    The recipient's e-mail address was not found in the recipient's e-mail system. Microsoft Exchange will not try to redeliver this message for you. Please check the e-mail address and try resending this message, or provide the following diagnostic text to your system administrator.

Maybe you are looking for

  • Please help me in selecting the right SAP Module

    Hello All, I want to change my module; Currently I am in SAP BASIS.And I am willing to change in SRM. Can any one suggest me should I go for SRM or not,wheather it has a scope (Future Opportunities) / is it easier than BASIS or should  I continue wit

  • COPA Extraction-Characteristics value not appearing in RSA3

    Hi All, We have developed Costing based COPA DataSource in KEB0 based on our operating concern. Included all standard fields(Characteristics from the segment  level,  Characteristics from the segment table, Characteristics from the line items, Value

  • Problems with the downloaded programs from sites on Internet

    Hi, I just recently got interested in downloading a program from the site myspace.com, but I have been interested in other programs earlier in my time as a MacBook user. Unfortunately, I have not discovered how to open them properly. What is the best

  • Unable to find aperture library when set up wallpaper

    This has stuggled me for around a year, ever since i upgrade to lion when it is available, i found its hard for me to change my wallpaper to the images located in my aperture library.It's simplely not showing up as a available option in the preferenc

  • Audigy 2 Platinum Front Panel Connecti

    I recently began recording my band in our home studio. My mixing board is a Midas Venice 240 which has two balanced XLR outputs from the master bus. I am wondering what method I may use to connect this output to the /4" stereo input on the front pane