Error Code -50 : Parameter Error

I get this error when copying to a flash drive formatted in FAT16 MS-DOS Format. I am able to use it perfectly fine in a windows environment. I called apple and asked about the error, the call was inconclusive. Any ideas?

o.k..... when i asked 'where' it meant more what machine, what interface... things like that... i understand now that you are always simply trying to mount this flash drive on a mac and copy files to it in a way that also works under windows... right?
but your actual problem AFAIK is that if you copy the file from its present location to the flash drive, it may or may not work. but if you copy the file from its present location to the desktop, then copy it to the flash drive, it (almost always) works... right?
this may be the key. how specifically are you copying the file? are you perhaps in superuser (admin/root) mode and copying files from another account, and perhaps the permissions for accessing the flash drive are the reason? i'm guessing here, it's hard to tell so far...
oh, and BTW, why FAT16? have you tried reformatting this flash drive as FAT32 and trying again... FAT16 is so, like, last century, and it has it's drawbacks...
post back if we're still not converging... cheers

Similar Messages

  • "Invalid access code (Bad parameter)" error encountered when trying to import VSS DB into TFS 2012

    I'm trying to import a VSS DB into TFS 2012 using the VSS Upgrade Wizard.
    However, I'm getting an "Invalid access code (Bad parameter)" error when I click the "List Available Projects" link button.
    I have been able to get the wizard going with a different VSS DB, but not this one.
    How can I fix this and get the import going?

    Hi,
    Thank you for your post.
    Do you use OLE Automation objects when you log on VSS? Please refer to this
    FIX: VSS OLE Automation Error Message "Bad Access Parameter"
    Regards,
    Lily Wu
    MSDN Community Support | Feedback to us
    Develop and promote your apps in Windows Store
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • Com.sybase.persistence.SynchronizeException: com.ianywhere.ultralitejni12.implementation.JniException: UltraLiteJ Error[-1305]: MobiLink communication error -- code: 86, parameter: 404, system code: 0Details:

    Hi,
    I am trying to fetch data from SMP 2.3 Server through SMP 2.3 SDK. i have followed all steps which have been mentioned in SYBASE INFOCENTER for Native Android Platfom. i am getting the following error
    com.sybase.persistence.SynchronizeException: com.ianywhere.ultralitejni12.implementation.JniException: UltraLiteJ Error[-1305]: MobiLink communication error -- code: 86, parameter: 404, system code: 0Details:
    if anybody has dea about this error. please respond

    Hi viru,
    No, i am not connecting via relay server. i am connecting to organisation's  SMP Cloud Server. We used the same RFC for creating MBO for iOS application and it worked.
    This is my code:
    import java.util.Hashtable;
    import SampleTest.SampleTestDB;
    import android.app.Activity;
    import android.app.ProgressDialog;
    import android.content.Intent;
    import android.os.Bundle;
    import android.util.Log;
    import android.view.Menu;
    import android.view.View;
    import android.widget.AdapterView;
    import android.widget.AdapterView.OnItemClickListener;
    import android.widget.Button;
    import android.widget.ListView;
    import android.widget.Toast;
    import com.sybase.collections.GenericList;
    import com.sybase.collections.StringList;
    import com.sybase.collections.StringProperties;
    import com.sybase.mobile.Application;
    import com.sybase.mobile.ApplicationCallback;
    import com.sybase.mobile.ConnectionProperties;
    import com.sybase.mobile.ConnectionStatus;
    import com.sybase.mobile.RegistrationStatus;
    import com.sybase.persistence.DefaultCallbackHandler;
    import com.sybase.persistence.LoginCredentials;
    import com.sybase.persistence.SynchronizationAction;
    import com.sybase.persistence.SynchronizationContext;
    import com.sybase.persistence.SynchronizationGroup;
    import com.sybase.persistence.SynchronizationStatus;
    public class ReadActivity extends Activity {
         private static final int REQUEST_DETAIL = 99;
         private static String USERNAME = "supAdmin";
         private static String PASSWORD = "pass";
         private static String HOST = "cloudsap1.ltisap.com";
         private static int PORT = 5001;
         private static int TIMEOUT = 600;
         private EmployeeAdapter adapter;
         private static volatile boolean initializationDone = false;
      ListView ltList;
      Button btnNext;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_read);
      initializeApplication();
    protected void onActivityResult(int requestCode, int resultCode, Intent data)
            if (requestCode == REQUEST_DETAIL)
                if (resultCode == RESULT_OK)
                    ReadActivity.this.adapter.refreshUI(true);
       private void initializeApplication()
        final ProgressDialog dialog = new ProgressDialog(this);
        dialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
        dialog.setTitle("on boarding ...");
        dialog.setMessage("Please wait while download initial data...");
        dialog.setIndeterminate(false);
        dialog.setProgress(100);
        dialog.setCancelable(true);
        dialog.show();
        new Thread()
            @Override
            public void run()
                try
                    int count = 0;
                    while (!initializationDone)
                        dialog.setProgress(++count);
                        Thread.sleep(100);
                        if (count == 100)
                            count = 0;
                    dialog.cancel();
                catch (Exception e)
                    dialog.cancel();
        }.start();
        Application app = Application.getInstance();
        app.setApplicationIdentifier("SampleTest");//== important!!!!!!!!!!!!!!!!!
        app.setApplicationContext(getApplicationContext());
        new Thread(new Runnable()
            public void run()
                try
                    Application app = Application.getInstance();
                    ApplicationCallback appCallback = new MyApplicationCallback();
                    app.setApplicationCallback(appCallback);
                    SampleTestDB.registerCallbackHandler(new CustomerDBCallback());
                    SampleTestDB.setApplication(app);
                    SampleTestDB.getSynchronizationProfile().setServerName(HOST); // Convenience only
                    ConnectionProperties connProps = app.getConnectionProperties();
                    LoginCredentials loginCredentials = new LoginCredentials(USERNAME, PASSWORD);
                    connProps.setLoginCredentials(loginCredentials);
                    connProps.setServerName(HOST);
                    connProps.setPortNumber(PORT);
                    if (app.getRegistrationStatus() != RegistrationStatus.REGISTERED)
                     try {
                      app.registerApplication(TIMEOUT);
                     catch (Exception e)
                      Log.e("Emp101","Cannot register " + e.getMessage());
                    else
                        app.startConnection(TIMEOUT);
                    Log.i("Emp101","Application REGISTERED");
                    if (!SampleTestDB.isSynchronized("default"))//
                     Log.i("Emp101","Starting Initial Sync");
                        SampleTestDB.disableChangeLog();
                        SampleTestDB.synchronize(); // AFTER  THIS STATEMENT IT IS GIVING THAT ERROR
                        SynchronizationGroup sg = SampleTestDB.getSynchronizationGroup("default");
                        sg.setEnableSIS(true);
                        sg.save();
                      //  SampleTestDB.subscribe();
                        Log.i("Emp101","Subscribe");
                        SampleTestDB.synchronize();
                        Log.i("Emp101","Initial Sync COMPLETED");
                    SampleTestDB.enableChangeLog();
                catch (Exception e)
                    e.printStackTrace();
                finally
                    initializationDone = true;
                ReadActivity.this.runOnUiThread(new Runnable()
                    public void run()
                     btnNext = (Button) findViewById(R.id.btn_create);
                        adapter = new EmployeeAdapter(ReadActivity.this);
                      ltList = (ListView) findViewById(R.id.lvRead);
                      ltList.setAdapter(adapter);
        }).start();
       // Start of ApplicationCallback
       class MyApplicationCallback implements ApplicationCallback
          public void onApplicationSettingsChanged(StringList nameList)
            Log.i("Emp101","Application Settings Changed: "+ nameList);
          public void onConnectionStatusChanged(int connectionStatus, int errorCode, String errorMessage)
                 switch (connectionStatus)
                     case ConnectionStatus.CONNECTED:
                      System.out.println("Device is Connected");
                      Log.i("ERROR1", "Device is Connected");
                         break;
                     case ConnectionStatus.CONNECTING:
                      System.out.println("Device is Connecting");
                      Log.i("ERROR2", "Device is Connecting");
                         break;
                     case ConnectionStatus.CONNECTION_ERROR:
                      System.out.println("Connection Error: " + errorMessage);
                      Log.i("ERROR3", errorMessage);
                         break;
                     case ConnectionStatus.DISCONNECTED:
                      System.out.println("Device is Disconnected");
                      Log.i("ERROR4", "Device is Disconnected");
                         break;
                     case ConnectionStatus.DISCONNECTING:
                      System.out.println("Device is Disconnecting");
                      Log.i("ERROR5", "Device is Disconnecting");
                         break;
          public void onRegistrationStatusChanged(int registrationStatus, int errorCode, String errorMessage)
                 switch (registrationStatus)
                     case RegistrationStatus.REGISTERED:
                      System.out.println("Device is REGISTERED");
                      Log.i("ERROR6", "Device is REGISTERED");
                         break;
                     case RegistrationStatus.REGISTERING:
                      System.out.println("Device is REGISTERING");
                      Log.i("ERROR7", "Device is REGISTERING");
                         break;
                     case RegistrationStatus.REGISTRATION_ERROR:
                      System.out.println("Registration Error: " + errorMessage);
                      Log.i("ERROR8", errorMessage);
                         break;
                     case RegistrationStatus.UNREGISTERED:
                      System.out.println("Device is UNREGISTERED");
                      Log.i("ERROR9", "Device is UNREGISTERED");
                         break;
                     case RegistrationStatus.UNREGISTERING:
                      System.out.println("Device is UNREGISTERING");
                      Log.i("ERROR10", "Device is UNREGISTERING");
                         break;
          public void onHttpCommunicationError(int errorCode, String errorMessage, StringProperties httpHeaders)
           System.out.println("ERROR - HTTP Communication Error: "+ errorMessage);
          public void onDeviceConditionChanged(int condition)
           System.out.println("Device Condition Status: "+ condition);
       public void onCustomizationBundleDownloadComplete(String arg0,
         int arg1, String arg2) {
        // TODO Auto-generated method stub
       public int onPushNotification(Hashtable arg0) {
        // TODO Auto-generated method stub
        return 0;
       //....End of ApplicationCallback
        private class CustomerDBCallback extends DefaultCallbackHandler
             @Override
             public int onSynchronize(GenericList<SynchronizationGroup> groups, SynchronizationContext context)
                 if (context.getStatus() == SynchronizationStatus.STARTING)
                     ReadActivity.this.runOnUiThread(new Runnable()
                         public void run()
                             Toast.makeText(ReadActivity.this, "Synchronizing ... ", Toast.LENGTH_LONG).show();
                 else if (context.getStatus() == SynchronizationStatus.FINISHING || context.getStatus() == SynchronizationStatus.ASYNC_REPLAY_UPLOADED)
                  ReadActivity.this.runOnUiThread(new Runnable()
                         public void run()
                             Toast.makeText(ReadActivity.this, "Synchronize done", Toast.LENGTH_SHORT).show();
                     if (ReadActivity.this.adapter != null)
                      ReadActivity.this.adapter.refreshUI(false);
                 return SynchronizationAction.CONTINUE;
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
      // Inflate the menu; this adds items to the action bar if it is present.
      getMenuInflater().inflate(R.menu.read, menu);
      return true;

  • MobiLink communication error -- code: 231, parameter: , system code: 0Details:

    Hi All,
    Can anybody help me why i am getting this error at the time of subscribe() method.
    Below is my code..
        public static final String CONNECTION_RELAY_URL_SUFFIX = "/ias_relay_server/server/rs_server.dll/SUPFarmMBS";
        public static final String SYNC_RELAY_URL_SUFFIX = "/ias_relay_server/server/rs_server.dll/SUPFarmRBS";
    I am successfully able to register application but when i am calling subscribe() am getting MobiLink communication error -- code: 231.
                    ConnectionProfile connectionProfile = ProCRMDB.getSynchronizationProfile();
                    connectionProfile.setServerName(AuthenticationMBO.HOST);
                    connectionProfile.setPortNumber(AuthenticationMBO.RELAY_PORT);
                    connectionProfile.setNetworkProtocol(AuthenticationMBO.SYNCPROTOCOL);
                    NetworkStreamParams streamParams = connectionProfile.getStreamParams();
                    streamParams.setUrl_Suffix(AuthenticationMBO.SYNC_RELAY_URL_SUFFIX);
                    connectionProfile.setDomainName(AuthenticationMBO.DOMAINNAME);
                    connectionProfile.setAsyncReplay(true);
                    connectionProfile.save();
                    ProCRMDB.disableChangeLog();
                    ProCRMDB.subscribe();
                    ProCRMDB.synchronize();

    sorry for the little mistake I made. you should normally use
    public static final String SYNC_RELAY_URL_SUFFIX = "/ias_relay_server/client/rs_client.dll/SUPFarmRBS";
    instead of
    public static final String SYNC_RELAY_URL_SUFFIX = "/ias_relay_server/server/rs_server.dll/SUPFarmRBS";
    This should normally work
    This also apply for the registration part (MBS farm). Even if it works for you, it doesn't mean that the way you have done it is correct.
    On the client side, you should always point to the client dll and not to the server dll, as the outbound enablers are the only ones who are meant to use the later one.

  • 400 status code 'oauth_callback parameter required.' message

    Trying to get a request token, I am getting a 400 status code with a 'oauth_callback parameter required.' message.  I am using the Authentication header method in this form:
    Authorization: OAuth oauth_callback="oob", oauth_consumer_key="<snip>", oauth_version="1.0", oauth_signature_method="PLAINTEXT", oauth_timestamp="1282250439", oauth_nonce="2424374763941556559", oauth_signature="<snip>"
    This is going to https://streamwork.com/oauth/request_token.  The oauth_callback method is clearly there.  Why would it not be picking it up?

    Have you specified the callback URL when registering your application? Because "oob" means it takes the callback URL when the application was register?  Check documentation [here|https://streamwork.com/api/Call_StreamWork_through_consumer_application_to_get_a_request_token.html] If not, please do it.
    If you have done it and your application isn't working, there is an alternative to invoke the callback. You can send the callback URL itself instead of "oob". This overrides the callback URL specified during registration.
    So you can have something like:
    OAuth oauth_callback="http://myapp.com"
    Regards,
    Arpit

  • Qosmio X775 blue screen error Code 116 with OpenGL and video programs

    After updating windows I found that I was getting blue screen messages when I tried to use OpenGL in Photoshop or when I open Adobe After Effects and other video programs.
    The mini dump message is:
    ==================================================
    Dump File         : 072512-32151-01.dmp
    Crash Time        : 7/25/2012 8:46:34 PM
    Bug Check String  :
    Bug Check Code    : 0x00000116
    Parameter 1       : fffffa80`0b507010
    Parameter 2       : fffff880`0f39f4d4
    Parameter 3       : 00000000`00000000
    Parameter 4       : 00000000`00000002
    Caused By Driver  : nvlddmkm.sys
    Caused By Address : nvlddmkm.sys+19e4d4
    File Description  :
    Product Name      :
    Company           :
    File Version      :
    Processor         : x64
    Crash Address     : ntoskrnl.exe+7f1c0
    Stack Address 1   :
    Stack Address 2   :
    Stack Address 3   :
    Computer Name     :
    Full Path         : C:\windows\Minidump\072512-32151-01.dmp
    Processors Count  : 4
    Major Version     : 15
    Minor Version     : 7601
    Dump File Size    : 370,384
    ==================================================
    I've looked this up with no result. Can anyone help.  (Note: I am fairly literate but not a computer geek.)
    Sheilamacd
    Sheilamacd

    Hi there,
    Sorry for bringing this thread back up but I have the exact same laptop and the exact same problem. I believe I've had this problem since this thread has been posted, but have just come across this thread. I've done a factory reset through the built in recovery options but I still come across these errors (BSODs and graphical glitches, also from nvlddmkm.sys and 0x116 errors). Whenever I run a Furmark GPU stress test, the FPS is fine until I hear the fan turn on, which the frames then drop extremely low (5 fps or so). Once temperature of the GPU drops a bit and the fans turn off, the FPS rises again back to normal. This continues for awhile (dropping and going back up) until it crashes with an OpenGL error. I also did a Memtest to check my RAM, but it all checked out ok. At first I ordered a recovery disc because the recovery partition was not working for some reason (kept crashing/freezing). I tried it again recently and the recovery went through. I'm not quite sure if the built in recovery and the recovery media discs are different, but I'm hoping it will make a difference when it gets here. If the recovery disc does however not work, should I just assume its a hardware issue and send it to an ASP for repair? Extremely hesitant because of the high cost...Any help would be much appreciated. Been bothered by this issue for a month...

  • Please help : Pipline function, error passing parameter

    Hello,
    Please help a DBA who's trying to make it with PL/SQL (on Oracle 10.2.0.4).
    I'm just building a script to find the space used by all the segments (lob, index, partitions) related to a table.
    Here is my problem, when I call a table function (DBMS_SPACE.OBJECT_DEPENDENT_SEGMENTS) from within a pipeline function i get an error,
    if I turn that function into procedure it is running fine, if I hard code parameters it works...
    When running as a function I get the error :
    SQL> Select * from table(yke_size_info('SAPRD', 'REPOSRC'));
    Select * from table(yke_size_info('SAPRD', 'REPOSRC'))
    *+
    ERROR at line 1:
    ORA-20000: Object does not exist
    ORA-06512: at "SYS.DBMS_SPACE", line 2673
    ORA-06512: at "SYS.YKE_SIZE_INFO", line 40
    => line 40 is the call to DBMS_SPACE.OBJECT_DEPENDENT_SEGMENTS
    Thank for your help, I'm getting crazy with this, I've been browsing Google & docs for hoors but no answer yet !
    create or replace type r_size_info as object (
    nb_par_tbl   number ,
    nb_idx       number ,
    nb_par_idx   number ,
    nb_lob       number ,
    used_par_tbl number ,
    used_idx     number ,
    used_par_idx number ,
    used_lob     number ,
    free_par_tbl number ,
    free_idx     number ,
    free_par_idx number ,
    free_lob     number
    +)+
    +/+
    create or replace type t_size_info as table of r_size_info;
    +/+
    CREATE OR REPLACE FUNCTION yke_size_info(o_wner varchar2, o_bject varchar2 ) RETURN t_size_info PIPELINED AS
    r_size r_size_info := r_size_info(0,0,0,0,0,0,0,0,0,0,0,0);
    obj_segment_owner   VARCHAR2(100);
    obj_segment_name    VARCHAR2(100);
    obj_segment_type    VARCHAR2(100);
    obj_tablespace_name VARCHAR2(100);
    BEGIN
    FOR obj IN (SELECT segment_owner, segment_name, segment_type, tablespace_name FROM TABLE(dbms_space.object_dependent_segments(o_wner, o_bject, NULL, 1)))*
    LOOP
    If I change that line to hard code the parameter It's working :
    FOR obj IN (SELECT segment_owner, segment_name, segment_type, tablespace_name FROM TABLE(dbms_space.object_dependent_segments('SAPSR3', 'REPOSRC', NULL, 1)))
    If I turn the function into a procedure it is working :
    CREATE OR REPLACE PROCEDURE yke_size_inf(o_wner varchar2, o_bject varchar2 ) AS
    obj_segment_owner   VARCHAR2(100);
    obj_segment_name    VARCHAR2(100);
    obj_segment_type    VARCHAR2(100);
    obj_tablespace_name VARCHAR2(100);
    BEGIN
    FOR obj IN (SELECT segment_owner, segment_name, segment_type, tablespace_name  FROM (TABLE(dbms_space.object_dependent_segments (o_wner, o_bject, NULL, 1))))*
    LOOP

    Not really sure what you are trying to achieve... and putting a pipeline function on top of another pipeline function seems unnecessary to me.
    But using the basic code you've shown, the following works fine:
    SQL> create or replace type TStrings is table of varchar2(4000);
      2  /
    Type created.
    SQL>
    SQL> create or replace function FooPipe( objectName varchar2 ) return TStrings pipelined is
      2  begin
      3          for r in (
      4                  select
      5                          segment_owner, segment_name, segment_type, tablespace_name
      6                  from    table( dbms_space.object_dependent_segments(USER, objectName , NULL, 1))
      7          )
      8          loop
      9                  pipe row( r.segment_name||' is object('||r.segment_type||') in space('||r.tablespace_name||')' );
    10          end loop;
    11
    12          return;
    13  end;
    14  /
    Function created.
    SQL>
    SQL> select * from TABLE(FooPipe('TESTTAB'));
    COLUMN_VALUE
    TESTTAB is object(TABLE) in space(USERS)
    SQL>

  • New X1 Carbon DRIVER_POWER_STATE_FAILURE Blue screen error

    Just got my new X1 Carbon (20A7-CTO1WW) for less than a week, experienced a blue sceen error of death today. System is running the pre-loaded Windows 7 Professional. System has been updated with all latest drivers and BIOS.
    Using BlueScrrenView, the following are relevant information relating to the error:
    Bug Check String: DRIVER_POWER_STATE_FAILURE
    Bug Check Code: 0x0000009f
    Parameter 1: 00000000`00000003
    Parameter 2: fffffa80`0a114bf0
    Parameter 3: fffff800`00b9c3d8
    Parameter 4: fffffa80`18580150
    Caused By Driver: ntoskrnl.exe
    Caused By Address: ntoskrnl.exe+75bc0
    File Description: NT Kernel & System
    Product Name: Microsoft® Windows® Operating System
    File Version: 6.1.7601.18409 (win7sp1_gdr.140303-2144)
    Processor: x64
    Crash Address: ntoskrnl.exe+75bc0
    Can anyone assist?
    By the way, tried to install Microsoft hotfix 355256 but message shows the fix was already installed. So the error occurred while the fix was installed in the system.
    Thanks in advance.

    HERE'S WHAT THE BLUE SCREEN SAYS.
    A problem has been detected and windows has been shut down to prevent damage to your computer.
    DRIVER_POWER_STATE_FAILURE
    If this is the first time you've seen this stop error screen, 
    restart your computer.  If this screen appears again, follow
    these steps:
    Check to make sure any new hardware of software is properly installed.
    If this is a new installation, ask your hardware of software manufacturer 
    for any windows updates you might need.
    If problem continue, disable or remove any newly installed hardware
    or software, disable BIOS memory options such as caching or shadowing.
    If you need to use safe mode to remove or disable components, restart
    your computer, press F8 to select Advance Startup Options, and then
    select Safe Mode.
    Technical information:
    *** STOP 0X0000009F (0X000000000000003), 0XFFFFFA8006016050, 0XFFFFFA8006016050, 0
    XFFFFFA8005860010)
    Collecting data for crash dump...
    Initializing disk for crash dump...
    Beginning dump of physical memory.
    Dumping physical memory to disk: 100
    Physical memory dump complete.
    Contact your system admin or technical support group for further assistance.

  • How to XI error message will mapped to the SOAP faul message-SOAP(Axis)

    Hi,
      Receiver end I am using SOAP (Axis) adapter and I am getting the system error and I am not getting the payload in SXMB_MONI.
    What ever the error message how do MAP as a SOAP Fault message in SXMB_MONI.
    I found the Solution from OSS note 1039369 but did not explain where to set what parameter and what modules...
    SOAP Fault code
    If parameter Category is XIAdaptger, Area SOAP, Code FAULT
    In this case, parameters P1 and P2 may be set to the fault namespace and fault name. If these parameters are set, the SOAP fault code is set to namespace P1 and name P2. Otherwise, it is set as in other cases.
    For all other cases
    In this case, the SOAP fault code is set to namespace "http://sap.com/xi/XI/Message/30" and name category.area.code, where category, area, code represent the XI error category, area, and code values, respectively.
    SOAP detail
    If parameter ApplicationFault is set
    The SOAP detail child is set to the XI application payload. If, however, the payload extraction mode is set to Envelope, the application payload is taken as the SOAP envelope and the SOAP detail content is set to its body content. Similarly, if the extraction mode is set to Body, the application payload is taken as the SOAP body and the SOAP detail content is set to its content.
    Otherwise
    No SOAP detail content is set in this case.
    Examples
      XI error element
    <sap:Error ...>
      <sap:Category>XIAdapterFramework</sap:Category>
      <sap:Code area="MESSAGE">GENERAL</sap:Code>
      <sap:AdditionalText>Failed to determine a receiver agreement for the given message.</sap:AdditionalText>
    </sap:Error>
    SOAP fault element
    <soapenv:Fault>
      <faultcode xmlns:ns1="http://sap.com/xi/XI/Message/30">ns1:XIAdapterFramework.MESSAGE.GENERAL</faultcode>
      <faultstring>Failed to determine a receiver agreement for the given message.</faultstring>
      <detail/>
    </soapenv:Fault>
    Help appriciated
    Regards,
    Venu.
    Edited by: Venugopalarao Immadisetty on Sep 24, 2009 3:39 PM

    Using Receiver SOAP Axis adapter and I am getting the below exception
    XI error element
    <sap:Error ...>
    <sap:Category>XIAdapterFramework</sap:Category>
    <sap:Code area="MESSAGE">GENERAL</sap:Code>
    <sap:AdditionalText>Failed to determine a receiver agreement for the given message.</sap:AdditionalText>
    </sap:Error>
    and above exception how do I convert as a SOAP Fault message..
    SOAP fault element
    <soapenv:Fault>
    <faultcode xmlns:ns1="http://sap.com/xi/XI/Message/30">ns1:XIAdapterFramework.MESSAGE.GENERAL</faultcode>
    <faultstring>Failed to determine a receiver agreement for the given message.</faultstring>
    <detail/>
    </soapenv:Fault>
    Any idea what modules need to add in Receiver SOAP Axis adapter.

  • Error in generating LOVs

    I have a report and I have defined few parameters and I used one parameter to generate an LOV for the report.
    But it is giving me an error?..
    Paramter name: pName java.io.IOException: prepare query failed[nQSError: 27002] Near : Syntax error [nQSError: 26012] .
    it works SQL Developer when I hard code the parameter.

    I have under LOV Tab
    1.Names
    2.Departments
    Parameters as:
    pName - (parameter type-Menu , List of values -Names, ticked on- Refresh Other parameters on Change)
    pDept -(parameter type -menu, List of values -Departments, ticked on -Multiselect)
    and I used pName in the query for 'Departments' and addressed it as :pName in the query.
    Hope I gave a clear picture.
    I didnot understand the problem. is it with hardcoding?..because, this query qorked fine when I hardcoded

  • Blue Screen Error - DRIVER_IRQL_NOT_LESS_OR_EQUAL (Netwbw02.sys) - Satellite Laptop

    Hi, I have been getting blue screen errors the past couple days.
    The error says: DRIVER_IRQL_NOT_LESS_OR_EQUAL (Netwbw02.sys)
    Attached is the dump file. Let me know if you are able to open it. Any help would be appreciated!
    https://onedrive.live.com/redir?resid=B6AB1143124F198F%21442

    Which Satellite? There is a label on the bottom.
    Bug Check 0xD1: DRIVER_IRQL_NOT_LESS_OR_EQUAL
    Caused By Driver  : fvevol.sys         <---  BitLocker Drive Encryption Driver 
    If you saw Netwbw02.sys mentioned, give us some more .dmp files.
    ==================================================
    Dump File         : 020215-31750-01.dmp
    Crash Time        : 2/2/2015 2:14:04 PM
    Bug Check String  : DRIVER_IRQL_NOT_LESS_OR_EQUAL
    Bug Check Code    : 0x000000d1
    Parameter 1       : ffffd001`1c2c1000
    Parameter 2       : 00000000`00000002
    Parameter 3       : 00000000`00000001
    Parameter 4       : fffff801`9eff6874
    Caused By Driver  : fvevol.sys
    Caused By Address : fvevol.sys+15f6874
    File Description  :
    Product Name      :
    Company           :
    File Version      :
    Processor         : x64
    Computer Name     :
    Full Path         : C:\Test\020215-31750-01.dmp
    Processors Count  : 4
    Major Version     : 15
    Minor Version     : 9600
    ==================================================
    -Jerry

  • Blue screen error DRIVER_IRQL_NOT_LESS_OR_EQUAL when system boot after sleep.

    Hi,I have TOSHIBA LAPTOP with following specification.Product: Satellite P850Part No: PSPKBU-09V01S I am getting the attached error when the computer boot after put on sleep. Please provide solution if any. ==================================================
    Dump File         : 062715-17721-02.dmp
    Crash Time        : 27-06-2015 22:40:09
    Bug Check String  : DRIVER_IRQL_NOT_LESS_OR_EQUAL
    Bug Check Code    : 0x000000d1
    Parameter 1       : ffffffff`ffffffd0
    Parameter 2       : 00000000`00000002
    Parameter 3       : 00000000`00000000
    Parameter 4       : fffff880`00e4639c
    Caused By Driver  : Wdf01000.sys
    Caused By Address : Wdf01000.sys+3239c
    File Description  :
    Product Name      :
    Company           :
    File Version      :
    Processor         : x64
    Crash Address     : ntoskrnl.exe+748c0
    Stack Address 1   :
    Stack Address 2   :
    Stack Address 3   :
    Full Path         : C:\windows\Minidump\062715-17721-02.dmp
    Processors Count  : 8
    Major Version     : 15
    Minor Version     : 7601
    Dump File Size    : 304,728
    Dump File Time    : 27-06-2015 22:40:54
    ==================================================  

     
    Satellite P850 (PSPKBU-09V01S)
    Similar to this model.
    Satellite P850-ST2GX2 (PSPKBU-05601S)
    Downloads here.
    Bug Check 0xD1: DRIVER_IRQL_NOT_LESS_OR_EQUAL
    Caused By Driver  : Wdf01000.sys    <--- a Microsoft Kernel Mode driver
    Check out a few more dmp files and see if another bug check or driver is mentioned.
    This occurs on resuming from sleep, right? Does it also occur when resuming from hibernation?
    What do you use for anti-malware protection?

  • Error trying to publish (real time) to delivery: No response from remote execute trying to save assettype [error was -103].

    Hi all,
    I'm trying to publish for first time to a new environment (delivery).
    The light of target destination is green.
    When i click on "inicialize" i get these errors and in the docs i cannot find why or what i have to do.
    Trying to publish asset types during inicialization it returns this error:
    No response from remote execute trying to save assettype [error was -103].
    Looking for the meaning for this i found: No table. What does it mean? Why the tool has not created the table?
    And then, the next error message is shown (all of them are shown in the same screenshot) trying to mirroring. It might have to do with the previos error message... but i have no idea!
    -12011. No response from remote execute trying to save assettype [error was -103]
    sites.log in delivery environment says as follows
    [2014-01-24 12:13:52,496 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.db] SQLException loading table definition for SiteCatalog with state HY000: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    java.sql.SQLException: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    [2014-01-24 12:13:52,527 CET] [ERROR] [.kernel.Default (self-tuning)'] [com.fatwire.logging.cs] ContentServer exception running CS recursively
    COM.FutureTense.Common.ContentServerException: pagename not supplied  Error code:BAD PARAMETER
    [2014-01-24 12:13:52,543 CET] [ERROR] [.kernel.Default (self-tuning)'] [logging.cs.satellite.request] Error accessing the external page with pmd: page: ?Browser=Unknown  Browser&SystemAssetsRoot=/dlv/futuretense_cs/&errdetail=0&errno=0&null= &pagename=fatwire/wem/sso/casInfo
    [2014-01-24 12:13:52,543 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.request] COM.FutureTense.Common.ContentServerException: ContentServerException: (Reading page page: ?Browser=Unknown  Browser&SystemAssetsRoot=/dlv/futuretense_cs/&errdetail=0&errno=0&null= &pagename=fatwire/wem/sso/casInfo from co-resident Content Server failed (errno=0).) Error code:GENERIC SERVER ERROR
    [2014-01-24 12:14:06,021 CET] [ERROR] [.kernel.Default (self-tuning)'] [fatwire.logging.cs.db] SQLException loading table definition for SystemInfo with state HY000: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    java.sql.SQLException: [FMWGEN][SQLServer JDBC Driver]Object has been closed.
    Does anybody know how to help here?
    Thank you very much.
    Gala

    What SQL server driver are you using, Microsoft's or the jTDS driver (see jTDS JDBC Driver)? It may be worth trying the other.
    Also, can you enable
    com.fatwire.logging.cs=DEBUG
    in log4j.properties and retest, then post the entire resulting sites.log and application server log somewhere for us to see? e.g somewhere like pastebin.com
    Phil

  • BSOD Error Windows 2008 R2 Terminal Server

    Hi guys
    I have a unique issue on a Windows 2008 R2 Enterprise Terminal Server where it keeps blue screening every so often (from every 2 or 3 days to some times once a week) with the exact same BSOD error. After countless hours Googling and researching I am simply
    at a dead end and desperately require some guidance if possible. I have ran malware bytes and other tools and the TS does not have any malware or viruses. I have ran a chkdsk and everything is also okay with that.
    It has happened about 5 times now with the same errors every time:
    29/05/2014 09:42:18
    Bug Check String: CRITICAL_OBJECT_TERMINATION
    Bug Check Code: 0x000000f4
    Parameter 1: 00000000`00000003
    2: fffffa80`243c5060
    3: fffffa80`243c5340
    4: fffff800`01bc70d0
    Caused by driver: ntoskrnl.exe
    Caused by address: ntoskrnl.exe+75b80
    Processor: x64
    I have uploaded the DMP to OneDrive: edit: it won't let me post a link until my account is verified?
    Thanks
    Dan

    Hi,
    Thank you for posting in Windows Server Forum.
    The problem which you are facing seems to be due to ntoskrnl.exe. There might be some corruption in ntoskrnl.exe file.It’s responsible for various system services such as hardware virtualization, process and memory management, thus making it a fundamental part
    of the system. It contains the cache manager, the executive, the kernel, the security reference monitor, the memory manager, and the scheduler.
    Please check below articles to fix the issue of ntoskrnl.exe.
    1. NTOSKRNL.EXE is missing or corrupt
    2. How to Fix Ntoskrnl.exe Missing or Corrupt Error
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Reliability monitor reports hardware error

    was going through my event viewer to try and find a glitch I've been having. came across an entry in the reliability viewer that has me concerned. excuse the mess below but your editor won't let me clean it up
    Source
    Windows
    Summary
    Hardware error
    Date
    10/16/2014 6:47 PM
    Status
    No solution available
    Description
    <dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir><dir></dir></dir></dir></dir></dir><dir></dir></dir></dir></dir><dir><dir></dir></dir></dir></dir><dir><dir><dir></dir></dir></dir></dir></dir><dir><dir><dir><dir></dir></dir></dir></dir></dir></dir><dir><dir><dir><dir><dir></dir></dir></dir></dir></dir></dir></dir><dir><dir><dir><dir><dir><dir></dir></dir></dir></dir></dir></dir></dir></dir><dir><dir><dir><dir><dir><dir><dir></dir></dir></dir></dir></dir></dir></dir></dir><dir></dir></dir><dir></dir></dir><dir></dir></dir><dir></dir></dir><dir></dir></dir><dir></dir></dir><dir></dir></dir><dir></dir></dir><dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir>
    A problem with your hardware caused Windows to stop working correctly.
    </dir>
    Problem signature
    <dir>
    </dir><dir></dir><dir></dir><dir>
    Problem Event Name: LiveKernelEvent
    Code: 141
    Parameter 1: ffffe000a23574d0
    Parameter 2: fffff8010d748dac
    Parameter 3: 0
    Parameter 4: 33b8
    OS version: 6_3_9600
    Service Pack: 0_0
    Product: 256_1
    OS Version: 6.3.9600.2.0.0.256.48
    Locale ID: 1033
    </dir>

    ZigZag3143x
    28,210
    Points
    Top 0.5
    ZigZag3143x        
    MCC, MVP        
    Joined  Apr 2009        
    5
    9
    20
    ZigZag3143x's threads
    Show activity
    I just deleted the post of the error file. When I posted it, it came up with a photo of a moon. Even though when I looked at it in onedrive it opened the log file.  trying again.https://onedrive.live.com/redir?resid=2C896D862E3B4B36!6188&authkey=!ABHRn3oDiA7wdn8&ithint=file%2cevtx

Maybe you are looking for

  • Displaying date/time in the report of last updating data?

    Hi, I have produced a report over a multiprovider. The multiprovider is built up from tow cubes. The data is being updated to one cube each hour and to the another cube one time daily. The date/time that display in the report is for the last updating

  • Query for fully payment made against invoice

    Dear, We have requirement to find out those invoices which payment has not been fully made. Here I mentioned query, please verify either is correct or need to add any other criteria. Select * from ap_invoices_all where invoice_amount <> amount_paid -

  • Database Adapter - Dynamic where clause

    The database adapter needs to support a search facility. The user can search by any one of the following 1) Date Range 2) Primary Keys 3) user who created Based on the above options, a query needs to be dynamically created in Database adapter Date Ra

  • Scheduling Agreements without MRP

    Hi ! I have a depot scenario wherein the organization doesnt have MRP runs  configured. Can we by any way configure Scheduling Agreements for customers, the basic purpose of which will be automatic creation or otherwise proposal of  creation of deliv

  • With the recent software update, will my Nano 6th work in my 2011 Impreza?

    I've been waiting for the update as the Nano 6th doesn't have full features in the car. Richard