I am writing a Java client to invoke a webMethods service. The first lines are:
Context context = null;
context = new Context();
And then the context is used to connect to the server. This client code was generated by webMethods.
I get the following error on the “context = new Context();” line: Cannot create context: java.lang.ExceptionInInitializerError: java/lang/RuntimeException
I have the com.wm.app.b2b.client.Context class imported in the code.
Does anyone know why I cannot create the context?
Thanks,
Rumana