Using saxparser in the suite method from junit

Hi, i have a problem using SAXParser in the suite method of junit.
My little test class 'myParser' works fine but when I call the method 'doIt' from the 'suite' method from a class that implements TestCase (junit) I get a java.lang.ClassCastException: org.apache.xerces.parsers.StandardParserConfiguration
in line 7.
Does anyone have an idea what I made wrong??
1) public class myParser {
2)   
3)   public myParser() {}
4)   
5)   public void doIt() {
6)     try {
7)       org.xml.sax.XMLReader parser = new org.apache.xerces.parsers.SAXParser();
8)       parser.parse("anyFile.xml");
9)     } catch (java.io.IOException IOe) {
10)       System.out.println(IOe.getMessage());
11)     } catch (org.xml.sax.SAXException SAXe) {
12)       System.out.println(SAXe.getMessage());
13)     }
14)   }
15) }

Hi JPilot,
I�ve this problem, too.
greez ZB

Similar Messages

  • Using the ContactInsertOrUpdate method from the ContactWS but error msg rcv

    [This thread was migrated from the On Demand Developer Forum in the old Siebel Community]
    Corsa
    Contributor
    I am getting the following error I do not know why or how to work around
    it.
    Method 'SetFieldValue' of business component 'Contact' (integration
    component 'Contact') for record with search specification '[External <br/>
          System Id] = "123456"' returned the following error:"Access <br/>
    denied.(SBL-DAT-00542)"(SBL-EAI-04375)
    Does any out there have any ideas?
    Previously when I tried to do the same action I got the following message:
    Multiple matches found for instance of integration component 'Contact'
    using search specification '[External System Id] = "123456"' in the
    business component 'Contact', based on user key 'Contact User
    Key:3'.(SBL-EAI-04390)
    Both messages are baffling me. Please, please help
    Product: CRM OnDemand
    06-16-2006 04:35 AM
    Re: Using the ContactInsertOrUpdate method from the ContactWS but error
    msg rcvd
    BigSlick
    Valued Contributor
    Hi Corsa,
    Can you access the record in the online application. Perhaps someone has
    changed the access rights for this Contact on the Contact Team ?
    -BigSlick
    06-20-2006 12:33 PM
    Re: Using the ContactInsertOrUpdate method from the ContactWS but error
    msg rcvd
    Corsa
    Contributor
    I realise now that the field AccountID is readonly and cannot be assigned.
    I was attempting to assign contactsList[count].AccountId to a value . I
    believe, this is the reason I was getting the access denied error.
    06-23-2006 11:10 AM
    ==============================================================================
    Click on the board or message subject at the top to return.

    Ok, so I hit a bump in the road. Just when I think I understand something It doesn't work correctly.
    I implemented it I thought correctly. I looked up something on the sun website (core java) I used advice from here, and my professor finaly responded to me with almost identical instructions. So I did it
    my RationalNumber.java no looks like this.
    public class RationalNumber implements Comparable
    //.....Break to new section
      public  float compute ()
           float value = getNumerator() / getDenominator();
         return value;
       public int compareTo(RationalNumber op2)
           if (Math.abs(compute() - op2.compute()) < .0001)
              return 0; //Equal
          if (compute() > op2.compute())
            return + 1; //Rational Number bigger
          if (compute() < op2.compute())
               return - 1; //Rational Number Smaller
         }I thought that would work fine, but it gives me an error when I compile it:
    RationalNumber.java:8: RationalNumber is not abstract and does not override abstract method compareTo(java.lang.Object) in java.lang.Comparable
    public class RationalNumber implements Comparable
           ^So now what, making it abstract only creates more errors....
    Also, thanks ChuckBing, I'm glad you like the screen name, I've been using it for years.

  • This static method cannot hide the instance method from...

    What means the error message "This static method cannot hide the instance method from Referee"?
    Referee.java is a interface. I implemented it in the class RefereeMyName.java and made a method in that class to be static. Thats why I received that error message.
    But can't I use static methods when I have implemented a interface in that class? I want to have a Player.java class which I want to access RefereeMyName.getTarget(). I cannot use a instance instead because I wouldn't receive a valid return value then (RefereeMyName is the client class).
    What is the solution?

    Hi,
    Well i do not think that you can do that b'cos that way you are not giving the same signature for the method as that exists in the interface. I do not know how other way it can be done but if something urgent for you then you can remove that method from that interface and only define in the class.
    Regards,
    Shishank

  • [svn] 4059: The measure() and updateDisplayList() methods of TextBox and TextGraphic now return early if the inheritingStyles and nonInheritingStyles proto chains haven 't been initialized, to avoid RTEs in the compose() method from invalid styles values.

    Revision: 4059
    Author: [email protected]
    Date: 2008-11-10 11:56:38 -0800 (Mon, 10 Nov 2008)
    Log Message:
    The measure() and updateDisplayList() methods of TextBox and TextGraphic now return early if the inheritingStyles and nonInheritingStyles proto chains haven't been initialized, to avoid RTEs in the compose() method from invalid styles values.
    QE Notes: None
    Doc Notes: None
    Bugs: SDK-17975
    Reviewer: Jason
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-17975
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/TextBox.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/TextGraphic.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/graphics/graphicsClasses/TextGraphicEleme nt.as

    FYI - This regression has been filed here: http://bugs.adobe.com/jira/browse/SDK-31989

  • Which interface to use to get the bleed parameters from existing document

    Hello,
    I have an Indesign document having a page with the bleed parameters set and I have to create new pages with the same bleed values.
    Which is the  interface that I should use to get the bleed values from existing page and set the same to the new pages.
    I used a few interfaces given in API support doc, but I am not able to get the bleed values using them. I used GetBleedBox() of INewDocCmdData interface without success.
    Can anybody tell me a proper way to use this interface to get the bleed values and then set those values or is there another more relevant interface?
    Thank you.
    Regards,
    Yogesh Walke

    Your question already been answered.
    http://forums.adobe.com/message/1302929#1302929

  • Passing params to the AMImp method from backing bean

    Hello. I am an ADF/Jdeveloper Noob and i have a requirement where I have created an AM method below and exposed it to my View Controller.
    I am using Jdeveloper 11..1.1.4 to doe this.
    //In AM
    public boolean createSRTask(String sourceName, Number sourceRow)
    //insert new row in the Entity Object.
    EntityDefImpl SRTaskDef = MassSrImportEOImpl.getDefinitionObject();
    MassSrImportEOImpl newSRTask = (MassSrImportEOImpl)SRTaskDef.createInstance2(getDBTransaction(), null);
    newSRTask.setSourceName(sourceName);
    newSRTask.setSourceRow(sourceRow);
    return(true);
    I have a text file i am reading and I get the parameters from processing that file when the user presses the upload button... I can loop thru the file contents etc. with no issues but i have yet
    to figure out how to code the backing bean to call the AMImp method with the parameters I have read in.
    Thank you in advance for any help.
    Edited by: 832187 on Jan 16, 2012 6:51 AM
    Edited by: 832187 on Jan 16, 2012 7:01 AM

    In this case you should build a VO which is build on EO, add it to the data model of the application module. The you can either implement the service method in the VO or the application module. Let's assume you put it in the am (application module) like you already did. the method there would look like
    //In AM
        public boolean createSRTask(String sourceName, Number sourceRow) {
            ViewObjectImpl massView = (ViewObjectImpl)findViewObject("MassSrImportView1");
            Row row =  massView.createRow();
            row.setAttribute("Source", sourceName);
            row.setAttribute("SRCNR", sourceRow);
            massView.insertRow(row);
            return true;
        }Some note on this:
    1. the rows are not inserted in the db as long as you don't commit the transaction
    2. It look like your view does not have a PK. The framework works better if you have one
    3. If you always return true, you can omit the return value totally
    4. If you plan to insert multiple rows you should consider passing hte file to the am method and do a bulk insert in there as this would minimize round trips.
    I strongly recommend the you read the http://docs.oracle.com/cd/E25054_01/web.1111/b31974/bcintro.htm to get more knowledge about the business layer.
    Timo

  • Eclipse don't schow me the add Methods from IPage and IiView

    Hello Together
    I'm developing a WebDynpro that should add and remove iViews to/from a page. The Server we use is J2EE 7.01 (Portal 7 EHP1)
    For this I want to use the following code. Which is shown in the Developerguide NW2004s:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, request.getUser());
    env.put(Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_SEMANTICS);
    InitialContext iCtx = null;
    try
    iCtx = new InitialContext(env);
    IPage myPage =(IPage)iCtx.lookup("pcd:portal_content/Desktop/finance");
    INewObjectDescriptor iViewDescriptor = (INewObjectDescriptor)iViewSrv.instantiateDescriptor (CreateMethod.DELTA_LINK, "pcd:portal_content/testxml", request.getUser());
    myPage.addiView(iViewDescriptor,"testxml");
    catch(Exception e)
    The the problem I have now is, that eclipse does not know the method addiView or any other add Method.
    So I tried to find out which mehtods exists in the class IPage which I use here.
    For this I used the following code:
    IPrivateChangeIviewInPageView.IMethodnamesNode methodNode = wdContext.nodeMethodnames();
    IPrivateChangeIviewInPageView.IMethodnamesElement methodElem = null;
    IUser sapUser = WDClientUser.getLoggedInClientUser().getSAPUser();
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, IPcdContext.PCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, sapUser);
    env.put(Constants.REQUESTED_ASPECT, PcmConstants.ASPECT_SEMANTICS);
    try {
      InitialContext iCtx = new InitialContext(env);
      com.sap.portal.pcm.page.IPage myPage =(com.sap.portal.pcm.page.IPage)iCtx.lookup("pcd:portal_content/tgdmopa7/com.tgdmopa7.updatePage");
      Method[] meth = myPage.getClass().getMethods();          
      for (int i = 0; i < meth.length; i++) {
        Method m = meth<i>;
        methodElem = methodNode.createMethodnamesElement();
        methodElem.setName(m.getName());
        methodNode.addElement(methodElem);
    } catch (NamingException e) {
    In the table which shows the methods of the IPage class the add-Methods are shown.
    I added the following jar-Files from the J2EE-Server to the classpath:
    - com.sap.portal.ivs.api_iview_api.jar
    - com.sap.portal.navigation.api_service_api.jar
    - com.sap.portal.pcd.basicrolefactory_api.jar
    - com.sap.portal.pcd.glservice_api.jar
    - com.sap.portal.pcm.admin.apiservice_api.jar
    - prtjndisupport.jar
    - gl_api.jar
    In the sharing References I refere to:
    - PORTAL:sap.com/com.sap.portal.ivs.connectorservice
    - PORTAL:sap.com/com.sap.portal.ivs.api_iview
    - PORTAL:sap.com/com.sap.portal.ivs.iviewservice.oldpcm.iviews_dt
    - PORTAL:sap.com/com.sap.portal.pcd.basicrolefactory
    - PORTAL:sap.com/com.sap.portal.pcd.glservice
    - PORTAL:sap.com/com.sap.portal.ivs.api_landscape
    - PORTAL:sap.com/com.sap.portal.navigation.api_service
    - PORTAL:sap.com/com.sap.portal.iviewservice.templates_cache_srv
    - PORTAL:sap.com/com.sap.portal.pcm.admin.apiservice
    Does somebody know why I do not see the add methods in eclipse?
    Kind Regards
    Pascal

    I got the solution. I have imported now the com.sap.portal.ivs.api_portalpcm_api.jar and then eclipse find the addMethods.

  • Can I know the caller method from callee

    Hi,
    I have a method which is called from multiple methods. Is it possible to know the method which called it wihtout sending the parameter to specify which method called it. i.e. without using something like send 1 for method 2 for other.
    One way I thnk is build an exception. Throw & catch it in the same method & get the stackTrace();

    I would respectfully remark that it isn't your
    method's job to police the callers. It still
    shouldn't be concerned with who the caller
    was. It should just throw an appropriate exception
    indicating invalid parameters were passed. Then it's
    the caller's responsiblity to do something about it.Yeah... that is why exceptions exist. Throw an IlegalArgumentException and then (since it's unchecked) if you want to watch out for it, watch for it in the calling method, which is after all the method in charge.
    It is easy to get carried away with the "spot checking" philosophy and try to handle all errors exactly where they occur, but if you think about it, where did the error really occur? Up the stack at the caller.. that is where the bad arguments came from.
    Also, strictly speaking, it should be a rare case when code throws an IllegalArgumentException. For the most part exceptions should represent just that - exceptions. It is not really in best form for them to be used as conditionals.
    For example, instead of getting input from the user and then forcing it down the method's throat without checks, you should run your own checks on it first - for example, by telling the JTextField that it is not allowed to accept characters that would result in an IllegalArgumentException.
    Exceptions should represent just that; hence, except for certain weird cases, a body of classes that you write that interact exclusively with each other should be designed to (almost) never throw exceptions.
    When someone else starts using your classes, all bets are off.
    Drake

  • How to access the controller method from javascript onclick event?

    Hi All,
       I am totally new to development. And I got struck in calling a controller method from javascript function.
       I have no idea about ajax and all those things. Please can anyone help me to solve this issue!
    Thanks in advance.

    Hi,
    As I know, you can use jQuery to do this, here is an example.
    Example of your Controller Method.
    [HttpPost] // can be HttpGet
    public ActionResult Test(string id)
    bool isValid = yourcheckmethod(); //.. check
    var obj = new {
    valid = isValid
    return Json(obj);
    and this would be your javascript function.
    function checkValidId(checkId)
    $.ajax({
    url: 'controllerName/Test',
    type: 'POST',
    contentType: 'application/json;',
    data: JSON.stringify({ id: checkId }),
    success: function (valid)
    if(valid) { //show that id is valid }
    else { //show that id is not valid }
    If you have further issues, I would suggest you move to MVC forum, it is appropriate and more experts will assist you.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Window.open function in java script used to open the BI report from APEX

    Hi,
    I have some oracle reports now which I converted to BI publisher and the reports are now in BI publisher.
    My question is
    To open the BI report from APEX using a button the following code i have written
    window.open
    ('http://bipubdvserver/xmlpserver/testreport/testreport.xdo?_xpf=&_xpt=1&p_dept_no=&deptno',"mywindow");
    I want to pass the parameter deptID dynamically to call the BI report.
    But when I click on the button it is showing the file open/save dialog box without accepting the parameter and finally showing the blank pdf.
    but I want to enter the parameter value dynamically that is when click on button it should allow me to enter the deptno eg. 10 then should show the data related to dept 10 in pdf..
    how to accomplish this could you please help me.
    thanks very much in advance.

    i got this please ignore the post.

  • Are the sound clips from Final Cut Pro Fair Use?, Are the sound clips from Final Cut Pro Fair Use?

    I recently found YouTube had flaged a video for containing a "third party" sound clip.  All clips I've used in videos for YouTube have come directly from Final Cut Pro X.  Any idea if the sound clips are Fair Use?  I'm not sure how to repsond to YouTube and don't want to get a mark against my account due to this.

    You can pretty much forget about monetizing that specific video. 
    [Okay... I'm going to ramble now...]
    To avoid problems with youtube, you need to post a copyright (like this: @2013 by Your Name) on the video (I recommend within the first 10 seconds) -- and you better have it *right*. If you use other audio and video, as long as you have secured the proper permissions for use, you can still claim a copyright to the video you post on YouTube -- it is your creation (but it better not be a single clip of somebody else's work being passed off as something you did -- just to be clear -- your videos need to have original content that you created in order to justify the © you put on it. If you use *other stuff* as long as it's *with* permissions, it's still your video.) [If your video is going to be monetized -- make absolutely sure you have that permission for *commercial* use! Quite a lot of sources will specify that their materials *cannot* be used for any commercial use without further permissions, if at all. With Apple Loops (pro apps music and sound) you do have that express permission to be used in commercial works as long as it follows the EULA. More below.)]
    You also need to specify the music and/or sound effects are "licensed from Apple Computer and used with permission" and you might as well state they are "made with Apple Loops". YouTube understands the EULA of the Apple Pro software (Logic, STP, FCP/FCPX, etc...) -- but even Apple licensed all that stuff from outside sources. Apple just takes care of paying "them" for it in advance so you don't have to (you buy it with the cost of the software license.)
    You cannot use any of the "music beds" by themselves, in their entirety (all those nice long demo pieces everybody likes so much and you hear several times a day on [local] TV commercials). The EULA actually specifically states this (although you might have to read it two or three times until it becomes clear...LOL). Even loops are not to be released "as is", in their entirety, in any "derivative work". So, basically, make sure some other sound is mixed in with it (if it's music, add drums or other percussion, harmony, or duck it under talking, etc...)
    The point is, no matter what audio source you have, if it is *music* (or foley) and EVEN IF you are the creator of that music or sound effect, you need to specifically put it in writing IN the video (not in the description). You need to reference the source (e.g.: stock footage by BottledVideo.com) and state it's being used with (or by) permission. [According to YouTube: I have copyright infringed MYSELF!!! just for leaving out all this *stuff* from my subsequent videos (music that I composed and performed myself on guitar... I was livid... but it stuck!).]
    I can pretty much guarantee that within minutes of  posting your video (if it is monetized) -- some real live person at youtube puts eyes on that video to make sure it is properly "signed". I can tell by how long it takes for the monetize checkmark to go from dark to light green -- usually less than 10 minutes.
    If your video is not monetized, and it's not a blatant violation, they probably will let you off with a warning, tell you that you don't need to do anything "right now" and it won't count as a mark against you... If it IS monetized, it won't be - they'll turn it right off and your chances of winning a challenge are almost 0 (unless you can PROVE you own the material -- and  I have won a challenge -- see * below);  and you will probably see a "Copyright Notices" (or similar) item in the menu on your channel settings. If you can redo the video - pull the old one, put in the new info and re-up it.  It's a royal PITA, but in this day and age, it's a necessity.
    All videos destined for youtube should be treated as mini motion pictures and be prepared as such with full "disclosures" in titling... Welcome to  21st Century Pox [This statement is not meant to be derogatory to 21st Century Fox or imply any association or criticism or slander, and is only to be intended to be received as a parody on a common phrase that is currently still in use... No words were harmed in the formation of this pun.]
    Get the point? YouTube tries to tell everybody -- but they've done a pretty lousy job of doing it. It's taken me, oh, I guess a year or so to learn to "behave" after wandering through a mire of confusing information from too many different sources -- and even if I am the sole producer of 100% of all the content in the video, I *still* have to place that © and "commit" it; it is *not* taken on faith.  I actually had to go back and reread all my licenses and interpret the legalese to figure it out. It would have been simpler if they just put it: Your video is a miniature professional production. Make sure it includes all titling to reflect all participants -- *just like you'd see in a modern major motion picture or a major broadcast television series* -- I think everyone would pretty much understand what that involves. You don't have to get quite that extreme, just cover you bases and your a©©.
    I tried to cover it all... but I'm pretty sure I haven't... so... good luck!
    *How I won my challenge with an Apple Loops composition:
    1) the music, even though using "canned" loops, was an original complex composition (I'll argue theory with anyone about this... it will be based on limited sets and recombinants as well as the theory of instrumentation and timing. In other words - I massage the heck out of loops until they don't sound anything like the originals. I almost never use audio loops -- always MIDI.) [BTW - this was another instance of copyright infringing myself - I had used the same music in a previous video I produced a year or so earlier... when I, like you, thought I was "free" to use the clips as I saw fit.]
    2) the music I used in the video was originally created in Logic and I made sure the ID3 tags were filled in with my name and copyright information
    3) I have a YouTube Associated Website (think this is a "partner" thing... and google "sanctioned") but if you see it, make sure you associate your domain. [I think you might be able to create a Google+ account and associate a domain that way if it's not part of your YouTube settings.]
    4) I uploaded the original mp3 with the ID3 tags to my associated domain.
    5) in the challenge, I 1) attached the original mp3 (w/ID3 tags); 2) gave youtube a link to the copy on my associated website for *verification* that the files belonged to ME; (and they already had the URL to the video in question -- a basic 3 point verify.)
    It worked. They accepted the verifcation. (And this was the first challenge I've been able to win.) [This was very recent. What about the others? I might get a chance to complete the verifications, but I know for some, I've used up my challenges. The only other option is to pull them and redo them...]
    One last word of advice: It does not pay to get "huffy", indignant, or righteous with YouTube in a challenge. They don't care.  <-- read that again a lot more slowly...  They have their own behinds to take care of — and your video (and/or account) lives (or dies) by their grace. If you read that and infer that I have been those things, then yes, I have... to absolutely no avail... even though I thought I was right (to the best understanding I had at the time) — they have rules. Be respectful. In general, they're pretty relaxed about all this even though it might not look that way to many users. Once you get the rules down, everything goes a lot easier... even if it is a little more work. You have to take responsibility for your own work.

  • Created path and used trim but the line appears from the wrong side?

    Hey,
    I've created a rectangle by using the pen tool, then applied a stroke to it. I've then added "trim paths" and the end value at 0seconds is 0% and then at 5 seconds its at 100% however the line appears from the wrong side of the screen, basically it's reversed, yet the reverse path symbol is not ticked.
    The line is meant to appear from left to right of the screen with a 2px stroke, which will then have a mask applied to show a large black box appear from this line and fill the rest of the screen up.
    Anyone able to help me at all?
    Thank you.

    If you animated the start then animate the end. Simple as that.

  • Cannot uninstall I tunes. In control panel add and remove programs it will not give me the option to remove any of the I tunes. In program files it tells me access denied to remove any of the related items. I have tried using the removal methods from i tu

    My i tunes will not work at all. I have tried all the steps given to remove my I tunes player but in my control panel, add and remove programs it does not give me an option to remove any of the apple/ I tunes. I tried to go to program files and remove all the files but access is denied. This all started about 1 1/2 years ago and with every i tunes update i got more and more errors or problems until it stopped working. At one time i could remove and reinstall i tunes to try to fix it but now i cannot do anything. I believe one of the last  was i could not open i tune because it was being used or was on another network, not 100% sure its been so long and frustrating I quit trying 6 months ago. Hopefully someones got some help !!!
    Thanks I appreciate your time; Philip

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • Calling a pkg from managed code and then using reflection to call a method from a script task

    Hi we run 2012 std.  I have some pretty good evidence that when I call my pkg from a .net service, a script component in that pkg fails when trying 2 use reflection to load and invoke our .net message history method.  The exception is either on
    the invoke or in the message history method.  I suspect its in the method but will take additional steps 2 verify.
    But when I run the pkg stand alone, it has no problem and the method does what it is supposed 2 do.
    There r no vars passed from the service to the pkg.  I wonder if its a managed to unmanaged to managed issue that the community is already aware of.  If not, my apologies 4 posting this quickly.
    I'll post more info here as I collect it. 

    we have 2 theories after showing the exception trace to folks who r more adept at managed code.
    the first is related to the fact that our 3rd party dlls (I think entity framework is included in these) r older versions.  I don't want to discount this theory but we have some evidence already that this might not be true.
    I hope I can do justice to the 2nd theory but will make it clearer and clearer as I get a better understanding.  I believe this is what Arthur was saying and I applaud his instincts.  They explained that .net is so "smart" that it detected
    a change in namespace  (ie context as Arthur said) and purposely threw an exception 2 save us from ourselves.  The workarounds discussed were a bit over my head but I will continue trying to better understand it.  The fact that many of the methods
    we call after reflection r now merged into one assembly seemed relevant to the discussion and possible workarounds.   
    this link came up in their discussion and I believe the bottom line here is that by qualifying assembly names further (in config?)r, a workaround is possible. 
    http://msdn.microsoft.com/en-us/library/system.type.assemblyqualifiedname(v=vs.110).aspx  .
    This link came up as well and has something to do with ILMerge and workarounds to ILMerge. 
    http://elegantcode.com/2011/04/02/dynamically-load-embedded-assemblies-because-ilmerge-appeared-to-be-out/  .
    Finally, this link came up and seems to have something to do with embedding your dlls in one assembly without them losing their identity.
    http://blogs.msdn.com/b/microsoft_press/archive/2010/02/03/jeffrey-richter-excerpt-2-from-clr-via-c-third-edition.aspx
    I'll post more here as we muddle thru this.

  • How to call the EJB methods from servlet/jsp

    Hello ,
    i have write one ejb signOn having the method validateUser(username,password).i can able to call this function from client.java class.i want to know whether i can call this function from servlet.if yes then where to write that servlet and web.xml file.
    At present i m using weblogic server 8.1and i create directory call c:\ejb\demo and put the ejb files(home ,remote,ejb class ,client.java) then i have created .jar file and put in application file.
    Now i want to create a servlet for that i have to create a new directory and put the servlet,web.xml,weblogin-web.xml file and then create one .war file and put in application directory or do some thing extra.Please help me.
    Thanks In Advance
    [email protected]

    I think this might not be the most appropriate forum for your question. You might try a forum about ejb, or weblogic, or jndi.

Maybe you are looking for

  • MB5B report

    Hi all, in MB5B report (article stock) showing field like this: Site, Article, Posting Date, Opening Stock, Total Receipt Qties, Total Issue Quantities, Closing Stock. Now when we click on particular row its showing materail (article) wise report and

  • Mail search not working + Spotlight keeps indexing

    I have an old problem that has resurfaced after creating a new user on my Mac. Mail search brings no results and Spotlight is constantly indexing - day in, day out. It never seems to get there. I tried turning my hard drive to private in Spotlight se

  • Looking for source for cover for MacBook Pro Model 1226?

    Having hard time trying to find cover for the above model... this is the Intel Duo Core aluminum body with silver keys... I've looked on Ebay and Amazon... the most of what I've found is for the 1286 model... any suggestions?

  • Cursor within the cursor showing error

    Hi, I am using a cursor within the cursor to create a procedure.I am getting the below error while compiling this 15/7 PL/SQL: SQL Statement ignored 16/14 PL/SQL: ORA-00942: table or view does not exist 79/10 PL/SQL: Statement ignored 82/31 PLS-00364

  • Archival into content server - Which is a right forum??

    All, We are planning to use forms output to be archived into SAP Content Server running on MaxDB. Does anybody have any experience to share or point me to the right forum > Can it perform well with 6-10 TB of potential data in the next 4-5 years > Ca