Error with get(Home)Handle

Hello
i have deployed an ejb on the sun one server and l can invoke all the methods i need on this EJB . But when i try to invoke the method getHandle or getHomeHandle or getEJBMetaData, i have this error on the server : (this error is with getHandle but it is the same with the two others methods)
org.omg.CORBA.BAD_OPERATION: The delegate has not been set! vmcid: 0x0
minor c
ode: 0 completed: No
at org.omg.CORBA.portable.ObjectImpl._get_delegate(ObjectImpl.java:53)
at com.sun.corba.ee.internal.iiop.CDROutputStream_1_0.write_Object(CDROu
tputStream_1_0.java:571)
at com.sun.corba.ee.internal.iiop.CDROutputStream.write_Object(CDROutput
Stream.java:227)
at com.sun.org.omg.CORBA.IDLTypeHelper.write(IDLTypeHelper.java:70)
at com.sun.org.omg.CORBA.ValueMemberHelper.write(ValueMemberHelper.java:
140)
at com.sun.org.omg.CORBA.ValueMemberSeqHelper.write(ValueMemberSeqHelper
.java:83)
at com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescriptionHelper.writ
e(FullValueDescriptionHelper.java:193)
at com.sun.org.omg.SendingContext._CodeBaseImplBase._invoke(_CodeBaseImp
lBase.java:85)
at com.sun.corba.ee.internal.corba.ServerDelegate.dispatch(ServerDelegat
e.java:379)
at com.sun.corba.ee.internal.iiop.ORB.process(ORB.java:275)
at com.sun.corba.ee.internal.iiop.RequestProcessor.process(RequestProces
sor.java:83)
at com.iplanet.ias.corba.ee.internal.iiop.ServicableWrapper.service(Serv
icableWrapper.java:25)
at com.iplanet.ias.util.threadpool.FastThreadPool$ThreadPoolThread.run(F
astThreadPool.java:283)
at java.lang.Thread.run(Thread.java:536)
and on the client :
java.rmi.MarshalException: CORBA MARSHAL 1398079699 Maybe; nested exception
is:
org.omg.CORBA.MARSHAL: Unable to read value from underlying bridge : Can't
skip sender's custom marshaled class:
RMI:com.sun.ejb.portable.HandleImpl:7969D1B587E037EF:27329270E7B1269F
vmcid: SUN minor code: 211 completed: Maybe
at com.sun.corba.se.internal.iiop.ShutdownUtilDelegate.mapSystemException
(ShutdownUtilDelegate.java:97)
at javax.rmi.CORBA.Util.mapSystemException(Util.java:65)
at Test02Stub.getHandle(Unknown Source)
at Test01.main(Test01.java:48)
Caused by: org.omg.CORBA.MARSHAL: Unable to read value from underlying
bridge : Can't skip sender's custom marshaled class:
RMI:com.sun.ejb.portable.HandleImpl:7969D1B587E037EF:27329270E7B1269F
vmcid: SUN minor code: 211 completed: Maybe
at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_value
(CDRInputStream_1_0.java:944)
at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_abstract_interface
(CDRInputStream_1_0.java:850)
at com.sun.corba.se.internal.iiop.CDRInputStream_1_0.read_abstract_interface
(CDRInputStream_1_0.java:842)
at com.sun.corba.se.internal.iiop.CDRInputStream.read_abstract_interface
(CDRInputStream.java:309)
at Test02Stub.getHandle(Unknown Source)
... 1 more
It seems that there is a probleme with serialization ...
I have the same JDK on the server and on the client.
Can someone explain me please the problem ?
Thank you very mutch
olivier

Hi,
       For advanced search view, you should manually specify the super class to your view controller as the advanced search controller class. I'm not exactly sure what the name is, but you can find it out from the standard search view components. Do not pick the immediate super class from the standard components, dog through and pick the basic advanced search controller. This class will contain the methods that you mentioned.
Regards,
Arun Prakash

Similar Messages

  • Error with paging action handler

    We are using the proposed action handler from Steve Muench's book for stateless paging to our highest confidence.
    The problem is that after some days the paging parameter p gets always a wrong value. We think it is the total rowcount, because we implemented a test-parameter.
    From then displaying a page starts always (?) with the last page. If this situation occurs it happens in different (!) applications, so it isn't a parameter side effect.
    There is not p session or cookie parameter who could override the silent work of the action handler.
    We are using the XSQL servlet 1.0.4.1 under Red Hat Linux 7.0 with an Oracle 8.1.7 database. Servlet container is Tomcat 3.2 with JDK 1.3 from Sun.
    Stopping Tomcat and restarting it solves the problem (for some time).
    Do you have any hint for us ?
    Best regards
    Andreas Saake
    null

    As I can see it's an error from Paging.jar.
    I do an initial call to a XSQL page with a select resultset of 38 rows, for example. With a pagesize of 20 rows I should get 2 pages and having current-page set to 1.
    But what I get is a corrected value (by Paging.jar) of current-page, which starts with page 2. The further paging in my application is ok.
    I've extended the paging handler with a variable called test-paged, which reads the paramater p and stores it in the output tree. Then I dislay the XSQL-page without any stylesheet and get a value of 38 in test-page.
    Below is an excerpt of my paging.jar:
    ---- Start excerpt
    import oracle.xml.xsql.*;
    import oracle.xml.parser.v2.*;
    import org.w3c.dom.*;
    import java.net.*;
    import java.util.StringTokenizer;
    import java.sql.SQLException;
    public class Paging extends XSQLActionHandlerImpl {
    private static final String PAGE_PARAM_NAME = "p";
    private static final String ROWSPERPAGE = "rows-per-page";
    private static final String TARGETPAGEARGS = "url-params";
    private static final String TARGETSORTARGS = "sort-params";
    public void handleAction(Node root) throws SQLException {
    XSQLPageRequest req = getPageRequest();
    Element actElt = getActionElement();
    // Get the count query from the action element content
    String query = getActionElementContent();
    // Get the number of rows per page, defaulting to 10
    long pageSize = longVal(getAttributeAllowingParam(ROWSPERPAGE,actElt),10);
    long totalRows = longVal(firstColumnOfFirstRow(root,query),0);
    long curPage = longVal(variableValue(PAGE_PARAM_NAME,actElt),1);
    long testPage = longVal(variableValue(PAGE_PARAM_NAME,actElt),1);
    // Get the name of the current page to use as the target
    String pageName = curPageName(req);
    // Get any URL parameter names that need to be echoed into paging URL's
    String pageArgs = getAttributeAllowingParam(TARGETPAGEARGS,actElt);
    // Get any URL parameter names that need to be echoed into paging URL's
    // FOR SORTING
    String sortArgs = getAttributeAllowingParam(TARGETSORTARGS,actElt);
    // Calculate the total number of pages
    long totalPages = totalRows / pageSize;
    long fract = totalRows % pageSize;
    if (fract > 0) totalPages++;
    // Make sure current page is between 1 < cur < totalPages
    if (curPage < 1) curPage = 1;if (curPage > totalPages) curPage = totalPages;
    // Create the <paging> fragment to add to the "data page"
    Document d = actElt.getOwnerDocument();
    Element e = d.createElement("paging");
    root.appendChild(e);
    addResultElement(e,"total-rows",Long.toString(totalRows));
    addResultElement(e,"total-pages",Long.toString(totalPages));
    addResultElement(e,"test-page",Long.toString(testPage));
    addResultElement(e,"current-page",Long.toString(curPage));
    --- END Excerpt
    Thanks,
    Andreas
    null

  • 10.5.6 Login Items Error with Network Home Directories

    I'm splitting this post off from a previous discussion which can be found here:
    http://discussions.apple.com/thread.jspa?threadID=1835976&tstart=0
    With 10.5.6 our Login Items are not working on client machines that use Network Home Directories. Everything works fine under 10.5.5.
    When the 10.5.6 client logs in, login items with a path directed to the Home/Documents folder cannot be found, and the following error appears in Console:
    "Unable to resolve startup item: status = -35, theURL == NULL = 1"
    I have no problem manually navigating to the Home/Documents folder and opening the login items. Removing and re-adding the login items does not fix the problem. Revert to 10.5.5 and the login items are fine.
    Below is a suspicious error that I see repeated multiple times in Console (viewing "All Messages") on the 10.5.6 clients but not on the 10.5.5 clients:
    Sender:
    loginwindow 34
    Message:
    FolderManager: Failed looking up user domain root; url='file://localhost/Network/Servers/myserver_name.com/Users/my_username/' path =/Network/Servers/myserver_name.com/Users/my_username/ err=-35 uid=0 euid=10790
    I'm sure I could find a work-around by moving the location of my login items or maybe even changing to launchd. However, this error seems to indicate something going on with the 10.5.6 install that might be more serious. I've done some typical troubleshooting: DFA, Repairing Permissions, Clearing Caches, trashing loginwindow and MCX preferences, deleting the /Library/Managed Preferences folder, rechecking DNS on the server (forward and reverse lookup OK).
    Any help is appreciated!
    Thanks!

    just to tell you, same thing here - it's nothing special about your setup. it's not a big issue for us as the kernel panic at logout on 10.5.6 is the real killer (no it's NOT JUST FONTS) so our workround is that we're not rolling it out! (staying 10.5.5).
    but on my own test 10.5.6 mac i get exactly the same issue with login items that are in the network home. local apps (font management app, ichat etc in /Applications) OK, but stuff on the mounted home server - nope and a line in the syslog for each item:
    Jan 28 09:25:54 hc04800-bssaht loginwindow[32028]: Unable to resolve startup item: status = -36, theURL == NULL = 1

  • Error with get-wmiobject

    $RSObject = Get-WmiObject  -namespace root\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER\v11\Admin -Class MSReportServer_ConfigurationSetting -computername xxxx
    When I execute the above statement I get below error. what might be the problem... thanks.
    Get-WmiObject : Invalid namespace 
    At line:22 char:26
    + $RSObject = Get-WmiObject <<<<   -namespace root\Microsoft\SqlServer\ReportServer\RS_MSSQLSERVER\v11\Admin -Class MSReportServer_ConfigurationSetting -computername xxxxx
        + CategoryInfo          : InvalidOperation: (:) [Get-WmiObject], ManagementException
        + FullyQualifiedErrorId : GetWMIManagementException,Microsoft.PowerShell.Commands.GetWmiObjectCommand

    Hi SSDot,
    Based on your script, you want to use powershell to register the report server. Right?
    According to your error message, it's the issue from the -namespace part. Please make the path surrounded with "". Please see
    Access the WMI Classes Using PowerShell in the link below:
    http://msdn.microsoft.com/en-us/library/ms152836.aspx
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • CRC errors with non-home hub device

    Hey folks
    When I first replaced my dying BT Home Hub with a third party DSL modem, there were initially a lot of CRC errors and poor SNR ratios. I called BT Broadband support and the agent appeared to rectify the problem on by undertaking actions on BT's side. It was something like performing two line tests back-to-back -- I know sounds odd, but it worked and the the third party DSL modem worked happily for 6 months.
    This week the third party modem started reporting high numbers of CRC errors, much like when first connected, it works for a while then resets when the CRC error count overflows. I'm wondering if there is some other state on BT's side that could rectify the problem. I've spoke with two agents this week, and they had no idea what I was talking about (and I agree it sounds like voodoo).
    Any ideas on what the initial action was on BT's side that enabled the modem to work in the first place?
    Thanks
    Solved!
    Go to Solution.

    Hi John
    I didn't understand the question about the test socket (physical socket?).
    The line passes the quiet line test.
    The third party router shows:
            Downstream    
    Upstream
    SNR Margin
    0.1
    6.2
    db
    Line Attenuation
    53.5
    27.0
    db
    Data Rate
    5705
    1023
    Kbps
    Max Rate
    22116
    1036
    Kbps
    POWER
    0.0
    12.3
    dbm
    CRC
    5786
    0
    The CRC errors accumulate until they hit a threshold and the device resets dropping the connection.
    The Home hub shows:
    ADSL settings
    VPI/VCI    0/38
    Type    PPPoA
    Modulation    ITU-T G.992.5
    Latency type    Interleaved
    Noise margin (Down/Up)    2.8 dB / 5.3 dB
    Line attenuation (Down/Up)    49.5 dB / 26.1 dB
    Output power (Down/Up)    0.0 dBm / 12.9 dBm
    The obvious difference is 3dB in line attenuation and noise margin. This was the case when I first connected the third party router before BT did the line reset that allowed the device to work. It has worked flawlessly for months.
    Thanks
    BTW, I don't want to appear unduly ornery, but BT tech support repeatedly ask on the telephone "why aren't you using HH2 we provided?".
    1) It randomly drops OS X wifi connections which makes me really unpopular in the house.
    2) It has poor wifi interaction with work lenovo laptop.
    3) It has no support for QoS provisioning so kids streaming video interferes with work.
    4) It has unreliable and undocumented USB storage, cf third-party solution which offers glitchless SMB and FTP.
    5) Printer support is undocumented (though works better than my third-party alternative :-) )
    My first HomeHub 2 had exactly the same issues before it died at which time I invested in a third party alternative. To credit BT they sent a refurbished replacement but this has all the same issues and a non-functioning reset switch.

  • I have a few errors with Firefox Home that have recently began to appear.

    Firefox Sync always tells me the password is wrong on my account and it cannot sync. I then have to uninstall everything, install Firefox Home and syn with a new password etc. Secondly, when I open some of my bookmarks on my Iphone 4s a the web page appears for about 2 seconds then a blank page loads with the google + in the top left hand corner and I cannot reload the bookmark?I am running Windows 7, ios 5.0.1 Firefox 10.0 and the latest Firefox Home app 1.1.1.

    photoshop elements 8 is what I am using

  • Format list error with Get-SPSite

    Hi,
    When I execute "Get-SPSite | fl", I get the error below. 
    [labsps01]: PS C:\Users\choulho shin\Documents> Get-SPSite | fl
    Exception has been thrown by the target of an invocation.
        + CategoryInfo          : NotSpecified: (:) [Format-List], TargetInvocationException
        + FullyQualifiedErrorId : System.Reflection.TargetInvocationException,Microsoft.PowerShell.Commands.FormatListComm
       and
    Does anyone know why I get the error above?
    FYI, when I execute "Get-SPSite" without fl, I get proper results. 
    Also "Get-SPFarm | fl" and "Get-SPWebApplication | fl" generate proper results.

    It doesn't know how to format the results as a list.
    There's a similar thread here, but also without an answer:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/9cea6552-3e5b-402c-8e31-989fd04b0ed2/getspsite-broken-pipeline?forum=sharepointadminprevious
    Try running the following:
    Get-SPSite | Fl -property URL, WebApplication
    There's an implicit '*' implied in a Format-List request, it might be that something about that isn't working nicely.

  • Error with getting album artwork, will i lose all library if i unistall?

    I appear to have an error (-609) when i try to get album artwork in i tunes. I was thinking about unistalling i tunes and then re installing it. Will this help resolve the error and will it mean i will lose all the albums i have stored in my library. Will i have to reload them all back on again? or can i save them on my pc somewhere before i unistall itunes and then move them back into itunes when i reinstall it?

    Hi Sarah, and a warm welcome to the forums!
    Try logging out of the iTunes Store, Quit iTunes...
    Safe Boot from the HD, (holding Shift key down at bootup), it will try to repair your Disk Directory while the spinning radian is happening, so let it go, run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    Open Itunes, log into the Store, try again.

  • I'm new to iPad mini and uv I'm trying to get a movie I purchased to where I can watch it offline but when I click the option to download and watch offline it keeps giving me and error with download try again later I have a good wifi connection ??

    I'm new to iPad mini and uv I'm trying to get a movie I purchased to where I can watch it offline but when I click the option to download and watch offline it keeps giving me and error with download try again later I have a good wifi connection ??

    You have a "good WiFi connection". What does that mean exactly? Can you send and receive email and are other internet related activities working OK for you? Have you tried restarting or rebooting your iPad? Sometimes that helps. If nothing else, it's a good place to start.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • When I try to activate my home sharing on iTune I get this error message."home sharing could not be activated because an error occurred(-2146762487)"  .How can I solve this problem?

    When I try to activate my home sharing on iTune I get this error message."home sharing could not be activated because an error occurred(-2146762487)"  .How can I solve this problem?

    I have a brand new iMac with all the newest updates etc etc, Safari logs me in without any problem but iTunes etc is just not working.. and I have the same message...Any ideas how to resolve this?
    "Home Sharing could not be activated because an error occurred (5506)."

  • TS3694 Swapped phone with wife had "searching" error then get 1669 on restore.

    Bought wife a 5S for Xmas - She took backup to itunes of old 5 & restored to 5S then swapped sim from 5 to 5S - was working fine for about a week now phone sits at "Searching" and wont make/take calls.
    I put new sim into her old phone, restored my last backup (of my iphone 4) onto it and it was fine until the same day her phone stopped working now I get "searching".
    So I performed a factory reset & now get the dreaded 1669 error on updating firmware and phone is stuck in reset loop.
    So I put sim back into 4 and it works fine.
    Only possible problem is we both forgot to delete the phones from icloud "find my phone" when we swapped sims - which I've now done on the 4 but obviously she can't on the 5 as its stuck.
    So is this a IOS/icloud find my phone security bug or are both phones broken?
    BTW both phones worked fine until 02-JAN-2014.

    No joy...
    I had already tried "recovery mode" restore to get iphone 5 working, just get 1669 after "updating firmware" status message (with progress bar 3/4 across).
    Tried DFU method 1 at work this afternoon and get same message "1669" but that was using iTunes V 11.1.3.8
    Due to work's Internet proxy I can't test method 2 until I get home as I can't download any software at work.
    Last night we both logged into iCloud and deleted all the phones stored in there (as wife's phone wouldn't let her de-register on the 5S even though she had never registered it in the first place).
    This has sorted the problem I had on the 4 where I couldn't turn off "find my phone" - I can now register & de-register the iphone 4 from the phone.
    The wife can also register & de-register the 5S from the phone too now but it still wont make any calls.
    Going to the local apple store tonight to see if we can get any help.
    This smacks of an IOS 7.0.4 + a "find-my-phone" authorisation issue which blocked my initial restore thinking the phone was owned by someone else and leaving it in an unusable state.
    I'll post an update later.

  • One user (only) getting "disk full" errors for network home folder

    I have a few users in my office with their home folders on the server. Everyone seems to be fine except this one person, who, a few times a day, gets an error saying that there is no space in his home folder and a program can't save preferences or Mail can't write new mail to disk.
    I don't have quotas turned on, and there is 120gb free on the disk with the home folders.
    Has anyone experienced this before and know what the solution is? It's Server 10.3.9 and workstation 10.4.4.

    I have about 100 Portable home users also here and only a few are affected with this issue. Their home folder on the server is 15GB but can't write more then 3.5GB to the server. It is very wierd.

  • How do i get a new tab to open up with my home page after i click on the + at the end of the tab

    how do i get a new tab to open up with my home page after i click on the + at the end of the tab

    problem solved thak you Andy.c that was too easy and a fast reply i'm abit of an iliterate with these things

  • How to get a handle Logged in As message in Apps Home page

    Hi,
    I want to get the handle to Logged in As meesage in Apps homepage ,when i pressed personalize link. As i want to change this custom message, by some other message,for that i should be able to see the text in the personalize link because i want to attach a custom controller to that.Here i also want to add that am able to see that message in about this page link, it is inside a flow layout, but am not able to see it inside the personalize link.
    Please help me in this issue.
    Thanks

    This issue alredy discuss on this forum
    Re: How to change the oracle's home page to show our custom message.
    Let us know if this is not able solve your customization.

  • SharePoint Designer 2013 after installation getting error with runtime i.e. error writing to file Microsoft.SharePoint.Client.Runtime.Local.Resources.dll Verify that you have access to that directory

    SharePoint Designer 2013 after installation getting error with runtime i.e. error writing to file Microsoft.SharePoint.Client.Runtime.Local.Resources.dll Verify that you have access to that directory
    after retry..again SharePoint Designer requires the following component require to install Microsoft.NET framework version 4 i have downloaded and try to installed but fail not work please answer what to do?
    Thanks and Regards, Rangnath Mali

    Hi Rangnath,
    For running SharePoint Designer 2013, you need to install Microsoft .NET 4.0 Framework or higher.
    Please uninstall the Microsoft .NET 4.0 Framework, and install it again. After that, reboot your machine.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • My iPhone 4 is disabled after the update and I don't know the passcode

    I left my phone updating through the night.  Checked on it at 4.30am and went through the bits and set up a passcode.  It seems now that the passcode isn't working and my phone has been disabled. I've tried to restore and backup but nothing is workin

  • Transaction IW32.How to find out the person name.(Last changed By)

    Hi all, When i executed the transaction IW32.Its displays changed by and created by fields. please any body can tell me how to find out the person  name who had made last change with respect to the field changed by. Please tell me the table and field

  • PO Account Assignment Fund Change is not transferred to backend

    We are on SRM 550 SP10 ECS. When a PO is being changed, if the fund is changed, that change does not get transferred to R/3. The old Fund when the PO was created is retained on the R/3 side. On the SRM side the new fund is retained. Note:    The fund

  • 10.5.4: Can't add printers in system preferences

    I have an HP Officejet 7210 connected to my wireless router via ethernet. When I was using Tiger, I never had a problem adding printers or printing to them. When I upgraded to Leopard, I had no printers on the printer list, so I tried to add my Offic

  • How to pass servlet parameter using encodeURL function in JSP page

    Hi!!! I have a very urgently problem. in my JSP I have this: <IMG border="0" src='<%=response.encodeURL("/MyImageServlet")%>'> In this way, my servlet works fine (and I have in my page my blob-image). But I have to pass to my servlet a list of dynami