System.NullReferenceException using C#

Hi,
I'm trying to write a client application using C# and .Net Framework 2 with Tuxedo 11gR1 and Microsoft Visual Studio 2008. I don't have access to the server but I know the WSNADDR, services names and input/output FML buffers. I also know there is an older version of Tuxedo in the server because a I have to use "WSINTOPPRE71=yes". The question is I can get results from some services, but with others all I've got is an Exception:
System.NullReferenceException
at Bea.Tuxedo.ATMI.AppContext.WrapRawBuffer(TypedBufer& tb, IntPtr buff, Int64 datalen, Int64 flags)
at Bea.Tuxedo.ATMI.AppContext.tpcall(String svc, TypedBuffer idata, TypedBuffer& odata, Int64 flags).
I can create the application context using ac = AppContext.tpinit(tpinfo), and indicating ctlname, usrname and password in tpinfo, but ac.tpcall throws this exception. If I use tpacall, the exception is thrown with tpgetrply.
Any idea?
Thanks.

Hi again.
I've been using .NET Reflector to see where the exception is thrown. The question is tpcall calls the function
private void WrapRawBuffer(ref TypedBuffer tb, IntPtr buff, long datalen, long flags)
and this calls
internal static bool GetTypedBufferInfo(IntPtr buffer, out long size, out string type, out string stype, int flags)
I was using tpcall with no flags (TPNOFLAGS) and this was causing the execution of the next fragment of code:
if (!(tb.Type.Equals(str) && tb.Subtype.Equals(str2)))
When the service didn't find any record, tb.Subtype was a zero length string, but str2 was null, so this throws a NullReferenceException.
Although I suppose this is not the best solution, I'm using now the value 257 for flags, ant it's working.
Maybe a bug in libwscdnet.dll version 0.9.1087.4?

Similar Messages

  • SQL CLR Table-Valued Function System.NullReferenceException

    Good day.
    I wrote a clr table-valued function that gets the data from the sharepoint list using the client model.
    Sometimes I get exception (When I calling this function I get 90000 rows and then I get this exception...):
    Msg 6260, Level 16, State 1, Line 1
    An error occurred while getting new row from user defined Table Valued Function :
    System.NullReferenceException: Object reference not set to an instance of an object. System.NullReferenceException: v at SDS.FillRow(Object obj, SqlInt32& month, SqlString& datePlanSalary, SqlString& dilerCode, SqlString& dilerName, SqlString&
    model, SqlInt32& countSalary).
    How can I fix this issue?
    My Code:
    public class SDS
    [SqlFunction(SystemDataAccess = SystemDataAccessKind.Read, FillRowMethodName = "FillRow")]
    public static IEnumerable SDSItems(SqlString url, SqlString listName)
    ClientContext context = new ClientContext(url.ToString());
    List list = context.Web.Lists.GetByTitle(listName.ToString());
    CamlQuery query = new CamlQuery();
    query.ViewXml = "<View/>";
    ListItemCollection listItems = list.GetItems(query);
    context.Load(list);
    context.Load(listItems);
    context.ExecuteQuery();
    return listItems;
    public static void FillRow(
    object obj,
    out SqlInt32 month,
    out SqlString datePlanSalary,
    out SqlString dilerCode,
    out SqlString dilerName,
    out SqlString model,
    out SqlInt32 countSalary
    item = (ListItem)obj;
    month = Convert.ToInt32(item["_x041c__x0435__x0441__x044f__x04"]);
    datePlanSalary = Convert.ToString(item["_x0414__x0430__x0442__x0430__x000"]);
    dilerCode = Convert.ToString(item["_x041a__x043e__x0434__x0020__x04"]);
    dilerName = Convert.ToString(item["_x041d__x0430__x0437__x0432__x04"]);
    model = ((FieldLookupValue)item["_x041c__x043e__x0434__x0435__x04"]).LookupValue;
    countSalary = Convert.ToInt32(item["_x041a__x043e__x043b__x0438__x04"]);

    That's not a lot of information to go on, but...
    Can you put a check in your FillRow method for a null object (or one of your fields being null) and put out diagnostic information? Or is it happening in the ListItemCollection iterator itself? (i.e. before it returns a row back to FillRow). If it's happening
    in the iterator, perhaps you could subclass it and return diagnostics at that point.
    I'm also wondering (if it actually always happen at row 90000) if you're hitting a limit in web service call, or iterator, or UDF code. Does the function ever return more than 90000 rows successfully?
    Hope this helps, Bob

  • System.NullReferenceException

    Hello,
    I tried to call a simple RFC-function using the .Net-Connector. The Wizard generates "SAPProxyDll1.sapwsdll" which contains the following void:
    public void Z_Vb_Test_Fg_Called_By_Vb (
            object[]results = null;
            results = this.SAPInvoke("Z_Vb_Test_Fg_Called_By_Vb",new object[] {
            return;
    When I call this void by clicking a button in my Windows-Form (whithout making any changes at the rest of the coding) the following Error appears:
    "An unhandled exception of type 'System.NullReferenceException' occurred in sap.connector.dll
    Additional information: Object reference not set to an instance of an object."
    Do I have to make any changes at the automatically generated coding, or what is the problem?
    Thanks a lot.
    Jochen

    Hello,
    thanks for your answer. The problem was that my connection didn't work properly, but now it works.
    Best regards
    Jochen

  • System.Nullreferenceexception Problem

    Hi,
    this is my problem, I've developed a web application with .NET 2.0.
    On my pc the oracle client is 9.2.0.1.0 .
    All works fine, on my pc, I try to run the application into another server, that connects to another DB (the DB are the same of mine) and this error appers...on a simply query the result is null
    Line 664: while (Record.Read())
    Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
    Isn't a problem of data in DB, alla data are correct
    the only difference with my environment is the client... 9.2.0.1.0 on my pc.....9.0.2.0.6 on the other PC......please help!

    this is the code of OracleDataReader and an example of use it.....
    public OracleDataReader GetRecordFromOracleDb(string SQLQueryString)
    OracleDataReader Record = null;
    //string OracleConnString = ConfigurationSettings.AppSettings["OracleDbConnectionString"];
    string OracleConnString = ConnectionString;
    OracleDbConnection = new OracleConnection(OracleConnString);
    try
    OracleDbConnection.Open();
    Oracle.DataAccess.Client.OracleCommand oracleCommand = new OracleCommand(SQLQueryString, OracleDbConnection);
    try
    Record = oracleCommand.ExecuteReader();
    catch (Exception Ex)
    string Message = "Exception raised: " + Ex.Message;
    catch (Exception e)
    string Message = "Exception raised: " + e.Message;
    //OracleDbConnection.Close ();
    return Record;
    OracleDataReader Record = GetRecordFromOracleDb(SQLQueryString)
    while (Record.Read())
    In the environment where oracle client 9.2 is installed all works fine.....where ther is 9.0 it doesn't work....

  • MSI Gamin App doesn't start (System.NullReferenceException)

    Hello, I've got:
    - Gaming App version 4.0.0.05 (just downloaded)
    - MSI GTX 960 Gaming 2G, S/N: 602-V320-02SB1502018592
    - Windows 7 Pro x64
    - .NET Framework 4.0 and 4.5.2
    The Gaming App doesn't start for me (it just dies without showing any window, only a notification icon appears for a second). In Windows event viewer, I see this:
    Error: System.NullReferenceException
    Call stack:
       in Gaming_APP.Class_Fun_MB.GetWMI()
       in Gaming_APP.Class_Fun_MB.Compare_Support _MB(System.Collections.Generic.List`1<System.String>)
       in Gaming_APP.App.Application_Startup(System.Object, System.Windows.StartupEventArgs)
       in System.Windows.Application.OnStartup(System.Windows.StartupEventArgs)
       in System.Windows.Application.<.ctor>b__1(System.Object)
       in System.Windows.Threading.ExceptionWrapp er.InternalRealCall(System.Delegate, System.Object, Int32)
       in MS.Internal.Threading.ExceptionFilterHe lper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
       in System.Windows.Threading.DispatcherOper ation.InvokeImpl()
       in System.Windows.Threading.DispatcherOper ation.InvokeInSecurityContext(System.Object)
       in System.Threading.ExecutionContext.RunIn ternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       in System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
       in System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
       in System.Windows.Threading.DispatcherOper ation.Invoke()
       in System.Windows.Threading.Dispatcher.Pro cessQueue()
       in System.Windows.Threading.Dispatcher.Wnd ProcHook(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
       in MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
       in MS.Win32.HwndSubclass.DispatcherCallbac kOperation(System.Object)
       in System.Windows.Threading.ExceptionWrapp er.InternalRealCall(System.Delegate, System.Object, Int32)
       in MS.Internal.Threading.ExceptionFilterHe lper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
       in System.Windows.Threading.Dispatcher.Leg acyInvokeImpl(System.Windows.Threading.DispatcherPrio rity, System.TimeSpan, System.Delegate, System.Object, Int32)
       in MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)
       in MS.Win32.UnsafeNativeMethods.DispatchMe ssage(System.Windows.Interop.MSG ByRef)
       in System.Windows.Threading.Dispatcher.Pus hFrameImpl(System.Windows.Threading.DispatcherFram e)
       in System.Windows.Threading.Dispatcher.Pus hFrame(System.Windows.Threading.DispatcherFram e)
       in System.Windows.Threading.Dispatcher.Run()
       in System.Windows.Application.RunDispatche r(System.Object)
       in System.Windows.Application.RunInternal(System.Windows.Window)
       in System.Windows.Application.Run(System.Windows.Window)
       in Gaming_APP.App.Main()
    Guessing by the name "Class_Fun_MB.GetWMI()", it might have something to do with WMI. The WMI itself seems to be working fine: my event viewer shows no error regarding it, and I can run wmic.exe and execute commands like "PROCESS get Caption,Commandline,Processid"...
    The other application (MSI afterburner) works just fine, but it's way too scary for me to use, and I'd really like to have the Gaming App working - please help!

    I'm using a hp z230 tower workstation, with LGA-1150/i7 4771 processor, PCH C226 chipset, and 16GB RAM (can't post external link to hp page).
    I tried reinstalling Gaming App, etc. but to no avail.
    Except that, I have no other problems with the PC or graphics card. Played Witcher3 for several hours - all smooth and stable.

  • Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. I have a wndiws 7 system and use a Intel core processor. I have restarted several times and still ge this

    Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. I have a wndows 7 system and use a Intel core processor. I have restarted several times and still ge this error. I have also tried to reinstall firefox and get the same error
    == This happened ==
    Every time Firefox opened
    == today ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDS; InfoPath.2; .NET4.0C; AskTbUT2V5/5.8.0.12304)

    <u>'''Kill Application'''</u>
    In Task Manager, does firefox.exe show in the <u>'''Processes'''</u> tab?
    See: [http://kb.mozillazine.org/Kill_application Kill Application]
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    [[Firefox hangs]]
    [http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit]
    [[Firefox is already running but is not responding]]
    <u>'''Safe Mode'''</u>
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes <u>'''before'''</u> starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it by enabling <u>'''one at a time'''</u> until the problem reappears. <u>'''You MUST close and restart Firefox after EACH change'''</u> via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.

  • HT1206 I need a work iTunes account for my work system, but used my work email address as an associated email to my personal iTunes account. Now I can't use the work email to create the new iTunes account.  how do I remove the email from my personal accou

    Since I upgraded to Mavericks from Snow Leopard I need a work iTunes account for my work system, but used my work email address as an associated email to my personal iTunes account.
    Now I can't use the work email to create the new iTunes account.  how do I remove the email from my personal account?

    You can long into an account via this page and update the email addresses that you have on it : http://appleid.apple.com

  • Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. --- System.NullReferenceException: Object reference not set to an instance of an object

    Hi,
    (1) I am trying to get the data from a database table and import into a text file.
    (2) If the record set have the data then it runs ok
    (3) when the record set not having any data it is giving the below error
    Error: System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object
    Could you please let me know why this is happening?
    Any help would be appriciated
    Thanks,
    SIV

    You might ask them over here.
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral%2Ccsharpgeneral%2Cvcgeneral&filter=alltypes&sort=lastpostdesc
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • System copy using SAPInst(Export Import database Independent prcoess failed

    Hello ,
    I am doing a System copy using SAPInst export/import process .
    Source system : SAP Netweaver'04( BW 3.5 , Kernel : UC 640 ,Patch level 196 )
    Export process fails at Phase 2 -  Database Export at R3load jobs running 1,waiting 0 . Below is the log details
    SAPSDIC.log
    (EXP) INFO:  entry for BAPICONTEN                        in DDNTT is newer than in DDNTT_CONV_UC: 20040211101817 > 20000621155733
    (EXP) INFO:  entry for BAPICONTENT255                    in DDNTT is newer than in DDNTT_CONV_UC: 20040211101817 > 20031127161249
    (EXP) INFO:  entry for BAPICONVRS                        in DDNTT is newer than in DDNTT_CONV_UC: 20040211101817 > 20010131174038
    (EXP) INFO:  entry for BAPICREATORDATA                   in DDNTT is newer than in DDNTT_CONV_UC: 20040211101817 > 20000621155733
    (EXP) INFO:  entry for BAPICRMDH1                        in DDNTT is newer than in DDNTT_CONV_UC: 20051229175654 > 20031211120714
    (EXP) INFO:  entry for BAPICRMDH2                        in DDNTT is newer than in DDNTT_CONV_UC: 20051229175654 > 20031211120714
    (EXP) INFO:  entry for BAPICRMEXP                        in DDNTT is newer than in DDNTT_CONV_UC: 20051229175513 > 20031211120627
    (EXP) INFO:  entry for BAPICRMEXT                        in DDNTT is newer than in DDNTT_CONV_UC: 20051229175514 > 20031211120627
    (EXP) INFO:  entry for BAPICRMKEY                        in DDNTT is newer than in DDNTT_CONV_UC: 20051229175654 > 20031211120714
    (EXP) INFO:  entry for BAPICRMKEY_T                      in DDNTT is newer than in DDNTT_CONV_UC: 20051229175835 > 20031211120803
    (EXP) INFO:  entry for BAPICRMMSG                        in DDNTT is newer than in DDNTT_CONV_UC: 20051229175654 > 20031211120714
    (EXP) INFO:  entry for BAPICRMMSG_T                      in DDNTT is newer than in DDNTT_CONV_UC: 20051229175835 > 20031211120803
    (EXP) INFO:  entry for BAPICRMOBJ                        in DDNTT is newer than in DDNTT_CONV_UC: 20051229175514 > 20031211120628
    (EXP) INFO:  entry for BAPICRMPAREX_T                    in DDNTT is newer than in DDNTT_CONV_UC: 20051229175452 > 20031211120305
    (EXP) INFO: limit reached, 5000 tables in DDNTT are newer than in DDNTT_CONV_UC
    (EXP) INFO: NameTab check finished. Result=2  #20100113131216
    (EXP) INFO: check for inactive NameTab entries: Ok.
    (RSCP) INFO: I18N_NAMETAB_TIMESTAMPS not in env: checks are ON (Note 738858)
    (DB) INFO: disconnected from DB
    D:\usr\sap\B35\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    D:\usr\sap\B35\SYS\exe\run/R3load.exe: END OF LOG: 20100113131216
    ***SAPCLUST.log ****
    (NT)  Warn:  EDIDOC: normal NameTab from 20040211095029 younger than alternate NameTab from 20000621155733!
    (EXP) TABLE: "EDIDOC"
    (NT)  Warn:  PCDCLS: normal NameTab from 20040211095029 younger than alternate NameTab from 20000621155733!
    (EXP) TABLE: "PCDCLS"
    (NT)  Warn:  SFHOA: normal NameTab from 20040211095029 younger than alternate NameTab from 20000621155733!
    (EXP) TABLE: "SFHOA"
    (NT)  Warn:  SFHYT: normal NameTab from 20040211095029 younger than alternate NameTab from 20000621155733!
    (EXP) TABLE: "SFHYT"
    (NT)  Warn:  UMG_TEST_C: normal NameTab from 20040211095029 younger than alternate NameTab from 20031113150115!
    (EXP) TABLE: "UMG_TEST_C"
    myCluster (55.22.Exp): 712: error when retrieving alternate nametab description for physical table UMG_TEST_F.
    myCluster (55.22.Exp): 713: return code received from nametab is 32
    myCluster (55.22.Exp): 299: error when retrieving physical nametab for table UMG_TEST_F.
    (CNV) ERROR: data conversion failed.  rc = 2
    (RSCP) INFO: I18N_NAMETAB_TIMESTAMPS not in env: checks are ON (Note 738858)
    (DB) INFO: disconnected from DB
    D:\usr\sap\B35\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    D:\usr\sap\B35\SYS\exe\run/R3load.exe: END OF LOG: 2010011312563
    Please suggest.
    Thanks & Regards
    Ganesh

    Is your DB unicode?  If so, did you select the unicode flag in sapinst?
    This [thread|System Copy Error while exporting ABAP; might offer some help.
    -Zach

  • What is the logical system name used for in R/3?

    We have a R/3 server. The production client has a logical system name. What is the logical system name used for?
    Tony Tam

    Hi Tony
    Following Links will help you in understanding the concept
    http://benstudycenter.blogspot.com/2008/02/logical-system.html
    http://help.sap.com/saphelp_sm32/helpdata/en/78/217dc151ce11d189570000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_sm32/helpdata/en/78/217dc151ce11d189570000e829fbbd/frameset.htm
    thanks
    Bhudev

  • Scenario is HTTP to db. In HTTP client, when Sender is Business Component, Pi is getting data successfully but when Business system is used as sender Pi is not getting any message in sxi monitor. Please help

    Scenario is HTTP to db. In HTTP client, when Sender is Business Component, Pi is getting data successfully but when Business system is used as sender Pi is not getting any message in sxi monitor. Please help

    Hi Ankita,
    Try to trace at ICM level, Go to smicm transaction
    Set level to 3.
    Later send your request. Finally trace the request in:
    When you have seen the log, check if any exception is raised with your request or the request and share it here.
    Regards.

  • ABAP+JAVA system copy using 3rd party export/import tools

    Hi all,
    I am trying to do a homogenous system copy.  I am following the syscopy guide for SAP NW 7.0 SR3 ABAP+JAVA systems
    We are running AIX 5.L and Oracle.
    My question is this.  We are using an IBM XiV system for our disk storage, and we are able to restore from "snaps" which is their version of images.  Does anyone know if it is possible to restore or "import" the data in a system copy using an outside tool like this?  If so, do you have any information on how to?
    I know it is possible to restore the database from an offline backup using BRTools rather than r3load and jload, and I just wanted to see if I can restore from a snap as it would save a lot of time in the procedure.
    Any help or ideas would be much appreciated.
    Thanks!

    >My question is this.  We are using an IBM XiV system for our disk storage, and we are able to restore from "snaps" which is their version of images.  Does anyone know if it is possible to restore or "import" the data in a system copy using an outside tool like this?  If so, do you have any information on how to?
    That approach is not supported.
    The reason is: combined instances write the instance name and hostname in various places, on the filesystem in .properties files, in the JDBC configuration, depending on the java applications you run on top in various other places. What you're trying to do is effectively "renaming" an instance.
    Technically it's possible to do it and to get it run, yes, but the supported way is running sapinst and choose ABAP + Java system copy. This will prevent you from lots of (not really documented) manual work after the copy.
    Markus

  • Download of pdf to our local system by using classes in webdynpro abap

    hi,
    I createa an application ,in that i converted Smartform to Pdf.I want to download the generated pdf to our local system by using "cl_wd_runtime_services" because we cant directly use FM GUI_DOWNLOAD directly.So can any one please tell me the process.

    Hi ,
    see the below code..
    call function 'CONVERT_OTF'
          exporting
            format                = 'PDF'
          importing
            bin_filesize          = pdf_size
            bin_file              = LV_PDF
          tables
            otf                   = lt_otfdata[]
            lines                 = l_dummy
          exceptions
            err_max_linewidth     = 1
            err_format            = 2
            err_conv_not_possible = 3
            others                = 4.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
          with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.
    lv_string = filename
    cl_wd_runtime_services=>attach_file_to_response(
          i_filename  =  LV_STRING
          i_content   = lv_pdf
          i_mime_type = 'pdf/application'
          i_in_new_window = abap_false
          i_inplace       = abap_false ).
    this will open a popup same as when u download some file...
    Regards
    Yash

  • [32282.000367] firefox:2114 freeing invalid memtype c02f2000-c0302000 I get this from system log using latest version of Firefox: What kind of problem is this?

    I get this from system log using latest version of Firefox:
    [32282.000367] firefox:2114 freeing invalid memtype c02f2000-c0302000
    What kind of problem is this?
    Anyway Firefox seem to be working correct. I would like to be sure that it'snt a security problem.

    Thanks a lot for your swift response. And sorry if it was a bit too hectic to go through my detailed query (which I did because it was misunderstood when I asked previously). As I've mentioned above, I was informed that updating to 5.0.1 would '''require''' me to '''delete''' the current version and then install the new one. And doing so will involve losing all my bookmarks. I guess I should have been more specific and detailed there. By losing, I didn't mean losing them forever. I'm aware that they're secured in some place and deleting and installing the software doesn't harm its existence. What I meant that if I install the new version, I'd have to delete the old one. And after installing the new version, I'd have to transfer them (bookmarks) back from wherever they are. Get it? When it updated from 3.6.9 to 3.6.13, and from 3.6.13 to 3.6.18, I didn't need to follow that process. They were already present on their own.
    BTW, I'm having no problems with 3.6.18 but after learning about the existence of version 5.0.1, I'm a bit too eager to lay my hands over it.
    Thanks for your help; hope this wasn't extremely long.

  • Unable to create File System Repository using Network Path

    Hi All,
    I am trying to create a File System Repository.
    I created a networkpath and windows system and used the same while creating File Repository according to the steps in help.
    With out using Networkpath(i.e.,If I use IP address,I am able to create File System Repository).
    But with the network path,it throws the following error as seen in Component Monitor.
    <b>Startup Error:    The localroot does not exist: C:\usr\sap\IGTE\j2ee\j2ee_00\cluster\server\NWP_001
    My network path is NWP_001
    </b>
    Did any one face this problem?
    Any help please........
    Rgds,
    Santhosh

    Hi,
    I am getting the same error even if I replace(\) by slashes(/).
    I tried on EP6SP12 as well as EP6SP2 and got the same error on both.
    The repository is searching for a folder named with
    n/w path on the portal server itself(i.e, it is searching in the following folder
    <b>C:\usr\sap\IGTE\j2ee\j2ee_00\cluster\server\NWP_001
    My network path is NWP_001</b>),instead of searching on the remote system.
    Can any one help me in solving the problem
    Thanks in Advance.
    Rgds,
    Santhosh

Maybe you are looking for

  • Batch Stock with Charcteristics

    Where i can see the stock of batches with its charecteristics... In MMBE we can see the batch number and if we click on batch we get the charectristics .........\ But i want report where i can see the stocks with its batch number and Charachtreristic

  • Problems with webgallery

    while creating a photo web gallery in dreamweaver (commands - create photo web album) an error occurs - when I browse pics by choosing my images folder, program says it's empty! It cant see the files! these are normal jpg and adding these pics worked

  • Installing trial version of Ps

    hey there, I'm trying to install the trial version on my WinXP and the install freezes at 11%. I want to use Ps to ramp up the photos on my web store but I need to make sure it will do what I need it to before I drop $400 on the sofware. Are there an

  • How can I download photos from iCloud to my photo albums in my ipad

    HHow can I download my photos from icloud to my photo albums on my ipad

  • Share iMac screens

    I have 2013 iMac and an old 2008 iMac. i want to share screens, as if the 2008 iMac were an external monitor. Pertinent data: 2008 imac      3.06 GHz Intel core 2 duo      4 GB 800 Mhz DDR 2 Dram      NVIDIA GeForce 8800 GS 512MB      OS X 10.9.3 201