Jwsdp-1_0_01 and wsdeploy Tool

Hi,
I am using "jwsdp-1_0_01" software for developing/deploying web serivces, i just installed the software and run the demo Helloworld example it runes fine. but when i developed new Web Service and try to deploy the service using that "wsdeploy" tool (i am using ant build files for that which were bundeled with the demo application) i got a error mesage (see below).
error: modeler error: uniqueness constraint violation.
I don't know from where comes that error message but what i know is that, it could be because of any wrong mapping in one of manny ".xml" file. where ..? i have't any clue. If some one have any idea please do response.
P.S - the same web service is running fine with previous version of Web service development kit, but at that time i used xrpcc tool for making server side code.

Hi,
There has been some changes on the JAXRPC side which
recquires you to to rebuild your jaxrpc end points and
deploy the endpoints freshly on the new jwsdp1_0_01
download .......
Please try that and post back on if you still get the
constraint error - asengup

Similar Messages

  • JWSDP-1_0_01 and xrpcc

    With the JWSDP-1_0_01, when I try to run xrpcc I get this error...
    Exception in thread "main" java.lang.NoClassDefFoundError: Files
    What am I missing here?

    I experienced the same problem. The way I solved: Edited the last line of xrpcc.bat file (in JWSDP-1_0_01\bin directory) to take out the PATH which created a too long command line. But I have to add the bin directory of JWSDP!
    Original text:
    "%JAVA_HOME%\bin\java.exe" -classpath %PRG%\..;"%PATH%" -Dcom.sun.launcher.executableName=%PRG% com.sun.jwsdp.launcher.XRPCCExecutable %CMD_LINE_ARGS%
    Modified text:
    "%JAVA_HOME%\bin\java.exe" -classpath %PRG%\..;c:\JWSDP-1_0_01\bin -Dcom.sun.launcher.executableName=%PRG% com.sun.jwsdp.launcher.XRPCCExecutable %CMD_LINE_ARGS%
    John

  • Couldn't startup Tomcat in JWSDP-1_0_01

    Hi,
    I have trouble starting the tomcat using the %JWSDP_HOME%\startup.bat. I traced the process and found out that startup.bat calls catalina.bat in the same folder and the following error is generated right after this line in the catalina.bat. (BTW, I am on Windows XP, J2SE 1.4.0)
    rem Execute the Tomcat launcher
    e:\j2sdk1.4.0\jre\bin\java.exe" -classpath startup\..\catalina.bat\..;"E:\com\sun\java\jwsdp-1_0_01\bin;e:\j2sdk1.4.0\bin;E:\apache\jakarta-ant-1.5\bin;E:\microsoft\visualStudioDotNet\FrameworkSDK\Bin;C:\WI
    NDOWS\Microsoft.NET\Framework\v1.0.3705;E:\j2sdkee1.3.1\bin;e:\PATH;E:\oracle\ora90\bin;e:\Program Files\Oracle\jre\1.1.8\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\" -Dcom.sun.launcher.executableNam
    e=startup\..\catalina.bat com.sun.jwsdp.launcher.TomcatExecutable start
    THIS IS THE ERROR MESSAGE
    Usage: java [-options] class [args...]
    (to execute a class)
    or java -jar [-options] jarfile [args...]
    (to execute a jar file)
    where options .....
    As you can tell, I have the %JWSDP_HOME%\bin and the J2SE bin in the path. I even have Ant 1.5.1 installed. But it still fails....
    MY PATH VARIABLE:
    %JWSDP_HOME%\bin;%JAVA_HOME%\bin;%ANT_HOME%\bin;E:\microsoft\visualStudioDotNet\FrameworkSDK\Bin;C:\WINDOWS\Microsoft.NET\Framework\v1.0.3705;%J2EE_HOME%\bin;e:\PATH;E:\oracle\ora90\bin;%EProgramFiles%\Oracle\jre\1.1.8\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%MSSQL_HOME%\80\Tools\BINN;%MSSQL_HOME%\80\Tools\Binn\
    Any idea about this error?
    Any help is greatly appreciated,
    Wilson

    I have the absolutely same problem!
    I was confused about that, so I re-installed the SDK (version 1.4.0.02) and the JWSDP (version 1.0.01). But there was no improvement - its always the same: I type "startup" or "ant" in the console and the following message appears:
    Usage: java [-options] class [args...]
    (to execute a class)
    or java -jar [-options] jarfile [args...]
    (to execute a jar file)
    where options include:
    -client to select the "client" VM
    -server to select the "server" VM
    -hotspot is a synonym for the "client" VM [deprecated]
    The default VM is client.
    If I doubleclick the ant.bat or startup.bat, the same happens!
    I ckecked my PATH variable, but the bin directories of JWSDP and SDK are correct. Also the JWSDP_HOME variable is correct.
    I wished anybody could help. I'm very confused.
    any ideas?
    M. Kretzschmar,
    Germany

  • Jwsdp-1_0_01 JAXRPCContextListener failed

    I'm trying to deploy a web service created with the jwsdp-1_0_01 api. Weblogic 7.0 loads it up and trys to deploy but we get a ClassCastException:
    User defined listener com.sun.xml.rpc.server.http.JAXRPCContextListener failed: java.lang.ClassCastException: weblogic.utils.classloaders.ChangeAwareClassLoader.
    JAXRPCContextListener is a standard ServletContextListener used by sun's wsgen and it's listed in the generated web.xml file in the war. This error is preventing the war from being fully deployed.
    I'm using sun tutorial example \jwsdp-1_0_01\docs\tutorial\examples\jaxrpc\hello\* with the documentation/instructions at \jwsdp-1_0_01\docs\tutorial\doc\JAXRPC3.html
    We've been using webservices on 6.1 for the past year without problems. But I can't get this one to go on 7.0.
    Any thoughts?

    WLS 7.0 got its own implementation of JAX-RPC. I think, the exception is
    because the JAX-RPC factorys are mapped to the WLS impls. You could
    remove the mapping by deleting the following files from weblogic.jar or
    webservice.jar:
    META-INF\services\javax.xml.rpc.ServiceFactory
    META-INF\services\javax.xml.soap.MessageFactory
    META-INF\services\javax.xml.soap.SOAPConnectionFactory
    META-INF\services\javax.xml.soap.SOAPFactory
    HTHS,
    -manoj
    "kris young" <[email protected]> wrote in message
    news:3e4446f4$[email protected]..
    I'm trying to deploy a web service created with the jwsdp-1_0_01 api.Weblogic 7.0 loads it up and trys to deploy but we get a ClassCastException:
    >
    User defined listener com.sun.xml.rpc.server.http.JAXRPCContextListenerfailed: java.lang.ClassCastException:
    weblogic.utils.classloaders.ChangeAwareClassLoader.
    >
    JAXRPCContextListener is a standard ServletContextListener used by sun'swsgen and it's listed in the generated web.xml file in the war. This error
    is preventing the war from being fully deployed.
    >
    I'm using sun tutorial example\jwsdp-1_0_01\docs\tutorial\examples\jaxrpc\hello\* with the
    documentation/instructions at \jwsdp-1_0_01\docs\tutorial\doc\JAXRPC3.html
    >
    We've been using webservices on 6.1 for the past year without problems.But I can't get this one to go on 7.0.
    >
    Any thoughts?

  • Photoshop cc 2014 suddenly trouble with cloning and healing tool

    I just updated photoshop cc 2014. I use a wacom tablet. Suddenly, when I use the healing brush or cloning brush. The brush control panel pops up and the tool simply doesn't work. After repeated attempts, I do succeed in getting this to work. Sure slows me down though.

    Sorry for the lack of the report it was my first time reporting an error for software... Never had an issue before.
    I haven't experienced the crash via text tool since I posted the question, but the Photoshop is still constantly crashing at startup, but every time I try to enter the report I get the error: Please try again later.m5

  • The future of Snapshot, and similar tools.

    My apologies for posting this twice. I posted it first as a follow up
    to an old thread in ...
    novell.support.zenworks.desktop-management.6x.install-setup
    I am quoting some comments made in that forum.
    Then after surfing the forums for awhile, I thought the issue might get
    more attention, if I posted it here. I am looking for ideas and advice
    on the future of snap shot, and any tools that Novell might provide to
    replace it.
    If I could address some of these comments, in hopes of better
    understanding ...
    RE: >>>
    > Most companies invest in packaging tools such the full version of
    > AdminStudio to create deployment packages. They then use their desktop
    > management suites to deploy those packages.
    Admin Studio is not cheap. After a client has spend thousands of
    dollars to implement ZENWorks, now I have to tell them to drop another
    couple thousand down for an application packager. I also don't fully
    understand Novell's relationship with the product, they don't seem to be
    partnering well together, I'd appreciate anyone else's read on this
    relationship.
    RE: >>
    > Novell has for over 5 years now been trying to steer people from
    > Snapshot
    I've heard that statement made verbally by many engineers, but I don't
    always see the practice following that.
    Has Novell ever gone on record to state they will no longer support snap
    shot???
    RE: >> > If your snapshots are failing with the latest versions of
    snapshot, then
    > most likely your software package falls outside the scope of what
    > snapshot should be trying to handle.
    Maybe I've just gotten lucky? I've have not had many issues with using
    snapshot, and I have been involved in a wide variety of applications.
    I have seen the statement made on the forum that ZEN Works is not really
    a "Packaging" suite. While that may be a true statement, because
    Snapshot has been packaged with the product for so long, the mind set of
    customers is that it is expected to work, and be supported.
    I look forward to additional comments on this matter.

    Tom,
    I'm not sure what exactly are you searching for? ZdM is already providing
    you with snapshot replacement - AdminStudio ZfD edition, included in ZfD
    price.
    AdminStudio part for preparing snapshot MSI is identical in ZfD and
    Professional edition.
    All comments you qouted (including this one) are personal opinions - I
    suggest you to try AdminStudio ZfD edition and make your own.
    Denis
    "tom" <[email protected]> wrote in message
    news:[email protected]...
    > My apologies for posting this twice. I posted it first as a follow up to
    > an old thread in ...
    >
    > novell.support.zenworks.desktop-management.6x.install-setup
    >
    > I am quoting some comments made in that forum.
    >
    > Then after surfing the forums for awhile, I thought the issue might get
    > more attention, if I posted it here. I am looking for ideas and advice on
    > the future of snap shot, and any tools that Novell might provide to
    > replace it.
    >
    >
    > If I could address some of these comments, in hopes of better
    > understanding ...
    >
    > RE: >>>
    > > Most companies invest in packaging tools such the full version of
    > > AdminStudio to create deployment packages. They then use their desktop
    > > management suites to deploy those packages.
    >
    > Admin Studio is not cheap. After a client has spend thousands of dollars
    > to implement ZENWorks, now I have to tell them to drop another couple
    > thousand down for an application packager. I also don't fully understand
    > Novell's relationship with the product, they don't seem to be partnering
    > well together, I'd appreciate anyone else's read on this relationship.
    >
    > RE: >>
    > > Novell has for over 5 years now been trying to steer people from
    > > Snapshot
    >
    > I've heard that statement made verbally by many engineers, but I don't
    > always see the practice following that.
    >
    > Has Novell ever gone on record to state they will no longer support snap
    > shot???
    >
    >
    > RE: >> > If your snapshots are failing with the latest versions of
    > snapshot, then
    > > most likely your software package falls outside the scope of what
    > > snapshot should be trying to handle.
    >
    > Maybe I've just gotten lucky? I've have not had many issues with using
    > snapshot, and I have been involved in a wide variety of applications.
    >
    > I have seen the statement made on the forum that ZEN Works is not really a
    > "Packaging" suite. While that may be a true statement, because Snapshot
    > has been packaged with the product for so long, the mind set of customers
    > is that it is expected to work, and be supported.
    >
    > I look forward to additional comments on this matter.

  • I have a Macbook Pro (2009) and the tool bar in Safari keeps disappearing. There's a small diagonal arrow on the upper right that I can click and the bar will appear temporarily, but then it disappears from view. "Hide Toolbar" is greyed out in VIEW

    My 2009 Macbook Pro's Safari doesn't show the tool bar anymore.  I can click on a diagonal arrow in the upper right corner that appears when I put my cursor there and the tool bar will show, but then it disappears again.  Also, when I get an email and click on an internet link the Safari doesn't open full page like it used to - it opens as a small little box and I have to click the diagonal arrow in upper right corner for it to open full screen.  Any ideas how to correct this - it is so annoying.  Thanks for any help!

    The "restore disk" is built into the Mac. See About Recovery.
    Need more specifics about what error messages you got while installing Adobe Flash.
    However, you can almost avoid Flash altogether by setting YouTube to play the HTML5 version instead.
    Click the Try something new! link at the bottom of the YouTube page.
    I don't know about the sound issue. Might be hardware as you think. Try other headphones to check.

  • Firefox main window goes black and all tools disappear.

    Occasionally the Firefox main window will go black and all tools disappear.
    It ends up with a black window, a blue frame, and the three buttons in the top right corner (minimize, maximize and close). If any audio (or video) is playing, the sound continues. If I click the X at top right to close it, it closes and when I restart it everything is ok. See the screenshot below.
    This only happens once a day or so. I have no way of predicting it other than I'm usually scrolling down the page when it happens. It has happened in safe mode.
    I'm using the most recent Firefox, 33.0.2, on Win 8.1 on an i5 system with 8G RAM.
    <img src="http://i.imgur.com/Awx1fD0.png"/>

    Try to disable OMTC and leave hardware acceleration in Firefox enabled.
    *layers.offmainthreadcomposition.enabled = false
    You can open the <b>about:config</b> page via the location/address bar.
    You can accept the warning and click "I'll be careful" to continue.
    *http://kb.mozillazine.org/about:config
    You can try to disable hardware acceleration in Firefox.
    *Tools > Options > Advanced > General > Browsing: "Use hardware acceleration when available"
    You need to close and restart Firefox after toggling this setting.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    *https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration

  • How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?

    With Acrobat 6.0 I was able to copy a stamp in the same position (I mean "exactly" the same one) of different pages just by using the "copy/past" tool.
    Now I am using Acrobat XI and it seems like it is not possible anymore: I am copying a stamp and I am trying to past it in anoter page, but it appears in the center of the page (or wherever it wants to...).
    Does anyone have a solution?
    Thanks in advance.

    Thank you very much. I'll be waiting for you message.
    Messaggio originale----
    Da: [email protected]
    Data: 26/01/2015 17.56
    A: "Umberto Gangi"<[email protected]>
    Ogg:  How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        created by Gilad D (try67) in Creating, Editing &amp; Exporting PDFs - View the full discussion
    Well, I was in the same situation so I've developed a tool that allows one to do it. I will send you some additional information about it in a private message.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7132586#7132586 and clicking ‘Correct’ below the answer
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7132586#7132586
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, &amp; "Stop Following"
         Start a new discussion in Creating, Editing &amp; Exporting PDFs by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • I have two faults! 1, an error comes up in Ps CC 2014 "could not apply the saved panel configuration, restring to default and my tools have disappeared completely and anything ive tried I cannot get them back not even the drop down menu in 'window' helps

    I have two faults! 1, an error comes up in Ps CC 2014 "could not apply the saved panel configuration, restring to default and my tools have disappeared completely and anything ive tried I cannot get them back not even the drop down menu in 'window' helps at all. And 2, Lr everytime I load it up it gives me the option to retry or switch to and it takes a while for me to even get anywhere with it I think it has something to do with the catalogs? I've been using these programs for a few years now on a Mac...no problem but when I use a PC when I'm away coz it's the (only) comp available these happen PC's are so useless! Please can anyone help??...

    I can give a few suggestions on Photoshop CC 2014, but Lightroom is a separate forum and you should ask Lr questions there.
    First close Photoshop.
    Then start Photoshop by double-clicking on it's icon and very quickly after that, hold down the ctrl-alt-shift keys until you see the reset dialog. answer "Yes" to delete settings, and let Photoshop continue to load.
    It's tricky to do and may take a few tries, but at least it should reset Photoshop CC 2014 to defaults.
    Gene

  • Error message when using xrpcc in JWSDP 1_0_01

    Dear all,
    I've got the following error message when using xrpcc of JWSDP 1_0_01 for my config.xml file.
    D:\jwsdp-1_0_01\Message>xrpcc -classpath build -both -d build config.xml
    error: invalid element "{http://java.sun.com/jax-rpc-ri/xrpcc-config}configurati
    on" in configuration file (line 2)
    The content of 'config.xml' is shown as follows.
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/jax-rpc-ri/xrpcc-config">
    <rmi name="MessageService"
    targetNamespace="http://messageuri.com/wsdl"
    typeNamespace="http://messageuri/types">
    <service name="MyMessage" packageName="Message">
    <interface name="Message.MessageIF"
    servantName="Message.MessageImpl"/>
    </service>
    </rmi>
    </configuration>
    Thank you for your kind attention!
    Regards,
    Eddie

    Thanks all! I've already solved my previous problem, however, i got another one now.
    =========================================================
    error: unknown model info in configuration file (line 5)
    =========================================================
    <?xml version="1.0" encoding="UTF-8"?>
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <rmi name="MessageService"
    targetNamespace="http://messageuri.com/wsdl"
    typeNamespace="http://messageuri.com/types">
    <service name="MyMessage" packageName="Message">
    <interface name="Message.MessageIF"
    servantName="Message.MessageImpl" />
    </service>
    </rmi>
    </configuration>
    Thanks,
    Eddie

  • File Server Resource Manager will not load WMI Objects on Windows 8.0/8.1 Preview with Hyper-V and Server Tools Loaded

    Hi Folks,
    I have a problem getting "File Server Resource Manager" to start properly because WMI objects are not loading??? I don't understand this at all because I am able to access them with other Apps, etc. I have been over my Services list as well but
    have not yet discovered which Service turns on/off "File Server Resource Manager". I have looked in Windows\System32\ and I can not find SrmSvc. I found other Srm's there though. I also found the FSRM Snapin which generates the Figure below but I
    can not find it in the WMI Browser. I believe the Firewall is OKAY since I have been over that thoroughly. I do have the Server Tools Installed for Windows 8.0 or Windows 8.1 Clients as well as the Windows Updates applied, which is where I got "File Server
    Resource Manager" in the first place. I have had WMI and Powershell 3.0 Package, installed since Windows 7 but I run a repair on them anyway.
    I have read through "File Server Resource Manager could not load WMI objects on Windows Server 2012
    Article ID: 2831687" but since I don't seem to have SrmSvc the solution doesn't help me. I haven't been able to find a similar one for the Windows Client.
    If there is anything you could share on this problem I would be much obliged.
    Thanks again,
    Crysta
    PhotM Phantom of the Mobile

    Hello,
    The Windows Desktop Perfmon and Diagnostic tools forum is to discuss performance monitor (perfmon), resource monitor (resmon), and task manager, focusing on HOW-TO, Errors/Problems, and usage scenarios.
    As the question is off topic here, I am moving it to the
    Where is the Forum... forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Windows 8.1: Is it possible to go back to the old back up and restore tool of Windows 7

    Hello,
    Is there a way to install the windows 7 backup and restore tool on Windows 8.1?
    Thanks

    No, unfortunately, you have to use the one that's available.
    How to create a system image
    from Windows powershell (admin) type
    "wbadmin start backup -backuptarget:d: -allcritical"
    Where :d: is where you will save your image file.
    you get the same image files as with the Windows 7 file restore.
    Restore the image with help from a Windows 8.1 Dvd,
    or from recovery advanced setup.
    Teching It Easy: With Windows |ActiveWin |
    Notebooks |
    Microsoft MVP

  • It's official: 9/24 MacL webcast, iTU/Woolamaloo (and YOUR tool too!)

    Hi guys,
    It's official ... the next MacLearning.org webcast (September 24th at 10:00 AM PDT) is going to be all about iTunes U and Woolamaloo. I'll be presenting, along with Apple's own Miguel Young. I'll send more detail later ... but the date, time, and theme are set. I mean, I've already got, oh, like 25 slides made ... so this is serious.
    And while I'll be spending some time talking about Woolamaloo, I also want to highlight some of the awesome things you guys are doing (and there are some really cool things out there). I think I know where most of the stuff is, but I hate to miss anyone/anything. If you could pop me off an e-mail ([email protected]) ... tell me a little about yourself and your tool, I'll be sure not only to check it out (if I haven't played with it already) and mention you, your tool, and your website.
    Ultimately, though, the über-goal is to have MacLearning.org serve as a kind of portal ... a collection point ... for external tools and iTunes U expertise (ditto for Podcast Producer, etc. etc.). That way, you don't have to scour the forums for links to this kind of stuff ... for "how to's" and "here is the story of how we implemented yadda, yadda". The idea is not to replace the iTunes U forums here ... but to give you a simpler way to find the info you need. A first step is collecting info tools/techniques ... getting your story if you have a tool or solution.

    I just got the final details from the mothership. Here they are:
    For Participants:
    If you are announcing this webcast, be sure to include all of the following information:
    How to View an Apple Sales Training Webcast:
    • Go to the following web page 5-10 minutes prior to the webcast start time:
    http://webcast.training.apple.com/
    • Enter the webcast ID and passcode:
    Webcast ID: MacLearning
    Passcode: 433311
    • Enter your name, location, and email address. Entering this information helps personalize the webcast experience, and allows presenters and experts to contact you via email, to follow up on your questions. Entering this information is optional.
    • Click the Login button, and you will see the webcast stream on the next page.
    • You can chat in questions in the text field at the bottom of the page. Your questions may be answered by the presenters in the studio during the webcast. Please note: Presenters and webcast production staff are not able to chat back to you.

  • Windows Server 2003 and Microsoft Assessment and Planning tool (MAP)

    Preparing for the end of support for Windows Server 2003 (4/2015) and the need to migrate from Windows Server 2003, I have been directed on several sites run the Microsoft Assessment
    and Planning tool (MAP) to aid in identifying any software and hardware issues.   Apparently this tool has been recently updated (7/2014) and cannot be installed on a Windows Server 2003 system.  As it requires .NET Framework 4.5 to run.  Unfortunately,
    .NET Framework 4.5 cannot be installed on a Windows Server 2003 as it only supports .NET 4.0.x versions.  All older version links to the MAP tool have been updated to link directly to version 9.1.  Where can I get a MAP tool version that will run
    on Windows Server 2003?  

    Hi,
    Yes, i would agree with arnavsharma
    After the environment scan has been completed in Windows Server 2008r2 or another supported OS, MAP looks at computers running earlier versions of Windows.
    http://technet.microsoft.com/en-us/magazine/ee677580.aspx
    Meanwhile, for the MAP related issue, you'd better ask in MAP forums:
    https://social.technet.microsoft.com/Forums/en-US/home?forum=map
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • SAVE DIALOG!!!!

    why does a save dialog always point to the jsp as default?how can i specify a different file, to save...... Are there any restrictions as to where my file has to exist on the server? If i say response.setContentType("application/zip"); response.setHe

  • Color correction slows down editing

    In CS 5.5 I  adjusted the curves for color correction for the first time and then renedered the 12min video for 1hour 20min. I now see a couple of minor clip edits I want to make.  However, Premiere is acting very slow and choppy.  Is the color corre

  • Spry jumping in IE

    I have just used the standard Spry framework as supplied in Dreamweaver CS3 on one of my employers websites. I modified the CSS to suit, only simple things like fonts and background images instead of the standrad coloured blocks. The site works perfe

  • Dvd-itunes?

    i bought a dvd to put onto my ipod video, how do I get the actual movie onto the ipod???

  • Adobe Creative Cloud In Singapore

    Hi all, When will Adobe Creative Cloud for individuals be available in Singapore for subscription. Thanks, Gunelle