Client.Header.BadVersion

hello
from FMS i try to Communicate with: asp.net c sharp
this way:
application.onConnect = function(client)
     application.acceptConnection(client);
        var myResult = new Object();
        myResult.onResult = function (resultText) {
          trace(resultText);
        myResult.onStatus = function (resultText) {
          trace(resultText);
        var my_conn = new NetConnection();
        my_conn.onStatus = function(info){
            trace(info.code);
        my_conn.connect("http://localhost/testFMSrespond.aspx");
        my_conn.call("/", myResult);
        my_conn.close();
and i keep getting this error:
Client.Header.BadVersion
the testFMSrespond.aspx page cod is:
protected void Page_Load(object sender, EventArgs e)
     Response.Write("good");
What do i do wrong?
thanks
cheinan

Hi Cheinan,
NetConnection is only used to connect to an application server running a Flash Remoting gateway over HTTP.
For the above usecase you can try using LoadVars.
var lv= new LoadVars();
application.onConnect = function(client) {
application.acceptConnection(client);
clientObj = client;
lv.load("some_url");
lv.onData = function(result) {
trace("onData"+result);

Similar Messages

  • Request.getCharacterEncoding() - corresponding client header?

    Can anyone tell me how to manually set the character encoding in the client header (i.e., which header request property it is) so it will be picked up by a servlet's request.getCharacterEncoding()?
    At the moment, I'm setting con.setRequestProperty("Accept-Charset", "Cp1252") in my midlet, but my servlet's request.getCharacterEncoding() is returning null.
    Thanks,
    James

    Thanks for your responses. I've had problems using UTF-8 with midlets though - the default for midlets is ISO8859_1. I've found you can set it in a midlet like this:
    String encoding = System.getProperty("microedition.encoding");
    con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=" + encoding); ...will work with the servlet's request.getCharacterEncoding().
    Edited by: jhodgski on Oct 25, 2008 2:45 PM

  • Issue with SOAP Header

    Hi All,
    I am beginner in SOA . Please excuse me if my phrasing is not quite right . Please do let me know if you require additional information to answer this question
    Jdev : 11.1.1.3.0
    UseCase :
    Trying to learn SOA . In this regard, I created a SOA project that BPEL process, call this as Calling process. This BPEL will call another SOA project through partner link.
    Step1  : From the calling process I am passing the header information . Assigned this header to a simple string like "Test"
    <invoke name="Invoke_1" inputVariable="Invoke_1_execute_InputVariable"
                outputVariable="Invoke_1_execute_OutputVariable"
                partnerLink="Service1" portType="ns2:execute_ptt"
                operation="execute" bpelx:inputHeaderVariable="HeaderVariable"/>
    Step 2: Has a Mediator and a BPEL . In the Mediator.mplan , below is what I am trying to do . That is trying to access the header that was passed in from calling process  and getting the error as below
                   <assign>
                      <copy target="$out.payload/client:process/client:header"
                            xmlns:inp1="http://xmlns.oracle.com/singleString"
                            xmlns:client="http://xmlns.oracle.com/WebService_jws/HelloWorld/HelloWorldBPELProcess"
                            expression="$in.header.inp1_singleString/inp1:singleString/inp1:input"/>
                   </assign>
    oracle.tip.mediator.infra.exception.MediatorException: ORAMED-01001:[Error in assign operation]Error occurred while assigning to target "$out.payload/client:process/client:header" using expression "$in.header.inp1_singleString/inp1:singleString/inp1:input".Possible Fix:Check if source message has right values or source expression is valid.
    Thanks
    Sandeep

    Try this :
    In the composite.xml of your mediator process, add "passThroughHeader" property. Probably, that might help.
    Read this : Creating Oracle Mediator Routing Rules
    Hope it helps !

  • Header rewrite on ACE

    I have a situation that I need the ACE to re-write a portion of the client header. I can configure the class-map to identify the traffic, but am unsure how to configure the policy map. The client header contains an sid value and we want the header to delete that value before forwarding to the server. From a packet capture, the http request contains the following:
    Get /testpage?sid=123456789 HTTP/1.1\r\n
    Host: http://www.example.com\r\n
    Need to change to:
    Get /testpage HTTP/1.1\r\n
    Host: http://www.example.com\r\n
    Note that the /testpage portion of the Get will vary by page.
    I also notice the sid value in the Referer header value and may need to change that as well.
    Referer: http://www.example.com/otherpage?sid=123456789
    TIA for your help.

    all we can do with the url is to create a redirect pointing to a different one.
    So you could catch with a class-map any url with sid= and create a redirect to a page without the sid.
    In a future release, you'll also be able to filter host header but currently this is not possible.
    Gilles.

  • Jabber for iPhone cannot call over Expressway. Expressway says: Bad Extension

    Hi,
    I've had Expressway working but now calls from/to Jabber for iPhone fail with a message "Bad Extension" in Expressway-E.
    Is there someone that is willing to share the search rules of Expressway-E required that are required for Jabber to make/receive calls. I think I accidentally deleted one or changed one.
    Regards,
    Erik 

    Yes, I got an answer from TAC and it is was the solution to my problem.
    It had to do with announcing IPv6 support by the clients. (header "Requires: anat")
    By creating a new Common Device Configuration that disables IPv6 (IP Addressing Mode), thus IPv4 only, and assigning this common device configuration to all devices using MRA, solved my problem.
    Let me know if this also fixes your problems!
    Regards,
    Erik Tamminga

  • Invoking http post from BPEL is not passing parameters

    Hi,
    I have a simple BPEL process where I am trying to send an xml string in a request
    parameter to a servlet. Servlet is pretty simple. It just prints the request parameters and returns. But problem is that I am not getting any request
    parameters when I am using http post but everything works fine when using
    http get.
    Enclosed is the wsdl that I am using.
    Any information will be of great help
    Thanks
    Rajesh
    <?xml version="1.0" encoding="utf-8"?>
    <definitions
    targetNamespace="http://xmlns.oracle.com/OISService"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/"
    xmlns:client="http://xmlns.oracle.com/OISService"
    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    >
    <types>
    <xsd:schema elementFormDefault="qualified"
    targetNamespace="http://xmlns.oracle.com/OISService"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <xsd:element name="header">
    <xsd:complexType>
    <xsd:sequence>
    <xsd:element name="status" type="xsd:string"/>
    <xsd:element name="description" type="xsd:string"/>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:element>
    <xsd:element name="responsedata" type="xsd:string"/>
    </xsd:schema>
    </types>
    <message name="SendDataToOISRequestMessage">
    <part name="xmldata" element="client:responsedata"/>
    </message>
    <message name="SendDataToOISResponseMessage">
    <part name="payload" element="client:header"/>
    </message>
    <portType name="SendDataToOIS">
    <operation name="process">
    <input message="client:SendDataToOISRequestMessage"/>
    <output message="client:SendDataToOISResponseMessage"/>
    </operation>
    </portType>
    <binding name="SendDataToOIS" type="client:SendDataToOIS">
    <http:binding verb="POST"/>
    <operation name="process">
    <http:operation location="/Class1"/>
    <input>
    <mime:mimeXml part="xmldata"/>
    <mime:content type="text/xml"/>
    </input>
    <output>
    <mime:mimeXml part="payload"/>
    <mime:content type="text/xml"/>
    </output>
    </operation>
    </binding>
    <service name="SendDataTOOISService">
    <port name="SendDataToOIS" binding="client:SendDataToOIS">
    <http:address location="http://localhost:8888/j2ee/servlet"/>
    </port>
    </service>
    <plnk:partnerLinkType name="SendDataToOIS">
    <plnk:role name="SendDataToOISProvider">
    <plnk:portType name="client:SendDataToOIS"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>

    In the bpel you can make a http-binding instead of the default soap-binding.
    Maybe this can help you making the call to the servlet/jsp.

  • How to detect if the user is using SSL

    I use weblogic 5.1 sp6and NES 4.1. Netscape plug-in connects them together.
    I also install the verisign certificate on the NES 4.1.
    I want my JSP code to detect if the user is using http or https to visit my
    site. However, isSecure() will return false and getSchema will return https
    and getServerPort will return 80, even when the user is using https:// . I
    guess the reason is when the NES forwards the request to the weblogic, it is
    not using https.
    Then how can I detect the protocol the user is using? I use getHeaderNames()
    method to print out all the infomration in the HEADER. However, I find that
    it only includes client header information. Is it true that NES plug-in only
    fowards part of the HEADER information to the weblogic server?
    Thanks

    Comments inline....
    "Lan Jiang" <[email protected]> wrote in message
    news:3a74d511$[email protected]..
    I use weblogic 5.1 sp6and NES 4.1. Netscape plug-in connects themtogether.
    I also install the verisign certificate on the NES 4.1.
    I want my JSP code to detect if the user is using http or https to visitmy
    site. However, isSecure() will return false and getSchema will returnhttps
    and getServerPort will return 80, even when the user is using https:// . I
    guess the reason is when the NES forwards the request to the weblogic, itis
    not using https.getServerPort should return 443. It's a bug. Fixed already in the later
    service packs.
    Workaround: run the server in a port other than 443.
    >
    Then how can I detect the protocol the user is using? I usegetHeaderNames()
    method to print out all the infomration in the HEADER. However, I findthat
    it only includes client header information. Is it true that NES plug-inonly
    fowards part of the HEADER information to the weblogic server?No, it forwards all except the Connection header because it doesn't support
    http 1.1
    Vinod.

  • How to save the data present in the description box?

    HI friends,
                   I have got a requirement where i am having one description box (custom_container) in one screen and the line length is 250. Code is like this...
    DATA: CUSTOM_CONTAINER TYPE REF TO     CL_GUI_CUSTOM_CONTAINER,
    EDITOR TYPE REF TO CL_GUI_TEXTEDIT,
    REPID LIKE SY-REPID.
    CONSTANTS: LINE_LENGTH TYPE I VALUE 250.
    MODULE STATUS_101 OUTPUT........
    My description box is working fine.....
    here i want to store the data entered in the description box(text box) when i press SAVE.
    Can any one provide me the solution.

    Hi,
    Since you are using the class CL_GUI_TEXTEDIT, you can call its' method GET_TEXT_AS_R3TABLE to save the text in internal table.
    If you wan ease the work of creating Z-Table to store them, you may use FM 'SAVE_TEXT':
    SAPscript: Save text
    The function module writes a text module to the text file or text memory, depending on the specific text object.
    The module can be used to change existing texts and to create new texts. If it is clear that it is a new text, this can be specified via the parameter INSERT. The result is better performance as a test read is not performed.
    Parameters
    CLIENT
    HEADER
    INSERT
    SAVEMODE_DIRECT
    OWNER_SPECIFIED
    LOCAL_CAT
    FUNCTION
    NEWHEADER
    LINES
    Exceptions
    ID
    LANGUAGE
    NAME
    OBJECT
    Function Group
    STXD
    Hope this helps you.
    Thanks,
    Anfernee

  • Ttrfibute error with CFDocument

    Win7/CF10
    Attribute validation error for tag CFDOCUMENT.
    It has an invalid attribute combination: filename,fontembed,format,formfields,formstype,localurl,mimetype,name,orientation,overwri te,permissions,saveasname. Possible combinations are:
    Required attributes: 'format'. Optional attributes: 'authpassword,authuser,backgroundvisible,bookmark,encryption,filename,fontembed,localurl, marginbottom,marginleft,marginright,margintop,mimetype,name,orientation,overwrite,ownerpa s sword,pageheight,pagetype,pagewidth,permissions,printallframes,proxyhost,proxypassword,pr o xyport,proxyuser,saveasname,scaletofit,scale,scaletofit,src,unit,useragent,userpassword'.
    Required attributes: 'format'. Optional attributes: 'authpassword,authuser,backgroundvisible,bookmark,encryption,filename,fontembed,localurl, marginbottom,marginleft,marginright,margintop,mimetype,name,orientation,overwrite,ownerpa s sword,pageheight,pagetype,pagewidth,permissions,printallframes,proxyhost,proxypassword,pr o xyport,proxyuser,saveasname,scaletofit,scale,scaletofit,srcfile,unit,useragent,userpasswo r d'.
    Required attributes: 'format'. Optional attributes: 'filename,formfields,formstype,name,openpassword,overwrite,pdfa,permissions,permissionspa ssword,saveasname,s...
    ========================================================================================== ===================
    Obviously, I'm making some mistake.  Here is the code I've written.  I don't understand where and what the mistake is.
    ========================================================================================== ===================
    <!---
    lay_Schilli_InvoiceEMail.cfm
    --->
    <!--- <cfSaveContent variable="PaceInvoice"> --->
    <body class="body">
    <!--- <CFMAIL Server="#Application.MailServer#"
      subject="Invoice for #Month(V_StartDate)# #Year(V_StartDate)#"
      to="[email protected]"
      from="[email protected]"
      cc="[email protected],[email protected]"
      type="HTML"> --->
    <!---</cfsavecontent>--->
    <cfdocument
        format = "PDF"
        filename = "C:/ProgramData/Goldmine/Tmplinks/"
        fontEmbed = "yes"
        formfields = "no"
        formsType = "FDF"
        localUrl = "yes"
        mimeType = "text/plain"
        name="PaceInvoice"
      orientation = "portrait"
      overwrite = "yes"
      permissions = "AllowPrinting,AllowCopy,AllowScreenReaders"
      saveAsName = "Pace_Invoice_for_#Q_Person.Contact#_for_#Month(V_StartDate)#_#Year(V_StartDate)#.pdf">
      <!--- Headers --->
      <TABLE border="0" width="100%" cols="6" cellspacing="0">
      <TR>
      <TD width="50%" colspan="3" style="font-family: Arial; font-weight: bold; font-size: 26px;text-align: left; ">
      INVOICE
      </TD>
      <TD width="50%" colspan="3">
      <img url="C:\ProgramData\Goldmine\Template\Images\powersuasionlogo_125x26.gif" style="text-align: right;"><br>
      </TD>
      </TR>
      <TR>
      <TD width="100%" colspan="6" class="TDHeaderTable" style="text-align: left;">
      400 E. Randolph, Suite 503<br>
      Chicago, IL 60601<br>
      Phone: 312-777-1010<br>
      Fax 866-252-0048
      </TD>
      </TR>
      <TR height="16pt" style="vertical-align: bottom;">
      <TD width="100%" colspan="6" class="TDHeaderTable" style="text-align: right; font-weight:bold;">
      Invoice Number: #V_InvoiceNumber# <br><br>
      Date: #DateFormat(todayDate,"mmmm d, yyyy")#
      </TD>
      </TR>
      <!--- Client header --->
      <TR>
      <TD width="100%" colspan="6" class="TDHeaderTable" style="text-align: left; vertical-align: bottom;">
      Betsy Schilli<br>
      Pace <br>
      550 W. Alongonquin Rd.<br>
      Arlington Heights, IL 60005
      </TD>
      </TR>
      <TR height="10pt"><td> </td></tr>
      </table>
      <!--- End headers --->
      <!--- Invoice table detail header --->
      <!--- Check to see if any records were available for this person --->
      <CFIF Q_Person.RecordCount GE 1>
      <TABLE border="0" width="100%" cols="6" cellpadding="5" cellspacing="0">
      <TR>
      <TH width="10%" colspan="1" class="tdOutputListHeaderLeft">Date</TH>
      <TH width="5%" colspan="1" class="tdOutputListHeaderleft">Item</TH>
      <TH width="50%" colspan="1" class="tdOutputListHeaderLeft">Description</TH>
      <TH width="5%" colspan="1" class="tdOutputListHeaderRight">Qty</TH>
      <TH width="10%" colspan="1" class="tdOutputListHeaderRight>Unit Price</TH>
      <TH width="10%" colspan="1" class="tdOutputListHeaderRight">Extended</TH>
      </TR>
      <CFSET V_LineValue ="0">
      <CFSET V_Total="0">
      <!--- Output meetings --->
      <CFLoop query="Q_Person">
      <cfset V_LineValue = 0>
      <TR>
      <TD width="10%" colspan="1" class="tdOutputListContentLeft">
      #DateFormat(Q_Person.OnDate,"mm/dd/yyyy")#
      </TD>
      <TD width="5%" colspan="2" class="tdOutputListContentLeft">
      CNS
      </TD>
      <TD width="50%" colspan="2" class="tdOutputListContentLeft">
      #Q_Person.Contact# Consulting
      </TD>
      <TD width="5%" colspan="1" class="tdOutputListContentRight">
      #Q_Person.Duration#
      </TD>
      <TD width="10%" colspan="1" class="tdOutputListContentRight">
      $150.00
      </TD>
      <TD width="10%" colspan="1" class="tdOutputListContentRight">
      #V_LineValue#
      </TD>
      <cfset V_LineValue = #V_Qty#*150>
      <CFSET V_Total = #V_Total# + #V_LineValue#>
      </TR>
      </CFLOOP>
      </table>
      <TABLE border="0" width="100%" cols="6" cellpadding="5" cellspacing="0">
      <TR>
      <TD width="100%" colspan="6" class="tdOutputListContentCenter" Style="font-size: 20pt;">
      Contract Number 215566
      </TD>
      </tr>
      <TR>
      <TD width="10%" colspan="1" class="tdOutputListContentCenterNoBorder">
      </TD>
      <TD width="5%" colspan="2" class="tdOutputListContentCenterNoBorder">
      </TD>
      <TD width="50%" colspan="2" class="tdOutputListContentLeftNoBorder">
      </TD>
      <TD width="5%" colspan="1" class="tdOutputListContentRightNoBorder">
      </TD>
      <TD width="10%" colspan="1" class="tdOutputListContentRight" style="font-size: 14pt; font-weight: bold; text-align: right;">
      Total
      </TD>
      <TD width="10%" colspan="1" class="tdOutputListContentRight" style="font-size: 14pt; font-weight: bold; text-align: right;">
      #DollarFormat(V_Total)#
      </TD>
      </TR>
      </table>
      <cfset V_InvoiceNumber = #V_InvoiceNumber# + 1>
      <br><br><br>
      <TABLE border="0" width="100%" cols="6" bgcolor="##FFFFCC" cellspacing="0">
      <TR>
      <TD width="100%" valign="middle" colspan="6" style="border: 1px solid black; font-size: 16pt; font-weight: bold; text-align: center;">
      Thank you very much for your business.<br><br>
      Please contact Elizabeth Kariotis at [email protected] or 312-371-9270
      </TD>
      </TR>
      </TABLE>
      </cfif>
    </cfdocument>
    <!--- </cfmail> --->

    Agreed with BKBK (whom I follow on CF Forums )
    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7c 21.html
    Thanks
    VJ

  • Design Studio working for ipad,iphone, and desktop

    Hello All,
    I'm new to the SAP design studio world. My first task that has been assigned to me is to see what is the capability of Design Studio to have a singular file and have the CSS be reflective of Iphone,Ipad and Desktop.
    1) Is this even possible? There is very limited document out there discussing in depth about design studio
    2) If possible what has to be done to be able to get something like this to work?
    3) I guess if all is good how maintainable is something like this.
    I understand design studio is still pretty new and a lot of people are still using Dashboard Design, but any insight on this would be very helpful.
    Thanks,
    Scottie

    Hi Scottie,
    in addition to the valid information from Tammy, you cna refer to the PAM for supported devices. in Mobile area thesupported way is to use SAP BI Mobile as entry point.
    to your question, you can create the application once and then open on desktop or iPad. I would be carefully with iPhone, as this is small device and not all components are supported (see documentation).
    Also, it is today a bit tricky to change the CSS based on the device - there will be a better way in 1.4 release as there it will be possible to get the client header sring in BIAL scripts. and by that you can assign different CSS classes to the components.
    welcome to Design Studio!
    Regards, Karol

  • Snow Leopard Sever versus SBS 2011

    Just started evaluating SBS 2011. I have been setting up SBS servers since SBS 2000 and have many many years using this however licensing has always bugged me with SBS server and in 2011 the story is no different. It is an 'if, and + but' licensing scheme as I like to refer to it and I have seen instances where volume license professionals and SBS consultants have got this wrong. In a recent case i was proved to be correct in my licensing setup at a client site and the license audit proved wrong - thats how confusing it is. However my clients heads where left spinning with it all and the hours it took to a lot of hours to resolve.
    Compared to the Mac Server license model then you would wonder why people tolerate this at all. What does SBS Server have over Snow Leopard Server other than Exchange and how does Mail services in Snow Leopard compare?

    Firebird74 wrote:
     Compared to the Mac Server license model then you would wonder why people tolerate this at all. What does SBS Server have over Snow Leopard Server other than Exchange and how does Mail services in Snow Leopard compare?
    "Other than Exchange" is huge.  Not that I'm a huge fan of Exchange (it has it's own issues - no software is perfect), but especially with the Mac having a full Outlook client, having in-house Exchange can be VERY nice.  Exchange 2010 Outlook Web Access (OWA) is also increadibly nice and feature rich.  You almost don't even need Outlook anymore.  Indeed, the typical non-power user would probably be just as happy with OWA as full Outlook.  The only other system with as feature rich webmail would be Lotus Domino (and if you want to debate Lotus Note/Domino I will be more than happy to - not in this thread tho).
    Here's why I continue to deploy SBS - and now, especially SBS 2011, to the non-profits I support.  First of all, it's cheap for non-profits.  Microsoft has a very gracious charity licensing program.  Second, SBS "just works".  I often wonder how the SBS division in Microsoft survives since they actually seem to be customer focused   They know who their customers are and their product is targeted squarely at that market.  I have been using SBS since the SBS 2000 days, and the progress the product has made over the last decade is simply astonishing.
    Once you get past the initial server install and the hour and a half of updates and reboots (typical Microsoft product!) you have an almost 90% functioning and integrated Windows network with a full directory, feature rich email, powerful group calendaring, full remote access for email, collaboration, files and remote access to your office computers, collaboration through sharepoint, file sharing, bare-metal restore capable incremental backup - the list goes on.  The amount of stuff packed into SBS is truely astonishing.
    Client machines are joined automatically.  Powerful functionality such as folder re-direction and syncronization of local files are a few mouse clicks away.  Health montioring and patching of the network is fully integrated into the managmenet console and "so easy a caveman could do it".  With a few more clicks SBS will email you status and error reports - great for admins like me who are part time and on demand.
    And the new remote access features of SBS-2011 are really, really nice.  Heck, I can even remote into my SBS server from my Mac now!
    Yes, with Mac OSX Server I could probalby get similar services and I would have to give up a few things like automatic remote access to the client machines, but there would be allot more manual integration and at the end of the day SBS still offers more.  And the hardware - the server I built for $2K would have been double that and still lacked features like redundant power   This is the most dissapointing thing about Apple's recent moves with the discontinuation of their server hardware.
    So it comes down to what is important for you.  If you have Windows based applications, SBS can be a no-brainer.  Especially if you have anything that relies on SQL server.  If your a typical office with light email, light useage of a calendar and basic file sharing then Mac OSX server can also be a viable solution.  It won't be as tightly integrated and you will have to figure more stuff out, but it is cheaper - especially if you aren't a non-profit.  Yes, Microsoft's licensing can be confusing, but if you have a good reseller that understands small business - especially ones like Software House or Software One.
    Having said that, I'm still going to work with a friend who owns a small business to upgrade his SBS 2003 box to 2011.  He has a critical business application that runs on SQL server so he's stuck there, and other applications like QuickBooks only work with Windows servers.  That and they are heavy, heavy users of email and group calendaring.  As much as I like Mail and iCal, even with some of the third party add-ons to iCal it just can't stand up to what you get in true enterprise-class systems.
    And finally, if I get into trouble, or if I get hit by a bus and the organizations I support need help, they are far more likely to find folks who understand Microsoft than Mac OSX server.  Unfortunatly, that is a critical factor for many organizations.
    I don't think it has to stay this way forever, but for right now MS has a better solution for small businesses.
    SBS Essentials is also an interesting product.  If you have a smattering of Windows desktops and need basic file sharing, Essentials is a really great deal.  Biggest reason: Essentials can do incremental backups of all your workstations and it has built-in data-deduplication so you don't get 25 copies of the OS, applications, redundant data files, etc.  Before essentials, I installed Windows Home Server to backup up to 10 machines - I have 10 workstations backed up in less than 150GB because of the data-deduplication functionality.  This is enabled by NTFS shadow copy service - Apple really needs some sort of block level snapshot capability in their file system.  It would enhance TimeMachine and make stuff like this trivial.
    Anyway, those are a few of my thoughts after supporting several home and small business networks - often of mixes with Mac's and Windows boxes.

  • Business View change does not show in existing Parameter Group

    I have an existing report that includes a dynamic, cascading LOV and associated parameter group.  The LOV is based on a Business View.
    I modified the Business View to limit the available values.  (Actually, I modified the Data Foundation and then updated the Business Elements, Business View, and LOV.)  I cleared the LOV using the Business View Manager, rescheduled the LOV, and received a message indicating that the refresh was Successful.  If I open the report, the old list of values are still displayed.
    To test, I created a new report.  I used the Enterprise as the data source and selected the Business View used by the LOV and parameter group.  If I query the Business View, I only see the rows I expect to see after the change made to the Data Foundation, Business Elements, Business View, .....
    How do I force the existing report to use the current LOV?
    thanks

    Please check whether the following SAP helps:
    Business Objects Notes Get Help | Close 
       1196364 - Need to refresh List of values (LOV) in the prompt, to be able to see list with all values in InfoView 
    Language   English     Version   21     Validity: 11.07.2008 - active   
    Edit Print View Show change log Show Internal Memos Compare Versions 
    Content:    Summary   |   Header Data   |   Other Properties
    Symptom
    Refreshing report with prompts, the list of values (LOV) does not appear.
    LOV needs to be refreshed for the values to show/appear
    Reproducing the Issue
    Environment :
    BOXI 3.0
    Cause
    Keep last selected value option is defined in the prompt property.
    Resolution
    Clear the option Keep last selected value in prompt property.
    Save report
    Keywords
    WebI WebItelligence show prompt refresh Rich Client
    Header Data
    Released on  17.07.2008 14:42:32 by James Terry (I817754) 
    Current Release Status  Released to Customer 
    Target Release Status  Released to Customer 
    Responsible  Stephanie Adam ( I049611 ) 
    Category  Problem 
    Application Area  BOJ-BIP 
    Product Version  BOBJ ENTERPRISE XI 3.0
    BOBJ ENTERPRISE XI
    Other Properties
    Business Objects Article ID  2060972 
    Business Objects BugID  ADAPT00898429 
    Business Objects BugSystem  ADAPT 
    Business Objects ProductFamilyMajorVersion  BusinessObjects Enterprise XI
    Web Intelligence XI
    Business Objects ProductName  BusinessObjects
    Web Intelligence
    Business Objects ProductMajorVersion  Web Intelligence XI
    Business Objects BuildVersion  11.5.0.0
    Business Objects SupportQueue  Design 
    Business Objects ProductLanguage  English

  • Message style webservice WLS6.1SP5

    Hi there,
    I have implemented a message style webservice that sends data to a soap client.
    In my tests, the java client works fine, but the .NET client looses messages.
    On the client side I invoke receive on both clients, but the .NET client seems
    to close the connection between subsequent calls and looses the message (This
    is my guess because the number of subscribers is increasing with subseq. calls).
    What am I missing?
    Thanks
    Juerg

    I did some more investigation and have analyzed what a .NET clients sends and what
    a Java Client sends:
    Here are the results:
    JAVA CLIENT
    =========
    POST /WebServices/serverPush HTTP/1.1
    SOAPAction: "urn:receive"
    Content-Type: text/xml; charset=utf-8
    User-Agent: Java1.3.1_01
    Host: localhost:8080
    Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    Connection: keep-alive
    Content-length: 490
    <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:SOAP-ENV='http://schemas.xmlsoap.org/soap/envelope/'
    xmlns:SOAP-ENC='http://schemas.xmlsoap.org/soap/encoding/' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
    xmlns:xsd='http://www.w3.org/2001/XMLSchema'><SOAP-ENV:Body><ns1:receive xmlns:ns1='urn:serverPushWS'
    SOAP-ENV:encodingStyle='http://xml.apache.org/xml-soap/literalxml http://schemas.xmlsoap.org/soap/encoding/'></ns1:receive></SOAP-ENV:Body></SOAP-ENV:Envelope>
    JAVA CLIENT HEADER
    ===============
    <HTTPHeaders><authorization>Basic bnVsbDpudWxs</authorization><user-agent>Java1.3.1_01</user-agent><host>localhost:8080</host><accept>text/html,
    image/gif, image/jpeg, *; q=.2, */*; q=.2</accept><connection>keep-alive</connection></HTTPHeaders>
    .NET CLIENT MESSAGE
    ===============
    <?xml version="1.0" encoding="utf-8" ?>
    - <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:tns="urn:local" xmlns:types="urn:local/encodedTypes" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    - <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <q1:receive xmlns:q1="urn:serverPushWS" />
    </soap:Body>
    </soap:Envelope>
    .NET CLIENT HEADER
    ==============
    - <HTTPHeaders>
    <user-agent>Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client Protocol
    1.0.3705.0)</user-agent>
    <content-type>text/xml; charset=utf-8</content-type>
    <soapaction>"urn:receive"</soapaction>
    <content-length>468</content-length>
    <expect>100-continue</expect>
    <connection>Keep-Alive</connection>
    <host>localhost</host>
    </HTTPHeaders>
    The only maor difference that I see, is that the Java client also sends a HTTP
    header. Could this make the difference?
    Please help
    Juerg
    "Juerg Staub" <[email protected]> wrote:
    >
    Hi there,
    I have implemented a message style webservice that sends data to a soap
    client.
    In my tests, the java client works fine, but the .NET client looses
    messages.
    On the client side I invoke receive on both clients, but the .NET client
    seems
    to close the connection between subsequent calls and looses the message
    (This
    is my guess because the number of subscribers is increasing with subseq.
    calls).
    What am I missing?
    Thanks
    Juerg

  • New Source for acces sequence

    Hi Gurus,
    I need some help, I don´t know if  a new source for Access Secuence can be made  to consider client order header fieds.
    Can anybody help me with this?
    I did create two partner functions  that has to be determined by  an  access sequence that reads the client header fields.
    Is this possible?
    Thanks in advance
    Marga

    Hi Marga,
    Could you be more specific?
    You say:"I did create two partner functions that has to be determined by an access sequence that reads the client header fields.
    Is this possible?"
    What are these fields?
    Best regards,
    Caíque Escaler
    Edited by: Caíque Escaler on Dec 1, 2010 4:16 PM

  • Splitting hierarchy into a dimension

    Hi,Currently i have a "Clients" dimension (as one of my dimensions) with following hierarchy...Clients Personal Corporate ABC-Head ABC-Member1 ABC-Member2 : : XYZ-Head XYZ-Member1 XYZ-Member2 : : (etc)Normal process takes less than 20 minutes. (both loading & calculation)I want to modify this by moving the Client Heads(ABC-Head, XYZ-Head) and the members on a separate dimension. So what i did was the following :Group Clients {Client Type} ABC-Head (Corporate) XYZ-Head (Corporate) : : Member Clients ABC-Member1 ABC-Member2 XYZ-Member1 XYZ-Member2 : : Client Type Attribute Personal CorporateAfter these changes, my loading & calculation time took longer ( 2 hrs and still processing) obviously because of the new dimensions introduced.I would appreciate if anyone of you can help me minimize the processing time using the above format. Or anyone of you can suggest a new approach.Btw, my purpose of splitting the dimensions... inorder to present them in separate row (analyzer report), instead of drilling down into it.Rgds,

    This sounds like an attribute dimension, if you are on v6+ then utilise this functionality to provide cross tab reports.Hope this helpsAndy Kingwww.analitica.co.uk

Maybe you are looking for

  • HP Envy 4500 connection issues

    Hi. My Envy 4500 all the sudden will not print, becuase a message on my mac printer icon reads, 'Printer not connected." It HAS been connected....I don't know what happened. The driver appears to be missing from my computer, too. The printer itself,

  • Did 10.4.6 break booting from external hard Drives

    Hi This afternoon, I tried to clone my internal Hard Disk to an external drive. I do the regularly using Disk Utility, and I have not had and problems doing this until today. In fact, when I acquired my Power Mac three weeks ago I cloned my iMac's dr

  • EMail of Itimised Bill

    I receive my Bill through the Post, the June Bill has arrived in the Post but I have not received my June Bill Notification email for, I need to check itimised  mobile calls, .. I have logged into my eircom and the only Bill available is the April'15

  • I can't acess facebook and hotmail since I installed Mountain Lion! Help?

    I tried To use Safari, Firefox and opera. No sucess... Also I can't acess the Apple support mountain Lion community.

  • How we can define storage capacity constraint for SAP APO SNP(trading company)

    Hi can any one advise how we can define storage capacity constraint in SAP APO SNP.Typically businesss scenario its a trading company  sources from different sources and deliver to the distribution centres,its typically sourcing optimization using SN