Package creation problems

(This is a question relating to a homework question... so not too much help please!)
I've created (what I hope is) a working package, and it compiles fine with no errors. I've then created a test program that calls the package. But, when I try to compile the test program it returns with the error (package does not exist).
Here are my two .java files.
The Package:
package uk.ac.cf.cs.scm2lem.PoundOunce;
class PoundOunce {
     int lbOne, ozOne, lbTwo, ozTwo, ozOneTotal, ozTwoTotal, ozFinalTotal, lbResult, ozResult;
     public void main(String args[]) {
          lbOne = Integer.parseInt(args[0]);
          ozOne = Integer.parseInt(args[1]);
          lbTwo = Integer.parseInt(args[3]);
          ozTwo = Integer.parseInt(args[4]);
          ozOneTotal = (lbOne * 16) + ozOne;
          ozTwoTotal = (lbTwo * 16) + ozTwo;
          if (args[2] == "a") {
               addition(ozOneTotal, ozTwoTotal);
          else if (args[2] == "s") {
               subtraction(ozOneTotal, ozTwoTotal);
          else if (args[2] == "m") {
               multiplication(ozOneTotal, ozTwoTotal);
          else division(ozOneTotal, ozTwoTotal);
          lbResult = ozFinalTotal / 16;
          ozResult = ozFinalTotal % 16;
          System.out.println("Answer: " + lbResult + "lbs and " + ozResult + "oz");
     int addition(int ozOneTotal, int ozTwoTotal) {
          ozFinalTotal = ozOneTotal + ozTwoTotal;
          return ozFinalTotal;
     int subtraction(int ozOneTotal, int ozTwoTotal) {
          ozFinalTotal = ozOneTotal - ozTwoTotal;
          return ozFinalTotal;
     int multiplication(int ozOneTotal, int ozTwoTotal) {
          ozFinalTotal = ozOneTotal * ozTwoTotal;
          return ozFinalTotal;
     int division(int ozOneTotal, int ozTwoTotal) {
          ozFinalTotal = ozOneTotal / ozTwoTotal;
          return ozFinalTotal;
}Here is my test program:
import uk.ac.cf.cs.scm2lem.PoundOunce;
class PoundOunceTest {
     public static void main(String args) {
          PoundOunce test = new PoundOunce();
}Now, I've been told to compile my package by using the command javac -d PackageName.java and this just doesn't work. I've compiled it into a .class file and also put this into a .jar file (Don't ask why, because I don't have a clue!) and it still comes with errors.
How do I make my package available to my test file? I'm truly stumped!
Thanks for ANY help.
fakelvis

I have discard the package and change the sentence :
import PoundOunce;
I thimk that is very simple the solution :
class PoundOunceTest:
public class PoundOunceTest{
private PoundOunce t;
public static void main ( String[] args )
PoundOunce test = new PoundOunce();
and the PoundOunce.java as follow :
class PoundOunce {
int lbOne, ozOne, lbTwo, ozTwo, ozOneTotal, ozTwoTotal, ozFinalTotal, lbResult, ozResult;
public void main(String args[]) {
lbOne = Integer.parseInt(args[0]);
ozOne = Integer.parseInt(args[1]);
lbTwo = Integer.parseInt(args[3]);
ozTwo = Integer.parseInt(args[4]);
ozOneTotal = (lbOne * 16) + ozOne;
ozTwoTotal = (lbTwo * 16) + ozTwo;
if (args[2] == "a") {
addition(ozOneTotal, ozTwoTotal);
else if (args[2] == "s") {
subtraction(ozOneTotal, ozTwoTotal);
else if (args[2] == "m") {
multiplication(ozOneTotal, ozTwoTotal);
else division(ozOneTotal, ozTwoTotal);
lbResult = ozFinalTotal / 16;
ozResult = ozFinalTotal % 16;
System.out.println("Answer: " + lbResult + "lbs and " + ozResult + "oz");
int addition(int ozOneTotal, int ozTwoTotal) {
ozFinalTotal = ozOneTotal + ozTwoTotal;
return ozFinalTotal;
int subtraction(int ozOneTotal, int ozTwoTotal) {
ozFinalTotal = ozOneTotal - ozTwoTotal;
return ozFinalTotal;
int multiplication(int ozOneTotal, int ozTwoTotal) {
ozFinalTotal = ozOneTotal * ozTwoTotal;
return ozFinalTotal;
int division(int ozOneTotal, int ozTwoTotal) {
ozFinalTotal = ozOneTotal / ozTwoTotal;
return ozFinalTotal;
You have seen that no more chandes have been made . Well now you can :
javac PoundOunce.java
javac PoundOunceTest.java
and continue :
java PoundOunceTest
but you have ommited "static" in tne
public void main ( String[] args )
I think that it's wrong
Miguel

Similar Messages

  • Problem with package creation

    Hi ,
    I created package name  BBP_ESI, with the following information:
    Appl. Component - MM
    software component - SAP_APPL
    Assign BBP_ESI as a sub package to PI-B2B .
    1, Where can i find  Allowed Objects types in the package creation ,i am using SAP  6.0 version .
    2, When i create a report and save it in this package BBP_ESI, its giving error Customer object PROG ZFCI_BBP_ESI_IDOC_SETUP cannot be assigned to package BBP_ESI . Please let me know why i am getting this error .
    Thanks In Advance .
    Regards,
    Neelima

    see SAP documentation for package naming convention:
    Packages
    The following namespaces are available for packages:
    Package names beginning with a letter from A to S, or from U to X.
      Package names beginning with these letters are reserved for objects of the SAP standard system from the SAP namespace. You cannot create customer objects or objects from prefix namespaces in these packages.
    Note that the package name must be no more than 30 characters long. The name of the main package should reflect the content of the package Adjacent packages should have similar names.
    The Transport Organizer records changes to objects in these packages, so that they can be transported.
    These packages belong to the "SAP" transport layer and are assigned to an SAP software component (such as SAP_BASIS, SAP_APPL).
    Package names beginning with Y or Z
      You can create customer-specific objects from the customer namespace in these packages.
    The Transport Organizer records changes to objects in these packages, so that they can be transported, provided the SAP System has been set up appropriately. (For more information, see Setting the System Change Option). These packages are assigned to the software component HOME.
    So create the packages accordingly...

  • Database creation problems and parition consolidation

    This is my first time on here so please look past my green-ness. =)
    I Installed Oracle 8.1.7 successfully and opted to setup the database creation later so I could put the database on another partition. Well, I tried once to create the database on the partition I installed oracle onto (/oracle) but I had insufficient space, It said I needed 1.3 gigs. My "/database" partition is only a 1 gig parition (and /oracle is 2 gigs). My plan was of course, to seperate them.
    Ok, I didn't see an option to create the db on another partition so I resigned to using /oracle. My question now is, is the 960 megs on /oracle enough to create the database? I used the custom setup so I could see how everything was broken down and I noticed that my rollback segment is 500 megs. Is this necessary? Can I get by with 100 megs and be fine? Also, if I did do this, I'd have approximately 100 megs free for data, this is enough I hope??
    Lastly, I need to combine the partitions somehow without effecting /. The hard drive is broken down into:
    gigs
    5.5 /
    2.0 /oracle
    1.0 /database
    Does anyone have any ideas? In windows, I used partiton magic but I don't know if there is a linux version.
    One more thought (last one for real =), it had 50 megs allocated for it's shared memory pool. I'm assuming this will take away from the 128megs I have thus effectively making only 78 available to X, will this cause any noticeable problems other than a bit of slowdown? I have most if not all of my virtual memory free at all times. I know I should get more ram, but you know how the budget thing goes...
    Any help would be greatly appreciated,
    Rob

    Try running the catalog and catproc sql scripts.
    $ cd $ORACLE_HOME/rdbms/lib
    $ svrmgrl
    connect internal
    @catalog
    @catproc
    That will set up all of the internal views and packages that
    oracle needs to do DDL.
    Scott
    Don DeLuca (guest) wrote:
    : I'm gotten through the install and created the database. The
    : database comes up, I can do some simple stuff like create a new
    : user, create a simple table but when I try to run SQL DDL
    : statements I get errors saying: "recursive SQL error". I
    : looked at the sql.log file after the install. It doesn't look
    : like all the packages were created successfully. Have others
    had
    : similiar problems with the system table/package creation? To
    me
    : it looks like a DDL that was needed was not called during the
    : install and later caused problems during package creation.
    : This is my fourth time installing and I have the same problem
    : each time. I also tried to run the plsql.sql file to recreate
    : some of the packages but this did not work either.
    : I've just about given up and I'm starting to realize why its
    : free.
    null

  • Transport and package creation

    Hello SAP Masters,
    I am looking for some details guideline about package creation and sap crm transport layer. I mean how to create different packages and how to transport from one server to another.
    Looking for your reply.
    Thanks and Regards
    Rahul

    Hi Rahul,
    would recommend the following help links: http://help.sap.com/saphelp_nw70/helpdata/en/57/38ddb14eb711d182bf0000e829fbfe/content.htm
    and http://help.sap.com/saphelp_nw70/helpdata/en/af/40bd38652c8c42e10000009b38f8cf/content.htm
    Best Regards,
    Michael

  • How to create a security role to delegate package creation and deployment?

    Hi,
    I am new to SCCM 2012 and I would like to delegate packaging and deployment based on an AD container and user. For example, I have a US-SCCM-Admin account created in the US OU in Active Directory. I also have computers in the US Computers OU in AD. I am
    not sure what settings I need so that the US-SCCM-Admin account only has rights to create and deploy packages to the US OU and no where else? I added US-SCCM-Admin security group from AD to the "Administrative Users" group in SCCM. But now I need
    to configure a role for this group but I am not sure which one to copy or import? I tried copying the "Application Deployment Manager" role and renaming it appropriately but when I login to SCCM as this user, they dont have the option to create or
    deploy packages? Does anyone have a simple step by step on this or explanation on what to do to delegate package creation and deployment based on the user in an AD group? TIA

    The Application Deployment Manager role is only allowed to deploy an already existing application. You would have to use the
    Application Administrator role instead.
    Torsten Meringer | http://www.mssccmfaq.de

  • Native installation package creation failed: Error: EndUpdateResource: Windows Error #5

    We've got a customer who gets this error when attempting to install our software. My Google-fu makes me think this is a rare error. Chris, would you have any ideas as to the cause of this?
    Many thanks,
    Taylor
    [2011-09-18:14:36:24] Runtime Installer begin with version 2.7.1.19610 on Windows 7 x86
    [2011-09-18:14:36:24] Commandline is:
    [2011-09-18:14:36:24] No installed runtime detected
    [2011-09-18:14:36:44] Relaunching with elevation
    [2011-09-18:14:36:44] Launching subprocess with commandline c:\users\sawhit~1\appdata\local\temp\air9728.tmp\adobe air installer.exe -ei
    [2011-09-18:14:36:52] Runtime Installer begin with version 2.7.1.19610 on Windows 7 x86
    [2011-09-18:14:36:52] Commandline is: -stdio \\.\pipe\AIR_6756_0 -ei
    [2011-09-18:14:36:52] No installed runtime detected
    [2011-09-18:14:36:54] Starting silent runtime install. Installing runtime version 2.7.1.19610
    [2011-09-18:14:36:54] Installing msi at c:\users\sawhit~1\appdata\local\temp\air9728.tmp\setup.msi with guid {FDB3B167-F4FA-461D-976F-286304A57B2A}
    [2011-09-18:14:37:29] Runtime Installer end with exit code 0
    [2011-09-18:14:37:30] Elevated install completed
    [2011-09-18:14:37:37] Launching subprocess with commandline c:\Program Files\Common Files\Adobe AIR\Versions\1.0\Resources\Adobe AIR Updater -installupdatecheck
    [2011-09-18:14:37:37] Runtime Installer end with exit code 0
    [2011-09-18:14:37:43] Runtime Installer begin with version 2.7.1.19610 on Windows 7 x86
    [2011-09-18:14:37:43] Commandline is: -installupdatecheck
    [2011-09-18:14:37:43] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-09-18:14:37:48] Performing pingback request
    [2011-09-18:14:37:49] Pingback request completed with HTTP status 200
    [2011-09-18:14:37:49] Starting runtime background update check
    [2011-09-18:14:37:49] Begin Background update download from http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.7.1.19610/update
    [2011-09-18:14:37:49] Unpackaging http://airdownload.adobe.com/air/3/background/windows/x86/patch/2.7.1.19610/update to C:\Users\sawhitman\AppData\Roaming\Adobe\AIR\Updater\Background
    [2011-09-18:14:37:50] Runtime update not available
    [2011-09-18:14:37:50] Unpackaging cancelled
    [2011-09-18:14:37:50] Runtime Installer end with exit code 0
    [2011-09-18:14:42:13] Application Installer begin with version 2.7.1.19610 on Windows 7 x86
    [2011-09-18:14:42:13] Commandline is: C:\Users\SAWHIT~1\AppData\Local\Temp\YNAB3_Live_3.5.3.4-2.air
    [2011-09-18:14:42:13] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-09-18:14:42:16] Unpackaging file:///C:/Users/SAWHIT~1/AppData/Local/Temp/YNAB3_Live_3.5.3.4-2.air to C:\Users\sawhitman\AppData\Local\Temp\flaB571.tmp
    [2011-09-18:14:42:39] Application signature verified
    [2011-09-18:14:42:39] Unpackaging/validation complete
    [2011-09-18:14:42:39] No app located for appID 'com.youneedabudget.YNAB3.Live' and pubID '9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1'
    [2011-09-18:14:42:50] Converting unpackaged application to a native installation package in C:\Users\sawhitman\AppData\Local\Temp\fla3A1C.tmp
    [2011-09-18:14:43:03] Native installation package creation failed: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: EndUpdateResource: Windows Error #5" errorID=0]
    [2011-09-18:14:43:13] Application Installer end with exit code 7
    [2011-09-18:14:43:20] Application Installer begin with version 2.7.1.19610 on Windows 7 x86
    [2011-09-18:14:43:20] Commandline is: C:\Users\SAWHIT~1\AppData\Local\Temp\YNAB3_Live_3.5.3.4-2.air
    [2011-09-18:14:43:20] Installed runtime (2.7.1.19610) located at c:\Program Files\Common Files\Adobe AIR
    [2011-09-18:14:43:24] Unpackaging file:///C:/Users/SAWHIT~1/AppData/Local/Temp/YNAB3_Live_3.5.3.4-2.air to C:\Users\sawhitman\AppData\Local\Temp\flaC01C.tmp
    [2011-09-18:14:43:37] Application signature verified
    [2011-09-18:14:43:37] Unpackaging/validation complete
    [2011-09-18:14:43:37] No app located for appID 'com.youneedabudget.YNAB3.Live' and pubID '9C763150EFAB05FD2A2B78705C7A54E2FCDDE07D.1'
    [2011-09-18:14:43:59] Converting unpackaged application to a native installation package in C:\Users\sawhitman\AppData\Local\Temp\fla47B3.tmp
    [2011-09-18:14:44:16] Native installation package creation failed: [ErrorEvent type="error" bubbles=false cancelable=false eventPhase=2 text="Unhandled exception Error: EndUpdateResource: Windows Error #5" errorID=0]
    [2011-09-18:14:44:28] Application Installer end with exit code 7

    On Windows 7, make sure you are running as Administrator:
    Download and install Adobe AIR from this page
    Download YNAB3_Live_3.5.3.4.air to a folder on your computer.
    Navigate to the folder on your computer where you saved the YNAB3_Live_3.5.3.4.air. If you are on Windows Vista or Windows 7, right-click on the file and choose “Run as Administrator.” For Mac, Linux, and all other versions of Windows, simply double-click on it to install YNAB 3.
    Thanks,
    Lisa Chao
    Adobe Flash Runtime Team

  • Query to find package creation, modify

    Hi,
    Does anybody have the query to find the package Creation, Deletion and modification record?
    I do not want the Audit or Staus messages to check.
    Need a proper report on Packages created, modified etc..
    System Security analyst at CapG

    Hi,
    Does anybody have the query to find the package Creation, Deletion and modification record?
    I do not want the Audit or Staus messages to check.
    Need a proper report on Packages created, modified etc..
    System Security analyst at CapG
    Any updates?? Atleaset few suggestions..
    System Security analyst at CapG
    Ok, look at the status message. They will be exactly the same as any query and the status message query already exist. Why re-event the wheel?
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Rmic skeletoton stub creation problem with packages

    Hi,
    I was able run a RMI app without the package but when I try to introduce packaging(mindful of Classpath issues) it gives me the an error. My server directory is called server1 which is located under my home directory.All my server files i.e MHTaskManager.java, MHServices.java and MHServer.java are in the server1 directory. It compiles very well but when I run the following command.
    rmic server1/MHTaskManager from the home directory it comes up with the following errors
    /home/mathu_a/courses/cs775/rmiarc/server1/MHTaskManager_Stub.java:4: '{' expect
    ed.
    public final class server1/MHTaskManager_Stub
    ^
    /home/mathu_a/courses/cs775/rmiarc/server1/MHTaskManager_Skel.java:4: Class serv
    er1 already defined in /home/mathu_a/courses/cs775/rmiarc/server1/MHTaskManager_
    Stub.java.
    public final class server1/MHTaskManager_Skel
    ^
    /home/mathu_a/courses/cs775/rmiarc/server1/MHTaskManager_Skel.java:4: '{' expect
    ed.
    public final class server1/MHTaskManager_Skel
    ^
    /home/mathu_a/courses/cs775/rmiarc/server1/MHTaskManager_Stub.java:4: Public cla
    ss server1 must be defined in a file called "server1.java".
    public final class server1/MHTaskManager_Stub
    ^
    Is there something I am missing as $HOME is already defined.
    -Mathur

    Resolved it myself.
    my mistake, Command had to be
    rmic server1.MHTaskManager instead of rmic server1/MHTaskManager

  • Database creation problem on Windows XP

    Hello Readers
    I have installed ORACLE Database Engine on windows XP.
    I am facing problem in database creation.
    I have tryed wizard as well as mannual method.
    in wizard at 90% it gives an error "END-OF-FILE ON COMMUNICATION CHANNEL"
    although CD drive is in CR Rom drive.
    Please help me ....
    Rashid Masood Ashraf
    email: [email protected]

    After going to the properties as you suggested:
    Right now the Obtain an IP address automatically is checked
    I need to check the Use the following IP address:
    What should I enter for
    IP address:
    Subnet mask:
    Default gateway:
    Please help.
    Edited by: Nel Marcus on Dec 2, 2008 3:49 PM

  • Remittance challan creation problem in Cross company code scenario.

    I made to Advance  payment to Cross comany code while posting time we deduct the TDS amount. at the time remiottance challan creation  i got bellow error.please help to me
    No unpaid tax lines exist for the given selection criteria.
    Message no. 8I702
    Diagnosis
    The corresponding withholding tax line  &1& is not present in WITH_ITEM table.
    System Response
    For withholding tax recovered from the vendor, tax line is present in table BSIS, but the corresponding entry is missing in table WITH_ITEM , which is necessary for challan updation. Check the entries.
    Procedure
    check entries in table WITH_ITEM for the open tax items chosen for clearing.
    Edited by: TEEGALA SATISH on Jun 15, 2010 5:43 PM

    Hi ...Actually i am getting same problem in challan creation.. Did you get any solution? ...

  • Process order creation problem

    I am creating a process order . while creating the process order system is throwing error as Auto batch numbering not set up for material type XXXX in plant xxxx . System is not allowing to create process order.
    How to resolve the issue.

    Check in CORW   and switch off batch creation  to isolate the problem if needed.   Also see whether you have any batch managed compoents   for which you have set master data for automatic batch determination.
    There is no setting for material types and plant for batch.  May be the error message is not correct.  What is the message number?

  • New Excise Invoice Creation - Problem

    Hi All,
    I am facing problem in creation of Excise Invoice. I dont know the step by step process, can any one help me to get this ?
    Best Regards
    Chintesh Soni

    Hi Chintesh,
    if you are referring to a 100% tax invoice, please see note [887917|https://service.sap.com/sap/support/notes/887917] for 2 workarounds.
    All the best,
    Kerstin

  • Logical Standby Creation Problems "Create STatus Unknown"

    We are using Grid Control 10.2.0.3 on Oracle 10.2..0.3 databases, Windows 2003 sp2 machines.
    We have a primary and fsfo physical standby working properly. We went to create a logical standby on a separate server and had problems. it turned out that the listener on the server was not discovered on the target. we fixed that problem and finished the creation of the logical standby and it seems to be functioning properly now.
    However, the status on the data guard page for the logical standby shows Create Status Unknown and we are unable to proceed on to create an additional standby database for other purposes. We have tried removing the logical standby target and re-discovering it but status still shows Create Status Unknown.
    Is there any way to clear this status without having to drop the logical standby and completely recreate it.

    The status on the agent shows it uploading successfully.
    We resolved the issue by removing the logical standby from the configuration and selecting to retain the log apply. We then re-added the standby selecting to manage an existing standby database and the status went to normal.

  • Package execution problem with SQLSERVERAGENT

    Hello,
    I'm having a problem with the execution of SSIS packages: I created locally a package with SQL Server Data Tools, then I deployed it on my server in the SSISDB database. Then I created a job to execute periodically this package with SQL Server Agent. The
    package works fine and does everything I want, but I always get a failed notification. In the global view of the execution I can see:
    Result: "failed"
    Package name: "Package.dtsx"
    Task name: "Package"
    Execution access path: "\Package"
    Every other task returns a success and their execution access path is a subfolder of "\Package". I tried everything I found on the web, check the "Runtime 32bits" box, create a "Job Account" user to execute the package via a
    "Job Account Proxy", modify the ProtectionLevel of the package to "DontSaveSensitive", give the "Job Account" user full rights on everything, nothing works.
    Do you have an idea of what my problem is and how to solve it?
    I must precise that all my packages do the same thing: I have a loop on all the csv files in a folder that for each file loads the contents of the file in my database and the delete the file. I observed that the error message do not appear when there is
    no file in the folder when the package executes.
    Thanks in advance.

    Not sure what error message, is the one "est introuvable.
    Cette erreur est retournée par la collection Connections lorsque l'élément de connexion spécifique est introuvable"?
    So, here is in short: the ForEach Loop once in its beginning of operation "senses" the files currently present in the working folder. If a new file arrives after this stage, it will not see it.
    In your case it seems that the ForEach "saw" a file at the beginning, but it was gone at the time the processing wanted it for execution.
    Like many above indicated, the common practice, call
    it elegant or not is to indeed move the files to a different directory (working folder). This is done to avoid collisions with some other activity in that folder.
    Furthermore, you can have all the files deleted using a ForEach against the working folder as say in
    http://beyondrelational.com/modules/2/blogs/88/posts/10178/ssis-delete-files-from-specified-folder-using-file-system-task-in-sql-server.aspx And there is no need to delete the working folder
    itself.
    The job is run in SQL Server's Agent
    need to be set to run using a domain proxy account as it needs write access to the file system.
    Arthur My Blog

  • System Creation problem in EP

    Hi All,
    I am trying to create a system to connect my portal to the R/3 backend to execute business package.
    All the entries goes well like system name,system alias,ITS nae etc.
    When I click the personalize link to map my user id for the sytem created it is throwing the following error :-
    There is a configuration issue which leads to problems when accessing user mapping data for the selected backend system <system name>. Contact your system administrator.
    I am doing it on EP6.0 on SP14.Am I missing something.The same error comes for every user.
    Also I did the same thing in Sneak preview version it was working fine and i was able to connect to the R/3 backend.
    Also when I go to Useradministration -> User mappping I am not finding any default systems under Logon data drop down.I am wondering why?
    Expecting an early response.
    Regards,
    Balaji S

    Hi Balaji,
    goto system administration -> system configuration -> UM configuration -> Direct Editing
    and find the following
    ume.usermapping.unsecure=FALSE
    change it to
    ume.usermapping.unsecure=TRUE
    save changes and restart portal server
    then u can use UM after creating System do not forgot to assign the permission for System to Everyone group
    regards,
    kaushal

Maybe you are looking for

  • Finished DVD doesn't start with opening menu

    Hi: I burned a 15 minute film after composing it in iMovie, adding chapters in Garageband, and editing it in iDVD. All went well, and the final results looks pretty good. However.....when I play the DVD, it starts at a different point, plays an inser

  • Is this page loading OK for you

    Hi all I am experiencing an issue with my wordpress blog (hosted with HostMySite) - no major changes except the insallation of a well known SEO plugin (but worked fine after that installation). HMS says everything is OK at there end, but. When I try

  • Issue is Nokia Asha 306

    Hi Friends, I have bought Nokia Asha 306 , and I found following issues , Please let me know if there is any solution . 1. Whatsapp is not working, although its pre-loaded . It opens but when I reach license agreement page I can't press 'Accept' Howe

  • Customizing Authorization for Controlling

    Hello, Experts,   I need to create a role with authorization for SPRO but only for the Controling branch. How do I do it ? Thank you ! Rami Kleiman - HP

  • Coherence needed for SOASuite cluster?

    Hello Folks, We are setting up a dual node cluster for Oracle SOA Suite. Please confirm whether coherence is mandatory to be installed along with weblogic? Best Regards, Kartheek