Plug-in JAR issue

Hi,
I am trying to call a plug-in in my existing java code.
I have added the JAR to library.
Basically, I need to establish connectivity to another server and insert data in that database.
This is handled by a plug-in "BOPlgin.jar".
I have imported the Plugin JAR file and instantiated the main class. in my code.
BusinessObjectsPlugin plugin = new BusinessObjectsPlugin();
it is giving a strange error in the consloe:
SRVE0026E: [Servlet Error]-[com/crystaldecisions/sdk/exception/SDKException]:
java.lang.NoClassDefFoundError: com/crystaldecisions/sdk/exception/SDKException
This class is very much available and is actually imported in the class I am trying to instantiate.
Am I missing something in calling the plug-in?
Please help me !!

This is a web-app.
But It does not have any EJBs.Irrelevant
So, JAR Dependencises in RAD is emptyRAD?
You know that dependencies doesn't mean "EJB" right?
Can you be more specific in your question, please?Your problem is, you're not deploying those dependencies (the jars) to your web app. Sure, you can compile ok because your IDE knows about them, but your IDE isn't your container. So you need to deploy those jars to your container, too. How you do this depends on your container, but I'd be suggesting you write an Ant script to do it, however you do it. Having said that, I don't really have a question any more

Similar Messages

  • Weblogic upgrade from 8.1 to 10.3.6 - WLW_IDE.jar issue

    Hi
    We are in the process of upgrading our applications from Weblogic 8.1 to 10.3.6. Since WorkShop IDE has been decommissioned since Weblogic 10.3.2 we don't have the WLW_IDE.jar any more in the fusion middleware installation. The build is dependent on this JAR. Would like to know if there is an alternative to WLW_IDE.jar which can be used to make the build or how we can remove the dependency on WLW_IDE.jar - we don't want to rewrite the code.
    <taskdef name="wlwBuild" classname="workshop.core.WlwBuildTask" classpath="${weblogic.home}/workshop/wlw-ide.jar"/>
      <target name="build">
        <wlwBuild work="${app.dir}/${work.file}" serverclasspath="${server.classpath}">
           <build outputdir="${output.dir}" outputfilename="${output.file}"/>
        </wlwBuild>
      </target>
    Rgds
    Srini

    Hi Srini,
    it supports but you need to upgrade correctly.
    follow this link
    Beehive Applications
    after upgrade if you found some error like classnotfound error.
    If those are the errors you were also experiencing, then please follow one of these options to resolve this issue:OPTION
    1:Identify all the JARs that contain the beehive classes and explicitly add the jar files to the classpathOPTION
    2:When you created the domain (if you used the Config Wizard), do you make it a "Workshop" domain? If not, try that.That should deploy the Workshop framework (Beehive controls, NETUI, etc) libraries as shared libraries. Then these libraries should be referenced in your applications weblogic.xml and weblogic-application.xml.
    regards,
    Kal

  • How do i fix a flash "plug-in container" issue (ff indicates most recent version is installed)

    Hello. to start with im not really up on the ins and outs of ff, ive used it for a while but not really tinkered with till this problem
    Im running Vista (no comments on that please :p) and the latest version of as downloaded from the mozilla website (3.6 something)
    my plug-ins are (version number):
    2007 MS Office system (12.0.4518.1014),
    Bio3D (12.0.0.733) - this comes with ChemDraw i think,
    ChemDraw (12.0.0.733),
    getPlusPlus for Adobe 16287 (1.6.2.87),
    Java Deployment Toolkit (6.0.210.6),
    Java(TM) Platform SE 6 U21 (6.0.210.6),
    MS Office Live Plug-in for FF (2.0.4024.1),
    MS (R) WMP FF plug-in (1.0.0.8),
    Mozilla Default Plug-in (1.0.0.15),
    Novell iPrint Plug-in (5.3.0.0),
    Novell iPrint Scriptable Plug-in 1.0 (5.3.0.0),
    Quicktime P-in (7.6.6.0),
    Shockwave Flash (10.1.53.64),
    Silverlight P-in (4.0.50524.0),
    Windows Presentation Foundation (3.5.30729.1).
    Ive been on numerous fix-it sites but cant find a solution i understand or can get to work. the problem still occurs in safe mode and with only shockwave flash enabled (this seems to be the issue) and after numerous reinstalls, i have also deleted all i can find of adobe and shockwave then reinstalled to no avail :(
    Whats chrome like?
    Thank you muchly
    == URL of affected sites ==
    http://www.youtube.com

    hi all - I have a similar problem with flash - basically the plugin crashes pretty much every time I am not looking at it directly (playing online games in tabs for example)
    I have tried disabling the "memory-safe-away-time-out thingee" in config:about - to no avail. I have also tried disabling all other plugins (not that I actually have many - Java, VLC, quicktime, some windows stuff), have set themes to default, have made sure all plugins are latest version.
    currently running the 4.0.b2 Firefox version cause of the plug in crashes in the 3.6.8 version - same problem though.
    and where it gets really strange is that a friendly help person on the adobe site suggested I upgrade my firefox to version 3.8 (while I was on the 3.6.8 version) and that would fix it. which I thought was.. interesting as 3.6.8 is the latest version as Firefox upgrade check insisted.
    by now i have invested at least 4 days trying to fix this issue and I gotta say... I am tempted to actually try other browsers, though firefox is my default browser since years.

  • Adobe Acrobat 8 Plug-in GUI issues in Mac OS 10.4.11 using XCode 2.5

    I am trying to port my plug-in to Acrobat 8. I have been maintaining this plug-in from Acrobat 5 on both PC and Mac. I am now having some trouble with the UI components of the Plug-in on the Mac. I can load and debug my plug-in on Acrobat 8, however my toolbar does not show up. Also, the modal dialog box that needs to launch does not. I am having trouble locating an example, or some documentation.
    For the Toolbar button, I am using the following code from the Stamper example.
    void *GetStamperToolButtonIcon(void)
    #ifdef MAC_PLATFORM
    extern CFBundleRef gPluginBundle;
    AVIconDataRec iconData;
    // Find a resource in the plugin bundle by name and type.
    CFURLRef pingURL = CFBundleCopyResourceURL( gPluginBundle,
    CFSTR("StamperIcon"),
    CFSTR("png"),
    NULL );
    ASFile asf = NULL;
    ASPathName aspn = ASFileSysCreatePathName (NULL,ASAtomFromString("CFURLRef"),
    pingURL, NULL);
    ASFileSysOpenFile(NULL, aspn, ASFILE_READ, &asf);
    ASUns32 dataSize = ASFileGetEOF(asf);
    ASUns8 *data = (ASUns8 *)ASmalloc(dataSize + 1);
    ASFileRead(asf, (char *)data, dataSize);
    ASFileClose(asf);
    iconData.dataStm = ASMemStmRdOpen((char *)data, dataSize);
    iconData.eColorFormat = kAVIconColor;
    return AVAppCreateIconBundle6(kAVIconPNG, &iconData, 1);
    #elif WIN_PLATFORM
    return(AVCursor)LoadBitmap(gHINSTANCE, MAKEINTRESOURCE(IDB_BITMAP1));
    #endif
    This works for the stamper, and correctly displays the Stamper Icon in the toolbar, but when I try to create a new PNG file with the same name, the button no longer works. Also, if I try to change the name of the PNG file to "MyTool.png" and then the reference from CFSTR("StamperIcon") to CFSTR("MyTool") the button no longer works. Does anyone have any insight? In my research, I have come across SafeGetResource, and using the resource chain, however, I can not get this to work either.
    The Modal Dialog I am trying to display is in a RSRC file, and it does not launch when I call sADMDialog->Modal() like it does in Acrobat 7, 6, and 5. Are there any Mac examples of plug-ins that use ADM, or platform specific Modal Dialog Boxes?
    I have read the SDK documentation, but I can not find any code samples.
    Any help would be greatly appreciated,
    Thank You,
    Austin

    As of now I am unable to link up the objective c cocoa code when I build the plug-in. I can compile but not link. The error I get is below. Note that is that there is a -framework Carbon flag, but no -framework Cocoa flag. I have modified the Stamper example plug-in provided with the SDK and I can not find how to tweak the project settings to use the cocoa framework. If I can not figure out this linking problem, I will create a small project demonstrating the issues I am having and I will post it.
    Ld "/Applications/Adobe/Acrobat 8 SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/M acShoomTool8" normal i386
    cd "/Applications/Adobe/Acrobat 8 SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac"
    /Developer/usr/bin/g++-4.0 -o /Applications/Adobe/Acrobat\ 8\ SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/M acShoomTool8 -L/Applications/Adobe/Acrobat\ 8\ SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/Default -F/Applications/Adobe/Acrobat\ 8\ SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/Default -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Headers -F. -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Versions/A -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Versions/Curr ent -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Versions/A/He aders -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Versions/Curr ent/Headers -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks -filelist /Applications/Adobe/Acrobat\ 8\ SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/M acShoomTool8.LinkFileList -framework Carbon -framework ApplicationServices -arch i386 -exported_symbols_list Symbols.exp -Wl,-Y,1455 -bundle -mmacosx-version-min=10.3 -Wl,-dead_strip -isysroot /Developer/SDKs/MacOSX10.4u.sdk
    /Developer/usr/bin/../libexec/gcc/i686-apple-darwin8/4.0.1/ld: Undefined symbols:
    _objc_msgSend
    .objc_class_name_NSObject
    /Applications/Adobe/Acrobat 8 SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/S hoomToolUI.o reference to undefined _objc_msgSend
    /Applications/Adobe/Acrobat 8 SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/S hoomToolController.o reference to undefined .objc_class_name_NSObject
    collect2: ld returned 1 exit status

  • Logic 7.1.6 plug-in/audio-issues

         Ever since I "upgraded" to Lion, I have had issues with Logic. I have another logic icon that is a "32 bit bridge" that just sits at the bottom now, yet I do not know what it is even doing because ever since it's showed up Amplitube/guitar rig3 just crackle and pop when playing with other tracks simoltaniously... It has NEVER done that before, nor delayed to that extent that it is now. I even get the feedback when JUST a midi drum loop is running. Also my 32 bit bridge crashes anyways and most of the time Massive is bi-polar and does not show up...At the same time, I have to click on the window to open the plug-ins to even edit them as they take a good 10 seconds sometimes to even run.....
    Lastly a couple of my recordings from other songs are ending up mixed into a different song, the vocal tracks I lost were rough but I would be LIVID if it were an actual track that was mixed down...I tried to look around but I am yet to see too many people with an answer...
    To recap, I use a macbook pro, logic ug from 9.0 to 9.1.6(because SL to Lion "UG,") and I am just running my telecaster into my built in audio...None of my hardware changed nor did i have any issues before. It seems to be any plug-ins for my guitar as I am not even using amplitube and guitar rig on the same Channel strip, yet BOTH do it! If anyone can help me it would be greatly appreciated, thanks, Jarid.

    *update* i read maybe rolling back the drivers may help, if anyone can confirm i may try it.

  • AD External Authentication Plug-In verification issue

    We are working on a Proof of Concept instance to integrate MS AD with OID for the first time for E-Biz 11i.
    1) I completed the bulk load of all the existing users from AD to OID successfully
    2) completed enabling the syncrhonization profile
    3) Ran the txkrun.pl successfully
    4) However i wanted to check the External authentication plug-in and i get the below issue.
    How to debug ldapcompare ? Where is the logfile for ldapcompare ?
    ldapcompare -h OID_Host -p 389 -D "cn=orcladmin" -w ******* -b "cn=lastname\, firstname,ou=consultants,ou=users,ou=usaeast,dc=adadmin,dc=lps,dc=netsrv,dc=us" -a userPassword -v abcdefgh
    The value abcedefgh is not contained in the attribute userPassword in DN cn=lastname\, firstname,ou=consultants,ou=users,ou=usaeast,dc=adadmin,dc=lps,dc=netsrv,dc=us.
    An ldapbind on the same AD server is successful, but ldapcompare is failing.

    I get invalid credentials. Though the network password is correct. I feel its somewhere i messed up the 3rd party plug-in configuration. Is there a method to get debug information for ldapcompare command ?
    From metalink NOTE : 277382.1
    "When using the above command, ldapcompare binds to OID using the OID admin user (typically "cn=orclAdmin") and password. Then it provides the AD username and requests that the value supplied as AD-USER-PASSWORD be compared to whatever is stored in AD username's userPassword attribute. Because OID does not store a value in its own user entries/userPassword attributes for AD-synchronized entries, this ldapcompare call will cause OID to invoke the plug-in and verify the userPassword value in AD instead.
    If the plug-in works, the ldapcompare should return a message saying that the given password is contained in the userpassword attribute, e.g.
    "

  • SOAP AXIS jars issue

    Hi,
    We have a client wsdl , and for communication with webservice as per client have to use AXIS1.4.
    So imported all the jars into the project EJBmodule related to SOAP, but still the jars are not recognized while building the application.
    Need a quick help on this.
    Thanks
    Srivastsa
    +91-9885304877

    HI ,
    Issue resolved: /people/raphael.vogel/blog/2008/05/05/how-to-use-external-libraries-in-the-sap-component-model-part-ii
    Thanks
    Srivastsa

  • Logic Pro 9.1.1 AU third-party plug-ins ongoing issue for many

    Where is the Logic development team on this? Nearly all third-party AU plug-ins produce random pops and clicks at the beginning of playback and on occasion randomly during playback but before audio regions in tracks with these plug-ins installed. These pops and clicks are even visible in the track's meter. http://www.gearslutz.com/board/music-computers/482381-logic-3rd-party-plugs-pop- click-nightmare-how-does-rest-world-do.html How many people need to complain? Is Logic Pro considered production software?

    I can't imagine a more textbook and apple-friendly environment than what I have. 32-bit is not the problem. I don't believe logic runs at 64 until you're on os 10.6 and I'm still on 10.5.8. My entire rig is what you'd see in an apple store logic demo. I've tried nearly everything:
    1) All standard optimization tips including but not limited to no date/time updates, no airport/wi-fi, no bluetooth
    2) I have a ultra high-quality external fw drive by G-drive
    3) Standard issue ensemble with updated firmware
    4) Moving AU component files from system library to user library
    If you look at the number of people commenting on the GS thread as well as other forums – the problem is common and needs to be fixed. I'm not the only logic user plagued by this issue:
    http://www.logicprohelp.com/viewtopic.php?t=43306
    http://www.logicprohelp.com/viewtopic.php?t=50030
    I really believe it has something to do with how many third-party plug-ins handle AU's reset or initialize callbacks; somewhere in between. This bug is clearly affecting many users and I'm coming close to starting a petition and devoting some serious time to making a big dorky stink about it on youtube.
    Either the AU spec needs to be updated to clarify some tricks (or hacks) specific to Logic's on-demand DSP usage or the logic team needs to publish a notice to all "Logic" AU developers. Optionally, if Logic had a preference to turn OFF on-demand AU DSP (so that plug-ins are always-on like in every other DAW or...ugh...outboard gear). Logic's on-demand AU DSP handling is outdated considering the processing power available in ANY apple computer made within the last 3 years. My CPU meter in Logic barely even lights up. On-demand DSP is overkill and antiquated and the least Logic can do is provide production or mission-critical users the ability to opt-out if they have the CPU power to do so.
    Having said all that; I hope I'm wrong about something and can come back here to eat my words and feel very embarrassed about my rant. I'm going to keep digging for solutions – hopefully, I'll find out the secret to whatever it is the few of you are doing to keep your third-party AU plugs quiet before an audio region starts.
    Also; Scott at Stillwell Audio has graciously begun trying to track down this very issue and is one of the few DSPers who has taken interest in helping Logic folk.

  • A repeating plug-in container issue

    I am trying to update Roboform and everything seems fine until I get to the Roboform Landing where it lists all of the fixes, and then an error message pops up that says:
    Can not load RoboForm add-on
    Please restart browser or reinstall RoboForm
    TypeError: aId is undefined
    resource://app/modules/CustomizableUI.jsm(1104)
    It does this when I close Firefox AND when I allow Roboform to close it. What is a plugin container issue and how can I get Roboform updated successfully? Firefox 35.0.1

    hi all - I have a similar problem with flash - basically the plugin crashes pretty much every time I am not looking at it directly (playing online games in tabs for example)
    I have tried disabling the "memory-safe-away-time-out thingee" in config:about - to no avail. I have also tried disabling all other plugins (not that I actually have many - Java, VLC, quicktime, some windows stuff), have set themes to default, have made sure all plugins are latest version.
    currently running the 4.0.b2 Firefox version cause of the plug in crashes in the 3.6.8 version - same problem though.
    and where it gets really strange is that a friendly help person on the adobe site suggested I upgrade my firefox to version 3.8 (while I was on the 3.6.8 version) and that would fix it. which I thought was.. interesting as 3.6.8 is the latest version as Firefox upgrade check insisted.
    by now i have invested at least 4 days trying to fix this issue and I gotta say... I am tempted to actually try other browsers, though firefox is my default browser since years.

  • OLE/Jar Issue..

    hi
    i m new to this forum. i need ur kind attention to the issue.
    1. i have signed both the jar files (frmwebutil & jacob). i did this through windows command prompt (as per instructions in webutil.pdf) and got message like '...done'.
    i attached 'webutil.pll' to the form & subclass webutil.olb. OLE2 works on Application server .e.g., create word document file, put data the save it. but when i do this from client machine (although i use 'CLIENT_OLE2'), i get error,
    WebUtil Error:oracle.forms.webutil.oleFunctions bean not found. cliend.create_obj will not worki m using Developer Suite 10 G (10.1.2)
    Looking 4 assistance
    Regards
    Hidayat

    thank u 4 replying
    yes, it's in <oracle_Home>/forms/webutil.plx (as i m using 10G(10.1.2))
    i think there is problem n signatures of jars. Jacob.jar was not properly signed. can u help me which version of jacob must be used with Developer Suite 10g (10.1.2) or how to correctly re-sign both the jars (frmwebutil&Jacob)
    regards
    hidayat

  • Log4j.jar issue under Web Service Security Module

    I am running into an issue with log4j.jar for WebLogic OES PDP. there is a custom appender class that extends org.apache.log4j.AppenderSkeleton, if we packed into one jar file under \bea\ales32-ssm\webservice-ssm\lib\log4j.jar everthing is fine. if we split this class with another jar file(sth like patch.jar) and add a entry in the config file WLESws.wrapper.conf under bea\ales32-ssm\webservice-ssm\instance\WSSM\config and it failed with this error,
    but an error is
    generated when starting the WSSM(Web Service Security Module):
    log4j:ERROR A "com.foo.AuditJMSQueueAppender" object is not assignable to a "org.apache.log4j.Appender" variable.
    log4j:ERROR The class "org.apache.log4j.Appender" was loaded by
    log4j:ERROR [com.bea.security.providers.utils.InverseURLClassLoader@5f7d3f] whereas object of type
    log4j:ERROR "com.foo.AuditJMSQueueAppender" was loaded by [sun.misc.Launcher$AppClassLoader@a18aa2].
    log4j:ERROR Could not instantiate appender named "JMS_AUDIT".
    130
    ARME is started now
    Rendering object type: AuditAtzEvent
    I have tried add java option:log4j.ignoreTCL=true. in this WLESws.wrapper.conf file, but does not work.
    How to resolve this issue, Thanks for your help!

    hi
    Can anyone help with this...

  • OIM custom JAR issues

    Hey All,
    I ran into a strange issue with OIM dealing with a custom JAR I had created.
    I started with custom PostProcessHandler where I implemented bunch of sevice procedures. Everything worked fine but then I decided to move those service procedures out to a separate service class and deploy it as a separate JAR. After that I ran in the strange behavior.
    1) When I try to write to the same ODLLogger in the service class which Handler class uses, I see nothing in my log.
    2) I got a strange error, as like OIM can't find some basic classes
    MessageDrivenBean threw an Exception in onMessage(). The exception was:
    java.lang.NoClassDefFoundError: oracle/iam/conf/exception/SystemConfigurationServiceException.
    java.lang.NoClassDefFoundError: oracle/iam/conf/exception/SystemConfigurationServiceException
    at com.icsynergy.dfwproject.EventHandlers.UserPostProcessHandler.execute(Unknown Source)
    at oracle.iam.platform.kernel.impl.OrchProcessData.runPostProcessEvents(OrchProcessData.java:1275)
    3) That SystemConfigurationServiceException is somewhere at the end of my service class code. I have bunch of OIM API calls before that and I see no fails on those.
    Can anyone help me with that strange issue?
    Thank you in advance!

    Just follow anyone of the step and see whether its works or not:
    You can try uploading it into the ThirdParty, and also, from the weblogic console, go to your server startup parameters and add the path of the jar file into the startup class
    You can try your thirdparty .jar in $DOMAIN_HOME/lib folder and restart
    You can place Jar into OIM lib directory $OIM_HOME/apps/oim.ear/APP-INF/lib/ and restart
    You can modify the script that launch weblogic (namelly startWeblogic.sh) and add in the classpath a folder called "MyFolder" where your third party jars are kept.
    ~J

  • Plug-in load issue

    I had created a new plugin by copying the code of an existing plugin.
    Now when I launch Acrobat Pro only one of the plug-ins gets loaded (on Windows Platform). My guess is that it could be happening if there is some ID associated with the plug-in is same for both the plugins. But I couldn't find out this information.
    Is there any ID associated with a plug-in which identifies it uniquely? How can I debug as to why plug-in is not getting loaded?
    -amit

    Few more details:
    I am using Acrobat SDK for writing the plugins. Both the plugins are placed in the plug_ins directory and the one which comes before in alphabetical order is the one gets loaded.
    I am not getting any error for the second plug-in load failure. But the menu item that I have added for the second plug-in is not displayed which tells me that this plug-in is not loaded.
    -amit

  • SAFARI PLUG-IN & WEBPAGE ISSUES

    After installing Lion on MacPro, I am having a lot of trouble with Safari providing the following message:  SAFARI CAN'T DISPLAY THIS WEBPAGE.  SAFARI HAS REPEATEDLY ENCOUNTERED AN ERROR WHILE TRYING TO DISPLAY [URL].  And, in have a constant "Plug-in failure" where videos ought to play.  I have searched my plug-ins, downloaded current Flash plug-in, et. al., but having no luck.  Open to any and all suggestions.  Thanks.  DrBob  <Edited by Host>

  • Jar Issues

    I tried using a gnu-regexp jar file from another directory and this is the error I get:
    C:\jdk1_3_1_02\myDirectory\reg\>javac - classpath "..\..\otherDirectory\bin\java\g
    nu-regexp-1.1.1" Expression.java
    Expression.java:56: cannot resolve symbol
    symbol : class Re
    location: class Expression
    Re myre;
    ^
    1 error
    Thanks!

    Is the Re class supposed to be inside the jar file? What is the full name of the jar file? Normally the file name ends with .jar or .zip. You need to include the jar file in the classpath, not the directory that contains the jar file.

Maybe you are looking for

  • Excel in Place not showing

    Hi, I have a problem with excel in place for CL_GUI_ALV_GRID. There are times that I got an error &VEXCEL something... Thanks!

  • How do i get my mbp to quit asking permission to do everything

    since restarting my computer after months of being on, I noticed most when i open a safari page from the desktop it asks permission, to open where as before it would just open, the computer is suddenly asking permission for every little tasks, works

  • Presets in Logic Headache

    Okay, why is that when you copy and paste a preset it loads volume data, but when you save it and then reload it, it does not! People always say logic does everything to the optimum before shipping it, but something this simple just seems so half a**

  • Issues with Chinese characters via HTTPRequest

    We have the below scenario: http --> PI --> IDOC Before the message arrives to PI we do the conection with the below code: String urlString  = WDConfiguration.getConfiguration("local/AIB_PAD").getStringEntry("HTTPURL");      java.net.URL url = new ja

  • Installing Client 11.1. problem

    Hi my friends!! Yesterday I've tried about 3 hours to solve this problem but not success In my computer i have guest server 2003 in virtual machine and i installed there oracle 11.1 Then i downloaded from oracle client basic +sqlplus I put this folde