Invalid AssignmentOperator

I've developed my web application using Java 5 and mySql 5 and Tomcat 5.5. Everything works well in my machine. But when I uploaded it, the result of the pages is an exception page full of this kind of errors:
n error occurred at line: 49 in the jsp file: /index.jsp
Generated servlet error:
Syntax error on token "<", invalid AssignmentOperator
An error occurred at line: 49 in the jsp file: /index.jsp
Generated servlet error:
Syntax error on token "=", != expected
An error occurred at line: 49 in the jsp file: /index.jsp
Generated servlet error:
Syntax error on token "<", invalid AssignmentOperator
The server's tomcat version is 5 but I don't know the exact minor version and build.
My Tomcat is: Apache Tomcat/5.5.20
The host tomcat is: Apache Tomcat/5.5.9
Message was edited by:
Ehsun

this is whole file
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@page import="java.util.ArrayList"%>
<%@page import="ir.webwidgets.Application.Application"%>
<%@page import="ir.webwidgets.Application.Link"%>
<%@page import="java.util.Iterator"%>
<%@page import="ir.webwidgets.Member.Member"%>
<%@page import="org.nioto.browser.Browser"%>
<html>
<head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     <title><%=application.getInitParameter("pageTitle") %></title>
     <link rel="stylesheet" href="css/layout.css" type="text/css" />
     <link rel="stylesheet" href="css/links.css" type="text/css" />
     <link rel="stylesheet" href="css/form.css" type="text/css" />
     <link rel="stylesheet" href="css/messages.css" type="text/css" />
     <style type="text/css">
     </style>
</head>
<%
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
Application app = Application.getInstance("");
Member loggedInMember = (Member) session.getAttribute("loggedInMember");
%>
<body>
     <div class="header">
          <table class="header" cellpadding="0" cellspacing="0">
          <tr>
               <td class="right">
                    <a href="http://www.webwidgets.ir"><img src="images/banner.gif" alt="&#1575;&#1576;&#1586;&#1575;&#1585;&#1607;&#1575;&#1740; &#1581;&#1585;&#1601;&#1607; &#1575;&#1740; &#1608;&#1576;" title="" border="0"/></a>
               </td>
               <td class="left">
                    <%@ include file="./jsp/header.jsp" %>               
               </td>
          </tr>
          </table>
     </div>
     <div class="middle">
          <table class="middle" cellpadding="0" cellspacing="0">
          <tr>
               <td class="right">
                    <div class="navigation">
                         <%
                         ArrayList<Link> links = app.getNavigationLinks(loggedInMember != null);
                         Iterator<Link> it = links.iterator();
                         while(it.hasNext()) {
                              Link link = it.next();
                         %>
                              <a class="navigation" href="<%=link.getHref() %>" target="<%=link.getTaget() %>" title="<%=link.getHint() %>"><%=link.getTitle() %></a>
                         <%
                         %>
                    </div>
                    <br/>
                    <%@ include file="./jsp/members.jsp" %>
               </td>
               <td class="center"> 
               </td>
               <td class="left">
                    <div class="group">
                         <div class="title">                              
                              &#1582;&#1608;&#1588; &#1570;&#1605;&#1583;&#1740;&#1583;
                         </div>
                         <div class="content">
                              <%
                              if(loggedInMember != null) {
                              %>
                                   <%@ include file="./jsp/loginstatus.jsp" %>
                              <%
                              } else {                                   
                              %>
                                   <%@ include file="./jsp/loginform.jsp" %>
                              <%
                              %>
                         </div>
                    </div>          
                    <div class="group">
                         <div class="title">&#1575;&#1585;&#1578;&#1576;&#1575;&#1591; &#1576;&#1575; &#1605;&#1583;&#1740;&#1585;</div>
                         <div class="content">
                         <%@ include file="./jsp/contactform.jsp" %>
                         </div>
                    </div>
               </td>
          </tr>
          </table>
     </div>
     <div class="footer">
          <%@ include file="./jsp/footer.jsp" %>
     </div>
</body>

Similar Messages

  • Putting quote round a variable name to make a string

    Hi,
    Hopefully this is a fairly simple task.
    I would like to take a variable name, say Hyp, from my main program and call it in a class, captured in a variable called A and create a string with double quotes surrounding it... to give an answer of "Hyp" which can be used in my program for a further class call which needs the name in quotes.
    I've tried using
    String concat = """+A+""" but this results in an invalid AssignmentOperator
    If I use
    String concat = ""+A+"" I get Hyp with out the quotes - not what is required
    If I use
    String concat = "'"+A+"'" I get 'Hyp' which does not work with the further class which requires "Hyp"
    Can anyone help?

    Escape it with a \ like this:
    String concat = "\""+A+"\"";

  • Problem with collections

    hello all,
    i am getting the systex error (multiple markers at the line 3)
    from the following code, (i am using java 1.5 and eclipse 3)
    import java.util.*;
    public class FindDups {
        public static void main(String args[]) {
            Set <String> s = new HashSet<String>(); //ine 3
            for (String a : value){
                if (!s.add(a))
                    System.out.println("Duplicate detected: "+a);
            System.out.println(s.size()+" distinct words detected: "+s);
    }thanks
    daya

    thanks for replay,
    values come from command line (command line parameter)
    Exception in thread "main" java.lang.Error: Unresolved compilation problems:
         Syntax error on token "<", invalid AssignmentOperator
         Syntax error on token "=", != expected
         Syntax error on token "<", ( expected
         Syntax error on token "(", invalid Expression
         Syntax error on token(s), misplaced construct(s)
         Syntax error on token ")", : expected
         at collection.FindDups.main(FindDups.java:18)

  • Handle lists

    I'd like to print a list in my jsp. For example this is the code:
    <%@ page language="java" import="java.util.*,java.lang.*" %>
    <% List<String> l1 = new List();
    l1.add("Hi!");
    l1.add(" How");
    l1.add(" are");
    l1.add(" you?");
    ListIterator<String> iter = l1.iterator(); %>
    <html>
    <title>Test</title>
    <body>
    <%
    while(iter.hasNext()) { %>
    <%= iter %>
    <% iter.next();
    } %>
    </body>
    </html>
    And when I try to run it... the following error appears :
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 3 in the jsp file: /index.jsp
    Generated servlet error:
    Syntax error on token "<", invalid AssignmentOperator
    An error occurred at line: 3 in the jsp file: /index.jsp
    Generated servlet error:
    Syntax error on token "=", != expected
    An error occurred at line: 3 in the jsp file: /index.jsp
    Generated servlet error:
    Syntax error on token "<", invalid AssignmentOperator
    An error occurred at line: 3 in the jsp file: /index.jsp
    Generated servlet error:
    Syntax error on token "=", != expected
    Can someone help me please? Did I make a mistake or what should I do?

    I found that you cannot sync your distributioin lists from Outlook but you can creat distribution/groups in the cloud. You creat a group name, then you click on all contacts.  Then when the names appear on the right hand side you drag the name across to the group name.

  • Generics error

    I'm using generics in my jsp and it compiles fine, but when I run it I get run-time compile error:
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Syntax error on token "<", invalid AssignmentOperator
    Syntax error on token "=", != expectedRelevant code:
    Agent agent = (Agent) request.getAttribute("agent");
    ArrayList<License> licenses = agent.getLicenses();I'm using java 5.0 and tomcat 5.5.
    Thanks

    Actually just read a post that says its related to Tomcat. I will download the latest version and see what happens.

  • Help with 301 redirect code - jsp in url

    I'm trying to set a 301 redirect in my jsp code (this is tomcat btw) using this:
    <%
    response.setContentType("text/html");
    response.setDateHeader("Expires", 0);
    response.setHeader("Location", "http://www.mysite.com/record/pleasehelpme /helpmeheretoo");
    response.setStatus(301);
    %>
    the pleasehelpme and helpmeheretoo need to use variable values i get from mysql which i would normally express in the application like
    <%=(((Recordset1_data = Recordset1.getObject("avariable"))==null || Recordset1.wasNull())?"":Recordset1_data)%>
    so what do i need to stick in those parts of the path in the url?
    it works great redirecting to a flat url but I need those variable (well, that's the point of this anyway).
    sticking the <%= recordset stuff %> is breaking since it's like a tag in a tag (i guess) - have tried variations on sticking println around (String)Recordset1.getObject("avariable") like
    "http://www.mysite.com/record/(out.println(String)Recordset1.getObject("avariable"))"
    and variations with curly braces and semicolons and everything but i keep getting
    Syntax error on token "avalue", invalid AssignmentOperator
    errors. (i'm obviously tring to figure out just one variable before i stick both in the path while i get this figured out).
    can someone hit me with a clue stick?

    And then finally I found a .php option (which I saved in my root directory)
    <?php
    header("HTTP/1.1 301 Moved Permanently");
    header("Location: http://www.downtoearthlandscaping.ca/#!/page_Home");
    ?>
    I
    This works, does your server support php?
    You don't need:
    header("HTTP/1.1 301 Moved Permanently");
    Just this:
    <?php
    header("Location: http://www.downtoearthlandscaping.ca/#!/page_Home");
    ?>
    Saved as index.php
    The server will find index.php and the first page should be displayed.

  • Error while running a query-Input for variable 'Posting Period is invalid

    Hi All,
    NOTE: This error is only cropping up when I input 12 in the posting period variable selection. If I put in any other value from 1-11 I am not getting any errors. Any ideas why this might be happening?
    I am getting the following error when I try and run a query - "Input for variable 'Posting Period (Single entry, mandatory)' is invalid" - On further clicking on this error the message displayed is as follows -
    Diagnosis
    Variable Posting Period (Single Value Entry, Mandatory) is used as a lower limit (X) and an upper limit () in an interval selection. This limit has the value #.
    System Response
    Procedure
    Enter a different value for variable Posting Period (Single Value Entry, Mandatory). If the value of the other limit is determined by another variable, you can change its value also.
    Procedure for System Administration

    OK.
    Well, if the variable is not used in any interval selection, then I would say "something happened to it".
    I would make a copy of the query and run it to check if I get the same problem with period 12.
       -> If not, something is wrong in the original query (you can proceed as below, if changes to original are permitted).
    If so, then try removing the variable completely from the query and hardcode restriction to 12.
       -> If problem still persists, I would have to do some thinking.
    If problem is gone, then add the variable again. Check.
       -> If problem is back, then the variable "is sick". Only quick thing to do, is to build an identical variable and use that one.
    If problem also happens with the new variable, then it's time to share this experience with someone else and consider raising an OSS.
    Good luck!
    Jacob
    P.S: what fisc year variant are you using?
    Edited by: Jacob Jansen on Jan 25, 2010 8:36 PM

  • Payables Open Interface Purge completes with error "Invalid Cursor"

    Hello,
    I'm trying to run Payables Open Interface Purge (version 115.8) and get an invalid cursor error in the beforereport trigger. Does anyone know the cause and remedy of this? A portion of the log is below. I've looked at the cursor and everything looks fine to me.
    MSG-00001: (Import_purge 1) Check control table for the purge process
    MSG-00001: (Check_control_table 1) Lock the control table
    MSG-00003: (Check_control_table 2) Fetch import_requests
    MSG-00004: (Check_control_table 3) Check concurrent program status
    MSG-00999: FUNCTION GET_REQUEST_STATUS ERROR, Reason:
    MSG-00999: FND_CONCURRENT.GET_REQUEST_STATUS<-Check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: (Import_purge 1) Check control table for the purge process
    MSG-00999: Delete record in control table..
    MSG-00999: ORA-01001: invalid cursor
    REP-1419: 'beforereport': PL/SQL program aborted.
    Thank you.

    I'm trying to run Payables Open Interface Purge (version 115.8) and get an invalid cursor error in the beforereport trigger. Does anyone know the cause and remedy of this? A portion of the log is below. I've looked at the cursor and everything looks fine to me.
    MSG-00001: (Import_purge 1) Check control table for the purge process
    MSG-00001: (Check_control_table 1) Lock the control table
    MSG-00003: (Check_control_table 2) Fetch import_requests
    MSG-00004: (Check_control_table 3) Check concurrent program status
    MSG-00999: FUNCTION GET_REQUEST_STATUS ERROR, Reason:
    MSG-00999: FND_CONCURRENT.GET_REQUEST_STATUS<-Check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: (Import_purge 1) Check control table for the purge process
    MSG-00999: Delete record in control table..
    MSG-00999: ORA-01001: invalid cursor
    REP-1419: 'beforereport': PL/SQL program aborted.11i: Payables Open Interface Invoice Import Troubleshooting Guide (APXIIMPT) [ID 107628.1] -- 3. Open Interface Import Purge Fails with ORA-01001: Invalid Cursor
    Thanks,
    Hussein

  • I cant update nor download any applications. My password was always invalid. And other username is prompted richardca0521@yahoo.ca which is not my account. How to get rid of this apple id and use my account for download? I have registered this to itunes.

    I can't update nor download any apps in itunes. Prompted invalid password, upon checking the apple id was not mine. The id was [email protected] whic is not mine. Pls. Help how to get rid of this. Thank you.

    try and delete the apps and re-add them

  • How, can I fix my icloud account  !! It keeps saying that my account is InValid/account is disabled ? How can  I Inabled my account ?

    My Apple ID password for icloud / I have reset it and still my Account is Disabled ?
    MY icloud account for iTunes App Store ,keeps saying my account is invalid / disabled to contact " Customer Service" in the iTunes store?
    How do I fix this ? I've reset my iPad truned icloud App Store off or sign out of apple then signed back in with my new ID or Password!

    Goonercole wrote:
    Ok if my iTunes account is disabled how do I get it enabled please
    I told you in the first post:
    "If changing your password does not work, then contact itunes support."

  • Getting ora:00904 invalid indentifier error while running i query

    Hi,
    I have a remote database and local database both are oracle 10gR2.Now i have written the below mentioned query in my local database and is working fine,but in case remote database it is throughing error ora:00904 invalid indentifier.
    I had export the dump from remote db and import it on my local db and i tried the same and it is working fine on local after that also.
    As i believe that this error usually come for column name not exist or column name or it's length or for any special character in column name of the table.But as i said it is working fine on local db but not in remote db though i am using the same dump for local and remote.
    Though when i am querying the table i can able to fetch data for the any record but when i am using the below mentioned query for the same i am getting the error.As i am doing this to fecth the data for child parent related relationship.
    Can any one suggest is there anything related to configaration or something else.
    Please do let me know if you do want some more information on the query what i am doing inside of it.
    Rgds,
    Anit
    Edited by: Anit A. on Sep 1, 2008 2:32 AM
    Edited by: Anit A. on Sep 1, 2008 2:33 AM

    WITH t
    AS
    SELECT decode(t.spnlevel
    ,3,t.u_quotesdtlid
    ,2,decode((select count(*)
    from u_quotesdtl t2
    where t2.u_quotesdtlid = t.u_quotesdtlid
    and t2.parentspn = (t2.jobgroupid||':'||t2.jobtype)
    ),0,(select t1.u_quotesdtlid
    from u_quotesdtl t1
    where t1.spnitemcode = t.parentspn
    and t1.spnlevel = '3'
    and t1.jobtype = t.jobtype
    and t1.jobgroupid = t.jobgroupid
    and t1.QUOTEID = t.QUOTEID
    ),t.u_quotesdtlid
    ,1,decode((select count(*)
    from u_quotesdtl t2
    where t2.QUOTEID = t.QUOTEID
    and t2.parentspn = (t2.jobgroupid||':'||t2.jobtype)
    ),0,t.u_quotesdtlid,decode((select count(*)
    from u_quotesdtl t3
    where t3.QUOTEID = t.QUOTEID
    and t3.parentspn = (t3.jobgroupid||':'||t3.jobtype)
    and t3.u_quotesdtlid in (select t1.u_quotesdtlid
    from u_quotesdtl t1
    where t1.spnitemcode = t.parentspn
    and t1.spnlevel = '2'
    and t1.jobtype = t.jobtype
    and t1.jobgroupid = t.jobgroupid
    and t1.QUOTEID = t.QUOTEID
    ),0,(select t4.u_quotesdtlid
    from u_quotesdtl t4
    ,(select t1.parentspn
    ,t1.jobtype
    ,t1.jobgroupid
    from u_quotesdtl t1
    where t1.spnitemcode = t.parentspn
    and t1.spnlevel = '2'
    and t1.jobtype = t.jobtype
    and t1.jobgroupid = t.jobgroupid
    and t1.QUOTEID = t.QUOTEID
    ) t5
    where t4.spnitemcode = t5.parentspn
    and t4.spnlevel = '3'
    and t4.jobtype = t5.jobtype
    and t4.jobgroupid = t5.jobgroupid
    and t4.QUOTEID = t.QUOTEID
    (select t1.u_quotesdtlid
    from u_quotesdtl t1
    where t1.spnitemcode = t.parentspn
    and t1.spnlevel = '2'
    and t1.jobtype = t.jobtype
    and t1.jobgroupid = t.jobgroupid
    and t1.QUOTEID = t.QUOTEID
    ,null,t.u_quotesdtlid) as parentquoteid
    ,t.u_quotesdtlid as quotesdtlid
    ,t.spnlevel as spnlevel
    FROM u_quotesdtl t
    WHERE t.QUOTEID ='som key id'
    ORDER BY parentquoteid,t.spnlevel desc
    select * from t;

  • An error has occurred:Invalid postback or callback argument in InfoView

    Hi Friends,
    When i try to change the parameter values and click OK button while scheduling a report in InfoView, i am getting the following error:
    An error has occurred:Invalid postback or callback argument. Event validation is enabled using in configuration or in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager. RegisterForEventValidation method in order to register the postback or callback data for validation.
    Till now i have not find any good solution for this. Please help in providing any better solutions to fix this.
    Edited by: Shivananda Puli on Aug 6, 2010 11:55 AM
    Edited by: Shivananda Puli on Aug 6, 2010 11:55 AM

    This forum is for questions in regards to using the SDK within a custom application, since you are using Infoview, please post this in the applicable forum under the [Business Objects|/community [original link is broken]; section

  • Error while attaching document to report on Portal - Invalid selection valu

    Hello All,
    We are running our reports on Portal and as per the business requirement the users have to create comments or attach documents to certain amounts in certain columns and once they create the comment a document icon shows up near that amount (for example there are 3 columns Budget, actual, balance then the user have to create comment for some amounts which needs explanation) they do that from context menu  Documents -> Create new Comment.
    Now we want those documents to be saved on Infoprovider level and not on master data for any particular object. We have activated the flag "Characteristic is document property" on related infoobjects. We have the flag to display document icon on Infoprovider active in the web template. Now when I run the report I am able to create new comments on first two columns and when the report refreshes it shows me icon near that amount but it gives me errors on third column after the report refreshes itself. Now when I go in portal KM repository where documents are stored I do see the document that I created for the third column as well so looks like the document is getting created and being stored but the issue is when it tries to display the icon on that third column.
    The error I get is this:
    The initial exception that caused the request to fail was:
    Invalid selection value:  AttributeMember
    com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException: Invalid selection value:  AttributeMember
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.setLowForced(ProviderRange.java:297)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.setLow(ProviderRange.java:291)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.set(ProviderRange.java:469)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.selection.SingleMember.set(SingleMember.java:125)
    at com.sap.ip.bi.km.common.assignment.AssignmentMember.isContained(AssignmentMember.java:192)
    Please give some inputs if anyone is facing same problem or is anyone has worked previously with this kinda of stuff.
    Thanks in advance.
    Kiran

    Hi!
    Have you solved this problem? I have the same problem after a SPS implementation (SPS 17). The message appears when we select a single value in a DP (hierarchical filter item) that filters another one, but when I select a node it doesn't.
    Before the patch implementation the apliccation worked ok.
    Any idea?
    Thanks in advance.
    Jose

  • Error while updating a custom Windows Azure Diagnostics configuration xml from powershell. "Invalid update to extension reference for role"

    I am attempting to upload a manually edited WADConfig xml to my VM. The WAD service is functioning correctly, I needed to add some custom WinEventLogs. The prescribed steps result in an error.
    What am I overlooking?
    I am following these instructions:
    Step 5: Remotely install Diagnostics on your Azure Virtual Machine
    azure.microsoft.com/en-in/documentation/articles/cloud-services-dotnet-diagnostics/#virtual-machine
    $storage_name = "wadexamplevm"
    $key = "<StorageAccountKey>"
    $config_path="c:\users\<user>\documents\visual studio 2013\Projects\WadExampleVM\WadExampleVM\WadExample.xml"
    $service_name="wadexamplevm"
    $vm_name="WadExample"
    $storageContext = New-AzureStorageContext
    -StorageAccountName $storage_name -StorageAccountKey $key
    $VM1 = Get-AzureVM
    -ServiceName $service_name -Name $vm_name
    $VM2 = Set-AzureVMDiagnosticsExtension
    -DiagnosticsConfigurationPath $config_path
    -Version "1.*"
    -VM $VM1 -StorageContext $storageContext
    $VM3 = Update-AzureVM
    -ServiceName $service_name -Name $vm_name
    -VM $VM2.VM
    Unfortunately, I am receiving this error:
    Update-AzureVM : BadRequest: Invalid update to extension reference for role: XXXXXX and reference: IaaSDiagnostics.
    What's missing from the above script?

    Hi,
    Since Azure SDK 2.5 uses the extension model the diagnostics extension, the configuration and the connection string to the diagnostic storage are no longer part of the deployment package and cscfg. All the diagnostics configuration is contained within the
    wadcfgx. The advantage with this approach is that diagnostics agent and settings are decoupled from the project and can be dynamically enabled and updated even after your application is deployed. 
    Due to this change some existing workflows need to be rethought – instead of configuring the diagnostics as part of the application that gets deployed to each environment you can first deploy the application to the environment and then apply the diagnostics
    configuration for it.  When you publish the application from Visual Studio this process is done automatically for you. However if you were deploying your application outside of VS using PowerShell then you have to install the extension separately through
    PowerShell.
    There PowerShell cmdlets for managing the diagnostics extensions on a Cloud Service are -
    Set-AzureServiceDiagnosticsExtension
    Get-AzureServiceDiagnosticsExtension
    Remove-AzureServiceDiagnosticsExtension
    You can use the Set-AzureServiceDiagnosticsExtension method to enable diagnostics extension on a cloud service. One of the parameters on this cmdlet is the XML configuration file. This file is slightly different from the diagnostics.wadcfgx file. You can
    create this file from scratch by either following the article that you are referring to or  you can modify the wadcfgx file and pass in the modified file as a parameter to the powershell cmdlet.
    To modify the wadcfgx file –
    Make a copy the .wadcfgx.
    Remove the following elements from the Copy:
    <DiagnosticsConfiguration xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
       <PrivateConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
         <StorageAccount name=" " endpoint="https://core.windows.net/" />
       </PrivateConfig>
       <IsEnabled>false</IsEnabled>
    </DiagnosticsConfiguration>
    Make sure the top of the file still has xml version and encoding –
       <?xml version="1.0" encoding="utf-8"?>
    Effectively you are stripping down the Wadcfgx to only contain the <PublicConfig> section and the <?xml> header. You can then call the PowerShell cmdlet along with the appropriate parameters for the staging slots and roles:
    $storage_name = ‘
    <storagename>’
    $key= ‘<key>’
    $service_name = '<servicename>'
    $public_config = '<thepublicconfigfrom_diagnostics.wadcfgx>'
    $storageContext = New-AzureStorageContext –StorageAccountName $storage_name –StorageAccountKey $key
    Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -DiagnosticsConfigurationPath $public_config –ServiceName $service_name -Slot ‘Staging’ -Role ‘WebRole1’
    Hope this helps !
    Regards,
    Sowmya

  • Error while deploying web role - Invalid application runtime - a runtime component is missing:/base/x64/IISConfigurator.exe

    I have Azure SDK 2.5 installed and when I try and publish my web role from VS 2013, it fails. When I manually upload the package and config through the Azure Portal I get the error:  "Invalid application runtime - a runtime component
    is missing:/base/x64/IISConfigurator.exe".
    I have tried uninstalling and re-installing the Azure SDK with no change in the error.
    Any ideas how I can troubleshoot this?

    I uninstalled the SDK, and tried to create a new cloud servce using the WCF service project template. The new project still gives me the same error:
    The file provided is not a valid service package. Detailed error code: WCFServiceWebRole1 Invalid application runtime - a runtime component is missing:/base/x64/IISConfigurator.exe.

Maybe you are looking for

  • IDOC - FILE Issue

    SCENARIO: IDOC-FILE IDOC: COND_A04 DESIGN: Two namespaces with DT,MT,MI,MM,IM for sales condition and purchase condition. Here based on the condition(LIFNR) i have to schedule the message to either salesconditon CC or purchasecondition CC. REQUIREMEN

  • How do I insert documents in a PDF?

    Just purchased and dowloaded XI and am trying to insert pages into a submittal package but cant find the insert option anywhere. how do I do this?

  • Search based on document number

    Hi, I have create transfer posting document number using t-code mb1b , using this  document number how can i ll see all the details like what r materials i moved, which storage location ?? thanks

  • EXIT_SAPLMEREQ_005 EBAN-FIPOS?

    I use EXIT_SAPLMEREQ_005 (4.6C version) for filling item`s field in ME51N 'Commitment Item' in tabstrip Account assignment. DATA item TYPE   MEREQ_ITEM. DATA itemx like  MEREQ_ITEMX.   item = im_req_item->get_data( ).   itemx = im_req_item->get_datax

  • CS3 crashed with flash

    I just got CS3 from Adobe's store. Whenever I open a page that has flash it crashes and closes. How can this be fixed ? Alex