Creator 2_0 can deploy but 2_1 not

Why is this difference between SJSC 2_0 and 2_1 ?
2_0 can deploy to AppServer 8.2 without changing sun-web.xml with Deploytool.
http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/appserverdeploy.html

Difference is that SJSC 2 bundled with Sun Application Server 8.1 and PointBase DB, but SJSC 2 Update 1 bundled with Sun Application Server 8.2 and Derby DB.

Similar Messages

  • Azure Website deployed, but does not update

    Hello,
    I've been activly deploying changes to my Azure Website for a couple of days, has worked great. I've used both Git and WebDeploy.
    However, now all of a sudden it appears as if changes does not get picked up. The correct files are on the server (checked FTP) and I see a valid "Active deployment" on the Azure portal.
    But I can't see the changes (added an "X" to string in the markup of _Layout.chtml to detect it).
    Any ideas here? As I said it has worked fine up til now.

    We are experiencing something similar with a php Azure website. Site has been previously working correctly with GIT deployment.
    Now, updating from GIT after a couple of weeks initial deployment, files confirmed to be updated by FTP.
    Old files still being served from Azure, despite browser cache clearing and testing on a mobile devices browser that used 3g and had never been to the site.
    The previous occasion this occurred, stopping and restarting the website fixed the problem - that's not working this time.
    When the site is stopped, nothing at all is served out, so the caching is turned off with the instance.
    However, when the instance is restarted, the old content is once again displayed.
    It's been twelve hours now, and the old site is still being served up.
    Anyone with any suggestions to resolve this?

  • Search engines - You can type but will not exicute search!

    Downloaded micro soft updates and now I can type in search engine box but it does not execute the search.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Note that your System Details List shows that you have a user.js file in the profile folder to initialize some prefs on each start of Firefox.
    The user.js file is only present if you or other software has created it, so normally it wouldn't be there.
    You should check its content with a plain text editor if you didn't create this file yourself.
    The user.js file is read each time you start Firefox and initializes preferences to the value specified in this file, so preferences set via user.js can only be changed temporarily for the current session.
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved

  • HT5569 i tried everything this website tells me to do when it comes to my iPhone 4s on changing my settings so the wifi can work but its not connecting no matter what i do. please help any suggestions?

    i already tried resetting me phone settings and nothing changed. i also reconnected my router and still nothing. im running out of options and i need help

    Dear allan
    Thank you so much for your replying
    Please tell me what do you mean with
    (or send the unlock request to Apple on the owner's behalf. The unlocking is done with a restore with iTunes.)
    And how i can do it????
    If there is a link to this please write it to me
    And it will be highly appreciated
    Thanks again
    But please help me urgently

  • IPhone 4 charging, can sync but does not show it.

    Yeah it does everything, but it doesn't vibrate or makes the charging sound, and I tried it on both my computer and using the ac wall plug. And it does not show the battery charging in lock mode and the little small battery in the upper right left stays the same....
    What should I do?????

    Help anyone?????
    Message was edited by: Casual20

  • Computer can restart but will not shut down

    Hello All,
    I have an iMac 17-inch Late 2006 model which is part of a computer lab which will not shut down completely. When I select shut down from the menu the computer will get to the blue screen and a spinning gear icon will appear. After a little while it will stop moving and just sits there. I have left the computer in this state over night and it does not finish shutting off. Only by holding the power button does it ever finish shutting down. It will however sleep and restart without any problems. The restart takes a little while but it does work. All of the other computers in the lab do not demonstrate this issue.
    Things I have done in an attempt to fix this problem:
    1. Reimaged computer from known good computer after zeroing the disk
    2. Repaired disk
    3. Repaired Permissions
    4. Deleted login preferences from all user folders as well as library folder
    5. Reset SMC and PRAM
    As I had noted earlier this machine is part of a lab in which none of the other computers which were imaged from the same base image are showing this issue. If you have any ideas at all I would love to hear them.
    Thank you in advance for any and all suggestions that you may have.
    ANotti

    I was looking in the console logs earlier and they are a real pain to parse but here is a section. I told the computer to shutdown at 13:13 for sake of convenience with locating the associated entries. Sadly comparing the notes in its log against a computer sitting besides it has yielded basically identical notation. I posted what I believe to be the shutdown sequence. If you see something that I have missed let me know.
    May 11 13:13:08 Allison-Lab19 shutdown: halt by student:
    May 11 13:13:08 Allison-Lab19 SystemStarter[265]: authentication service (273) did not complete successfully
    May 11 13:13:10 Allison-Lab19 SystemStarter[265]: The following StartupItems failed to properly start:
    May 11 13:13:10 Allison-Lab19 SystemStarter[265]: /System/Library/StartupItems/AuthServer
    May 11 13:13:10 Allison-Lab19 SystemStarter[265]: - execution of Startup script failed

  • Custom Report - Show Deployed, But Not Installed, Security Updates

    I'm trying to create a custom report that will show all patches that have been deployed, but have not been installed for a particular collection. Any ideas?

    Answered my own question.
    This will pull all Security Updates that have been Deployed but are still Required (not installed) for the All Systems collection (SMS00001). You can directly modify the code to limit it to the All Servers or All Workstations depending on your site code. You
    can also change the CategoryInstanceName filter to see different Update Classifications.
    select distinct
    sys.Name0,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    ui.Title as Title,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
    CASE ((ui.IsDeployed))
    When 0 Then 'No'
    Else 'Yes' End as 'Deployed',
    CASE((ui.Severity))
    When 2 Then 'Low'
    When 6 Then 'Moderate'
    When 8 Then 'Important'
    When 10 Then 'Critical'
    Else 'NA' End as 'Severity'
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_R_System sys on css.ResourceID=sys.ResourceID
    join v_ClientCollectionMembers ccm on ccm.ResourceID=sys.ResourceID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company'
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification'
    where css.Status=2
    and ccm.CollectionID='SMS00001'
    and ui.isDeployed=1
    and catinfo2.CategoryInstanceName='Security Updates'
    and catinfo.CategoryInstanceName = 'Microsoft'
    order by sys.Name0, ui.ArticleID
    select distinct
    sys.Name0,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    ui.Title as Title,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
    CASE ((ui.IsDeployed))
      When 0 Then 'No'
      Else 'Yes' End as 'Deployed',
    CASE((ui.Severity))
      When 2 Then 'Low'
      When 6 Then 'Moderate'
      When 8 Then 'Important'
      When 10 Then 'Critical'
      Else 'NA' End as 'Severity'
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_R_System sys on css.ResourceID=sys.ResourceID
    join v_ClientCollectionMembers ccm on ccm.ResourceID=sys.ResourceID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company'
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification'
    where css.Status=2
    and ccm.CollectionID='SMS00001'
    and ui.isDeployed=1
    and catinfo2.CategoryInstanceName='Security Updates'
    and catinfo.CategoryInstanceName = 'Microsoft'
    order by sys.Name0, ui.ArticleID

  • Able to deploy but can not run

    Hi,
    I have created Enterprise project using netbeans for testing purpose.
    I have added index.jsp in web module.
    then i added 1 of ejb module.
    I have not modified any file of both.
    then i build the project, it created .ear file
    I use this ear to deploy on Application PE9 it has no error.
    When I try to run the project from netbeans by right click the project
    It can not be run with error
    C:\TEST\nbproject\build-impl.xml:179: Deployment error:
    I click to this error link
    It bring me to this line of build-impl.xml
    <target name="-run-deploy-nb" if="netbeans.home">
    <nbdeploy debugmode="false" forceRedeploy="${forceRedeploy}" clientUrlPart="${client.urlPart}" clientModuleUri="${client.module.uri}"/>
    </target>
    What's wrong?
    Thanks in advance

    we'd probably need some more information to help with this.  if you could provide a more verbose description of your problem, the ipconfig /all of the devices using the router if they're having problems, and the router's ip address & subnet settings.  in your subject line you say you CAN browse, but can't access 192.168.1.1 which leaves me a little confused.

  • Urgent,I can deploy a bean on websphere in windows;but an error occur in un

    urgent,I can deploy a bean on websphere in windows;but an error occur in unix.
    [Servlet Error]-[presentation]: Failed to load servlet: java.lang.LinkageError: LinkageError while defining class: com.s1.ccb.messaging.MessagingServlet
    Could not be defined due to: com/s1/ccb/messaging/MessagingServlet (Illegal constant pool type)
    This is often caused by having a class defined at multiple
    locations within the classloader hierarchy. Other potential causes
    include compiling against an older or newer version of the class
    that has an incompatible method signature.
    Dumping the current context classloader hierarchy:
    ==> indicates defining classloader
    the java version in unix and windows is the same.

    Hello FJasmine, no, it is not related the firefox update with that.
    see : [http://answers.microsoft.com/en-us/windows/forum/windows_7-files/cant-create-anymore-new-folders-in-windows-7/721a9129-c800-4224-8779-805dd6dfb80e Can't create anymore New Folders in Windows 7]
    [http://social.technet.microsoft.com/Forums/en-US/w7itprogeneral/thread/97de8a2a-12f2-4381-a409-a78f4ae551cf/ Cannot create new folder in Windows 7]
    thank you

  • SOA 10.1.3 - DocumentReview sample deployed but not initialized

    Hi,
    I deployed successfully the DocumentReview sample with ant (failed with JDeveloper - see my previous post). But, I can't see it on the BPEL console (Cannot find the specified instance)...
    Can you help me?
    Cyryl

    Every time the process has a workflow, the process is successfully deployed but can not be seen on BPEL console !
    Some ideas?
    Cyryl

  • Can hear but not see movies from my Casio Exilim 7.2

    Movies shot on my Casio Exilim 7.2 mega pixel camera open up in QuickTime, but I can only hear them, not see them. The files from the camera are .AVI files if that helps. Wondering if I am missing something. I went to the 3rd party software page, but either didn't see what I needed or didn't understand what I needed to download to make it work. I thought it was supposed to "just work." I'm using a brand new Macbook Pro core 2, 10.4.8
    Thanks for any help.

    The inventors and creators of the AVI "container" (Micro$oft) abandoned the file format many years ago. They have moved on to WMP formats and no longer support AVI. They must know something!
    You may be better served by exporting them to QuickTime file formats using QuickTime Pro or other third party conversion software.
    Personally I wish AVI would just die (as intended by the owners) and disappear as a file container.

  • Glassfish password problem - can 'configure' but not 'admin'

    Hi,
    Using the release 1.10.179 with Glassfish Community 3.0.1 on Windows XP - I can deploy and configure my APEX listener, but once it's there I cannot get to the 'listenerAdmin', 'listenerStatus' screens - it doesn't accept the passwords that I created for the 'adminlistener' and 'managelistener' users.
    Any ideas on how to get past this?

    scott.wesley wrote:
    I installed this successfully in Windows 7, just tonight.
    I would suggest first double checking the PDF instructions for the configuration - I found it easy to miss a small step.
    Double check your port numbers you're using, too. Mine defaulted to 4848 for the admin, but 8080 for listener admin.I don't think that it's a ports problem as 'wrong' ports result in getting a page not found error. I've also found that I'm having problems running APEX, seems to be on the wwv_flow.accept...
    I'll have another look at the documentation!

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

  • Can send but not retrieve emails using Thunderbird and Windows 8.1

    Hi, I am not able to get Thunderbird to retrieve emails on a new laptop.
    Last week I purchased a new laptop due to an imminent hard disk failure on my old laptop. I will call them "Old" and "New" laptops. (Old laptop is still working for the moment...)
    The Old laptop is nearly 3 years old, and I have been using Thunderbird on it since new without any problems.
    I have downloaded and installed Thunderbird on the New laptop, and can not get it to retrieve emails.
    As the Old laptop is still working (at the moment), I am able to directly visually compare and check settings on both computers.
    THE PROBLEM
    Using Thunderbird on the New laptop, I am able to send emails, I can see all my old emails restored from the Old laptop using Mozbackup, but clicking Get Mail on the New laptop does not retrieve new
    emails.
    When I click Get Mail, the status message in the bottom left corner says "connected to .....<ISP>..." but does not actually get the emails. However, the Old laptop is still able to get emails as it always has.
    My ISP is a large Australian telco that I have used for many years and I have not changed anything with my account. The ISP is POP3.
    WHAT HAVE I TRIED
    I deleted the email account created by restoring from Mozbackup, and attempted using the Thunderbird new account wizard, however Thunderbird did not recognise my ISP and would not create the account - even though it is working perfectly at the same time on the Old laptop.
    All Firewalls I can find have been configured to allow Thunderbird, with the same configuration settings on both machines.
    How do I know I can send but not Get emails from Thunderbird on the New laptop?
    I have sent test emails to myself from the New laptop. Thunderbird sends successfully, I am able to preview the test emails via Mailwasher on the New laptop, and can read, reply, etc, to the emails if I log into my ISP webmail service. However I can NOT get Thunderbird to retrieve and download these emails on the New laptop. If I go to the Old laptop, Thunderbird works perfectly, retrieves and downloads all new emails, including these test emails.
    I am now at the point where I do not know what else to try and would appreciate any suggestions.....
    I have spent many hours over the last 3 days surfing the net, forums, Mozilla Support, etc, and tried everything suggested, without success. The only thing I have NOT tried is starting windows in Safe mode (as per some suggestions), as it is not a viable long term solution.
    OTHER INFO
    Computer Details;-
    "Old" laptop;-
    Windows 7 Home Premium - continuously updated with all Critical and Important updates. 64 bit version.
    Antivirus = Bitdefender Total Security (subscription and licensed). Up to date.
    MailwasherPro 2012 (subscription and licensed). Up to date.
    Thunderbird 24.5.0 working perfectly. Up to date.
    "New" laptop;-
    Windows 8.1 - up to date with all Critical and Important updates. 64 bit version.
    Antivirus = Bitdefender Total Security (subscription and licensed) - downloaded and installed. Up to date.
    MailwasherPro 2012 (subscription and licensed) - downloaded and installed. Up to date.
    Thunderbird 24.5.0 - downloaded and installed.
    Note: I 'downloaded and installed' the Windows 8.1 version of these programs to avoid any potential compatibility problems restoring or copying from a Windows 7 backup version of the programs.
    1) New laptop came with pre-installed with McAfee - which has been Uninstalled due to running Bitdefender (Windows searches for 'McAfee' return nothing found suggesting the Uninstall was successful).
    2) Thunderbird has been added to both Bitdefender and Windows 8.1 firewalls on the New laptop.
    3) Bitdefender and Windows security settings are identical on both laptops - as near as I can determine, I may be missing something - but have checked all settings 3 times by doing a side-by-side visual comparison.
    4) Thunderbird settings are also identical and I am using the same email address and ISP that I have been using for many years.
    5) I migrated Thunderbird settings, accounts and emails from the Old laptop to the New laptop using Mozbackup, then visually checked and compared all settings in Thunderbird between the two machines.
    6) For info, I have used Mailwasher for many years as a simple way to preview and wash mail before running email programs such as Thunderbird - might be overkill, but I have also never had a virus or malware problem, so will keep doing this.
    7) I have Uninstalled and re-installed Thunderbird on the New laptop twice, and done the same with Bitdefender once.
    8) Any config changes I try on the New laptop, I either restart Thunderbird and / or restart the New laptop, or both.
    9) I have not created a Windows 8.1 account and am not using SkyDrive.
    10) Only other software I have installed on the New laptop is Google Chrome, Office Home 2013 and iTunes - all are working.
    Thanks in advance....

    Well there is not much left. If telnet works then the path is clear and there is no hardware firewall blocking ports.
    All that is left is software, so try windows safe mode with networking. A very handy way to eliminate software. it also actually disables most anti virus resident features and is preferred here because anti virus/security programs do not always disable or turn off when they say they have.
    You might also try the McAfee removal tool. https://community.mcafee.com/thread/52788 I notice the rep said yes to both, they did not say not required.
    Finally you could try creating a new profile, and see if it works just to exclude corruption of your existing profile. ( I doubt it but I am at the anything goes point)
    Just as an aside, I have never had an email borne nasty and I for many years never even had an email virus scanner. So yes I think your a bit over cautious with mailwasher, if that is what your using it for. Thunderbird does not support scripting languages or flash, or most plugins in the email sandbox. The result is getting a virus from a mail in Thunderbird is really only possible, for all practical purposes, if you open that password protected zip from the young Russian woman and that is what the anti virus should be blocking anyway when the temp file is written.

  • HT4623 my iPhone can call out and receive text messages and emails but is not receiving any incoming calls

    my Iphone can call ut and receive text/email messages but is not receiving incoming calls.  What is your thought?

    Hi Baileyfour,
    Welcome to the Support Communities!
    The articles below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iPhone: Can't hear through the receiver or speakers
    http://support.apple.com/kb/TS1630
    There are two places where vibrations can be set.
    One is the Settings > Sounds
    The other area is Settings > Notifications
    If you have an app set to Alert, it may have a vibration set for it.
    iOS: Understanding Notifications
    http://support.apple.com/kb/ht3576
    Information about Notifications settings can also be found in the iPhone User Guide (pages 131, 132)
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf
    I hope this information helps ....
    Have a great day!
    - Judy

Maybe you are looking for

  • How to use SAP XI to get Inspection Lot IDOC when Insp. lot is created

    I want to create a 3rd party .NET app that gets an Inspection Lot IDOC when an inspection lot is created, gather the inspection results, then push the results back to SAP in an IDOC. How do I use SAP XI to do that? I developed an HTTP listener .NET a

  • Variable call not working

    This script fetches users and their groups. I was trying to make a function or something where I call groups $USER_ID instead of printing it out each time. Here is how it is now: cat myFile | while read LINE do USER_ID=`echo $LINE | awk -F: '{print $

  • Why is the video buffering when downloading

    why is the video that I am downloading buffering on my imac.

  • EMacs PPC G4 upgraded from 9.2.2 -10.3.9 how do I add classic software?

    I'm new to posting in forums & unsure about which OS to post in. I run a Mac computer lab at an elementary school. I need to add some licensed software that only works on OS 9. How do I do that without losing the ability to use the OS 10.3.9 & 10.2.8

  • Help ON MQ Adapter

    Hi, I just started learning ESB and JDeveloper. I want to create a connection for MQ Adapter. I need to get the message from the IBM MQ series using MQ Adapter and route them to Oracle tables. How do I connect to IBM MQ series? What should I do initi